181 comments found.
Hi, I would like to buy the theme, but I need only catalog mode?! Is it possible to use it only like catalog, or I need to buy additional plugin?
Hi,
Thanks for contacting us. Addison does not offer the catalog mode out of the box. You will have to use a third party plugin for that.
Kind regards,
BoldThemes team
Thank you! It is going to be useful if you recommend me which one to use, without crash the theme?
Hi,
Catalog mode is a WooCommerce addon, so it should not influence the theme at all – although we haven’t tested the theme with the specific plugin we are confident that most of them will work without issues.
Kind regards,
BoldThemes team
Hi Masonry Portfolio Tiles do not allow to change the order (ASC or DESC) to the display ? The problem is that the next button do not appear into the first portfolio item because the portfolio display the newest first (so it can’t have a next button because a next portfolio item do not exist in the newest one). This is not very logic because you can’t navigate from the newest to the oldest)
Hi,
Masonry portfolio Tiles do not allow you to change the order (ASC or DESC) of the display.
If you need to change the order of display, you can try third party plugins, such as https://wordpress.org/plugins/post-types-order/ or – https://wordpress.org/plugins/simple-custom-post-order/ we haven’t tested them, but they can probably help if you need to change the order.
Kind regards,
BoldThemes team
Hi, how to get prev / next in potfolio from the same category only ? tried to change get_adjacent_post( false, ’’, true ); to get_adjacent_post( true, ’’, true, ‘category’ ); in prev_next.php but it does not work… Thx
Hi,
You should do the following:
if(get_post_type() == 'portfolio') {
$prev = get_adjacent_post( true, '', true, 'portfolio_category' );
} else {
$prev = get_adjacent_post( false, '', true );
}
the term is portfolio_category, but you should also check if the post type is portfolio since the blog posts use the same code, and you do not want to change them.
The same thing for next.
Kind regards,
BoldThemes team
Thx it works !
How can I remove my website identity from each page title? You can check the link below, I am trying to remove “Pikade Egitim Araclari”
http://www.pikade.com/blog?lang=enHi,
We can see that you are using YOAST plugin and a child theme.
You can do the following – open /php/before_framework.php and copy function boldthemes_header_headline from this file to your child theme’s functions.php
it should be from line 12
if ( ! function_exists( 'boldthemes_header_headline' ) ) {
till line 105, before
if ( ! function_exists( 'boldthemes_customize_header_style' ) ) {
Once you do that, change the line
$title = is_front_page() ? get_bloginfo( 'description' ) : wp_title( '', false );
to
$title = is_front_page() ? get_bloginfo( 'description' ) : wp_title( '', false );
// yoast not to override title
if( in_array('wordpress-seo/wp-seo.php', apply_filters('active_plugins', get_option('active_plugins'))) ){
if ( is_single() ) {
$title = get_the_title();
} else {
$title = get_the_title( BoldThemesFramework::$page_for_header_id);
}
}
Kind regards,
BoldThemes team
Hi
Addison – Architecture, Interior / Exterior Design & Home Decoration WordPress Theme
I need this theme how to buy multi licence ( use more than one domain )
Pls help me .
Thanks
Hi, we do not have control over purchasing process, please contact Envato support here regarding purchasing multiple licenses: https://help.market.envato.com/hc/en-us/requests/new
Hello, password reset not working… How to fix?
Hello,
How to remove SEO title in header image and how to position the header image? https://zwembad-polypropyleen.be/zwembad_aanleggen_zwembad_aanleg/Br
Hello, password reset support not working… How to fix?
Hi,
When you say password reset not working, can you please tell us which password are you referring to?
Is it on https://boldthemes.ticksy.com/?
If so, please tell us which problem do you experience?
Thanks in advance.
Kind regards,
BoldThemes team
Yes, reset link not working here: https://boldthemes.ticksy.com/?
when i click it just goes to the url https://boldthemes.ticksy.com/ Nothing else happens
Hi,
We can’t recreate the issue, it seems to be working from all browsers.
Have you tried to clear the browser cache and cookies? If that does not help, please send us an email to info@bold-themes.com, we will reset the password manually and reply with the new one. Please make sure to use the same email as the one on https://boldthemes.ticksy.com/
Kind regards,
BoldThemes eam
Hello password reset support not functioning
Hi,
We have manually set the password and sent it to your email address registered at https://boldthemes.ticksy.com/
Kind regards,
BoldThemes team
Error. This demo contains WooCommerce data. Please install and activate WooCommerce.
It is required to install and activate WooCommerce plugin before importing demo content. After import is finished you can remove WooCommerce if you are not going to use it.
I just noticed that you don’t support SVG images…really? All are SVG now…Please, update.
Hi,
Thanks for contacting us. Supporting SVG is not exactly a theme territory – WordPress core should support SVG and then all themes would.
On the other hand you can use third party plugin and have SVG support – https://wordpress.org/plugins/svg-support/ or any other similar.
Kind regards,
BoldThemes team
Not showing to map. Showing to this error.
Sorry! Something went wrong. This page didn’t load Google Maps correctly. See the JavaScript console for technical details.
Also I can not change category Description write. Can you help me please?
Hi,
Related to the map error, please refer to the following article: https://boldthemes.ticksy.com/article/8049/
Related to category description, please leave a ticket at our support site – https://boldthemes.ticksy.com/ with the screenshot of the description you would like to change and our support team will be glad to assist you. The screenshot would help us to identify the issue and provide proper response.
Kind regards,
BoldThemes team
Hi it’s allow to remove or modify the copyright notice at the bottom?
Before to buy I wanna make sure , 1. Do we need install the child theme, if this the case what for? 2. Once that all demo content it’s imported it would be automatically and we will have exact the same demo as you show here in the page, understanding that we should replace all the pictures for our own pictures
Hi,
Thanks for contacting us. Please find the answers below:
1. Yes it is possible to remove the copyright notice. 2. No you do not have to install the child theme, but if you intend to do some customization on the level of theme code we highly recommend it so your changes do not get lost when you update the theme. 3. Yes, once you import the data, you will get the same site as on demo.
Kind regards,
BoldThemes team
Is there a way to control the text color and mouse over color of the “Continue Reading” button for Blogs (http://denisefoleydesignv2.rollencedesigns.com/blog/) and the Send button on the Contact page (http://denisefoleydesignv2.rollencedesigns.com/about-us/contact/) ?
Hi,
You need to customize the button css classes for that.
For continue reading button:
Normal state:
.bt_bb_style_outline.bt_bb_button a {
-webkit-box-shadow: 0 0 0 1px black inset;
box-shadow: 0 0 0 1px black inset;
color: #ff0000 !important;
}
Hover state:
.bt_bb_style_outline:hover.bt_bb_button a {
-webkit-box-shadow: 0 0 0 2em black inset;
box-shadow: 0 0 0 2em #ff0000 inset;
color: #00ff00 !important;
}
For contact form button:
Normal state:
.wpcf7-form .wpcf7-submit {
-webkit-box-shadow: 0 0 0 2em #0000ff inset;
box-shadow: 0 0 0 2em #0000ff inset;
color: #ff0000 !important;
}
Hover state:
.wpcf7-form .wpcf7-submit:hover {
-webkit-box-shadow: 0 0 0 1px #00ff00 inset;
box-shadow: 0 0 0 1px #00ff00 inset;
color: #ff0000 !important;
}
Kind regards,
BoldThemes team
Hi, could you tell me how easy is to install the demo content , like one time button without coding experience? I wanna create the same them as a standard version
2. Could I upload also videos in SOLUTIONS & CLIENTS Our Projects Section combining with photos
thank you!!!
Hi,
Thanks for contacting us – please find the answers below:
1. It should be fairly easy – the demo import procedure is explained here: http://documentation.bold-themes.com/addison/getting-started/#installing-demo-content – you should choose the import file corresponding to the demo you want to import and click a button.
2. The Solutions and Clients grid can contain only photos – you can add videos to project pages (once you click on the project in the grid)
Kind regards,
BoldThemes team
Thank you for your answer, so assuming that it’s fairly easy with some know how, you could guarantee that onces that we imported the demo data ww will have a exact copy of your demo on your site , so we don’t need buy and extra plugin or widgets only importing the data would we have a clone of your are showing. could you confirming this, by the way how fast is the site on google insights, we could do that test with the url that appear in the demo server, ny suggestions ? thank you
Hi,
Yes, once you import the demo content you will have exact same copy of the demo site on your server and you do not have to buy any extra plugins or widgets. Please be aware that the images are not licensed for third party use, so if you intend to use the images from the demo on your production site, you need to license them separately on Shutterstock.
You can use the following url for all testing purposes: http://addison.bold-themes.com/main-demo/
Kind regards,
BoldThemes team
The Next and Previous portfolio links seem to be counter-intuitive. If you were to select the first portfolio at the most upper left corner (http://denisefoleydesignv2.rollencedesigns.com/portfolio/los-angeles-estate/) , then I would expect the Next link to be the portfolio immediately to it’s right, however, only the Previous link is displayed. Is there a way to correct this?
Also, how can the font style and color of the project titles appearing below Next/Prev be controlled?
Hi,
Portfolio items are ordered by publish date, meaning that previous is the older one, and next is the newer one. If you would like to change this, you will need to change the code of the theme. The code for generating prev next navigation is at /views/prev_next.php of your theme – feel free to make it work the way you wish.
The font style and color of the project titles can be controlled by css – try adding the following:
.btPrevNextTitle {
color: #ff0000;
}
Kind regards,
BoldThemes team
I was using the Post Types Order plug-in to display the thumbnail grid based on the client’s preference and the Previous project was always the adjacent project to the right and the Next project was to left regardless of date. I deactivated the plug-in and yes, the Next project is now the newer one, however, based on this design and since the newest project will be displayed at the uppermost left corner (without plug-in), it is not possible to display a Next link from this starting point. Can you suggest how to modify the prev_next.php page? Or is there another way to basically accomplish the reverse of the what the Previous and Next links are currently doing? I have changed the published dates of all the projects with the newest one appearing at the uppermost left and their sequence on the grid is correct.
Hi,
In order to change the behaviour of Prev Next, please try the following, edit /views/prev_next.php and exchange the lines 6 and 30.
On line 6 instead of
$prev = get_adjacent_post( false, '', true );
use
$prev = get_adjacent_post( false, '', false );
and on line 30 instead of
$prev = get_adjacent_post( false, '', false );
use
$prev = get_adjacent_post( false, '', true );
Please let us know if this resolves the issue.
Kind regards,
BoldThemes team
Thank you! (FYI, line 30 is $next and not $prev).
Hi,
Thanks, you are right, our mistake while doing Copy & Paste. Great that you have managed to resolve your issue.
Kind regards,
BoldThemes team
How can the navigation menu font color be controlled? It’s currently black and the client would like #420042 to be the default color to match the logo. Currently I have selected that color as the Primary Accent which I will need to change.
Hi,
You can try adding the following css statements:
#menu-primary-menu a {
color: #ff0000;
}
Please adjust the color code accordingly.
Kind regards,
BoldThemes team
Hi, Does the Masonry tiles have to be this big (1280×1280). With settings that we use those tiles could be 350×350px max. Can we change the format of images used in this widget?
Hi,
They have been made intentionally that way in order to make images look good in all combinations (even if you have two columns or one tile stretching over entire screen horizontally) and on all responsive layouts (when they fill one column, images can be larger than on desktop resolutions)
Anyway, if in your case you want to change the thumbnail, you can take a look at the theme’s folder /bold-page-builder/content_elements/.
Depending on the post type, you need either portfolio tiles or post tiles folder. Either way, you need to edit either bt_bb_masonry_post_tiles.php or bt_bb_masonry_portfolio_tiles.php and locate lines 45 – 80
Then you need to change the sizes corresponding to different formats from boldthemes_large_SOMETHING to either boldthemes_medium_SOMETHING or boldthemes_small_SOMETHING on lines looking like this:
$img = wp_get_attachment_image_src( $id, 'boldthemes_large_square );
The dimensions of various formats are:
boldthemes_small_rectangle - 320, 240 boldthemes_small_square - 320, 320 boldthemes_medium_rectangle - 640, 480 boldthemes_medium_square - 640, 640 boldthemes_large_square - 1280, 1280 boldthemes_large_rectangle - 1280, 640 boldthemes_large_vertical_rectangle - 640, 1280
Kind regards,
BoldThemes team
Hi,
Please send us wp-admin credentials to info@bold-themes.com so we can take a closer look at the issue.
Thanks in advance.
Kind regards,
BoldThemes team
Good morning I just sent the email Thanks a lot
Hi,
We have just sent a reply.
Kind regards,
BoldThemes team
After installing the Post Types Oder plug-in and customizing the sequence, the order does not match when displayed on the Projects Portfolio page.
Hi,
It seems that the order is identical – please note that the order on the portfolio page is not left to right – the projects in fact stack to the left edge – they go as much to the left as they can.
So Benedict Benedict Canyon Retreat is fourth, it just can not float to the left edge because there is Palm Desert Country Club which obstructs it from going all the way to the left. Please Keep this when you rearrange the order of projects.
Kind regards,
BoldThemes team
Since the layout is not left to right based on order, then what do you suggest is the best way to have a more predictable or identical order based on the Post-Types-Order (forced thumbnail size)? I chose a different featured image for Redondo Beach which then allowed the true 4th portfolio (Benedict Canyon) to be in the correct position, however, now Newport Beach and Beverly Hills are in reverse order. I do see that when they are single stacked (i.e. mobile view, the order is identical to Post-Types-Order).
Hi,
The only solution is to add minimal height to the portfolio boxes – it will ensure that the boxes do not prevent each other from floating to left:
.bt_bb_grid_item_post_content {
min-height: 1000px !important;
}
Please adjust the height accordingly.
Kind regards,
BoldThemes team
I have tried different values and it did not create for a more predictable display. Also, it is not ideal as it only increases the height of the content area below the image. Any other suggestions?
Hi,
Unfortunately, the content area below the image is the only place where the height can be increased – if you increase the area above the image, it would not look good.
The only alternative we can suggest is to cut off images above some height by using this:
.bt_bb_grid_item_post_thumbnail {
max-height: 200px !important;
}
This is working! Thanks.
Hello,
1) After updating the theme to the latest version, viewing the portfolios page hangs. Viewing a single portfolio appears to be okay. Please advise. Access credentials have been emailed.
2) When viewing the home page on a mobile device (iPhone 6s or on a simulator – http://www.responsinator.com/?url=denisefoleydesignv2.rollencedesigns.com) the mobile menu bar does not appear.
UPDATE: 1) It appears that when logged in as an admin, the Projects Portfolio page will load, however, it does not load when not logged in. This is happening for any of the “portfolio grid” pages.
Hi,
You have updated the theme, but you have not updated the packaged Addison plugin – there was a notice on the wp-admin dashboard that it needs to be updated.
We have updated it and added some additional css which fixes the issue with the menu on the referenced page.
Please clear the browser cache and verify the changes. Thanks in advance.
Kind regards,
BoldThemes team
1. What is the best way to change the font color for headings, body, portfolio links on grid? I see customization for fonts under Typography, but not color.
2. There are many fonts supported in this theme which is great, however, it is time consuming to see each one by selecting it. Is there documentation that provides a preview?
Hi,
If you want to change the font colors generally, the best way is to go to Appearance > Customize > General Settings and set your Primary Accent Color and Secondary Accent Color – this will set the primary Color Scheme for all site elements including Headings.
On the other hand, when you edit the Headline element, on design tab you can set the Color Scheme property or override the color of the heading if you wish.
As far as fonts are concerned, these are all Google Fonts, so if you wish to choose the fone, you can go to https://fonts.google.com/ and then select the font in customizer.
Kind regards,
BoldThemes team
I don’t see an option to change the heading font color within the Override settings.
Not all fonts from the Google site are supported in the theme. The client wants the same font from the previous site for the menu which was Copperplate Gothic. It’s supported by Google fonts, however, it is in the theme. Other than looking at each font one by one for a similar look, is there another way?
Hi,
The heading font color can not be changed via override settings – you can change the general accent colors via override settings. Heading color and color scheme property can be changed while editing specific heading page element (the same dialog as when you change the text of a heading), its design tab.
Unfortunately, contrary to your findings, Copperplate Gothic is not part of Google Fonts collection – https://fonts.google.com/?query=Copperplate+Gothic it is part of another fonts foundry – https://www.fonts.com/font/bitstream/copperplate-gothic. For finding the similar font maybe this can help: https://graphicdesign.stackexchange.com/questions/8624/can-anyone-suggest-an-alternative-to-copperplate-gothic-for-web-use
Kind regards,
BoldThemes team
Let me clarify that I need to change the font color of the header or banner text which is the area where the featured image appears at the top of the page. For example, I would like to change the color of “About” in the About page. I was able to change the header color within the body, however, how do I change the color of the text?
What is your suggestion to do this for Blog post font title colors and body text color? The client would like to the font colors to be the accent color for the titles and body.
Hi,
You can set the page headline colors by adding the following statements to Appearance > Customize > Additional CSS panel:
.btPageHeadline .btBreadCrumbs {
color: #ff0000;
}
.btPageHeadline .bt_bb_headline_content span {
color: #00ff00;
}
.btPageHeadline .bt_bb_headline .bt_bb_headline_subheadline {
color: #0000ff !important;
}
Please adjust the color codes accordingly – it will set the blog title as well
Related to single blog posts body, you can use the following statements:
article.post .bt_bb_wrapper {
color: #ff0000;
}
Kind regards,
BoldThemes team
Hello, thank you for providing the code. After implementing, while banner headline color has changed, the body text color has not in the About page. Also, the when viewing the Blog page, the title and excerpt font colors have not changed (http://denisefoleydesignv2.rollencedesigns.com/blog/ )
How would I go about changing the font color (portfolio titles and categories) on the Portfolios page (http://denisefoleydesignv2.rollencedesigns.com/portfolio-grid-three-columns/)?
Hi,
Related to page body, please add:
.page .bt_bb_column_content {
color: #420042 !important;
}
Related to blog page, please add:
.blog h2, .blog h2 .btArticleCategories a, .blog .btArticleContent {
color: #420042 !important;
}
Related to portfolio grid, please add:
.bt_bb_post_grid_filter {
color: #420042 !important;
}
h5.bt_bb_grid_item_post_title a {
color: #420042 !important;
}
Kind regards,
BoldThemes team
Thank you. The last set of code (portfolio grid) works briefly (you can see it change color) then it reverts back to black. Wondering if there is some other code overriding it.
Hi,
We can not recreate this issue – it seems to be working properly here: http://denisefoleydesignv2.rollencedesigns.com/portfolio-grid-three-columns/
Kind regards,
BoldThemes team
MIght have been a cache problem on my end. I see the color now. Thanks.
Is there is a way to change the fonts of the Portfolio categories and titles on the grid (http://denisefoleydesignv2.rollencedesigns.com/portfolio-grid-three-columns/)?
UPDATE: I found Appearance > Customize > Typography > Menu Font will affect the portfolio categories. So I just need a method to change font for the titles.
Hi,
Portfolio Grid titles inherit Body Font (which you can also set on Appearance > Customize > Typography). If you want to change it only for the grid titles, please try adding:
h5.bt_bb_grid_item_post_title {
font-family: Oswald;
}
Kind regards,
BoldThemes team
Hello, How can i make drop down button? I didn’t see any option for add drop down list on your button options. Thank you.
Hi,
Thanks for contacting us. We are not sure what a drop down button is. If you mean drop down list – there is not one out of the box, but you can easily create one by pasting for example the following to text tab of your text box:
<select id="dynamic_select">
<option selected="selected" value="">Pick a Website</option>
<option value="http://www.google.com">Google</option>
<option value="http://www.youtube.com">YouTube</option>
<option value="https://www.gurustop.net">GuruStop.NET</option>
</select>
<script>
jQuery(function(){
// bind change event to select
jQuery('#dynamic_select').on('change', function () {
var url = jQuery(this).val(); // get selected value
if (url) { // require a URL
window.location = url; // redirect
}
return false;
});
});
</script>
Please change the select items and their value attributes accordingly
Kind regards,
BoldThemes team