1687 comments found.
hello, I just wanna ask if how can I customize the hover buttons on the product? I’ve emailed you a week ago about this and I need your help urgently. ~Thanks in advance!
Hi,
You can customize the hover buttons by modifying lines 75-76 of wp-content/themes/bakery/woocommerce/content-product.php file and wp-content/themes/bakery/woocommerce/loop/add-to-cart.php.
Also note that your support has expired so you are advised to purchase support extension in order to be able to get further support from us.
Kind regards
Hello,
i got a problem with the hover color on the main menus. Fix on top and while scrolling i cant change the color on mouse hover.
Even .vu_main-menu>ul>li a:hover { color: #E10B7A !important;} in custom styles wont work.
I hope you can help me. Ty
Hello,
You just need to add .affix class to the CSS code above so it looks like:
.affix .vu_main-menu>ul>li a:hover { color: #E10B7A !important;}
Kind regards
Hi, I don´t know where is it demo theme. I have bought theme but you say: “Demo content You can import demo content from our site (with blurred licensed images) with a single click of a button. Don’t forget to activate all required plugins before importing demo data.” I don´t found.
Hi,
Thank you for your purchase.
The demo content can be found under Bakery > Install Demo Content. Please follow the instructions given there and your site will be ready within minutes.
Thanks and cheers
Hi, i have a “Blog Posts” shortcode in my index page that doesn’t show the text in the second and third post of my blog. It keep showing de demo text. ¿how can i fix this? Thanks!
Hi grafosweb,
We need to look at your site so please provide us your site URL and we’ll get back to you shortly.
Thanks in advance
ok, http://p1000527.ferozo.com. Thanks
Please go to single post page and change the excerpt field. If you do not see it, click the right top Screen Options button and make sure Excerpt is checked.
Cheers!
Hi, I tried to change the link color in theme options. But I think there is no way. How can I do that? Thank you for helping.
Hello,
Please use the code below in Bakery > Custom Code
a { color: #333; } /* global */
.page-footer a { color: #fff; } /* footer */
If this does not work for you then please tell us more where/which link color in particular you want to change.
Thanks and cheers
Hello, I would it it if the category could be placed before the title on the single product page. How would I be able to make those changes?
Hello,
You need to edit wp-content/plugins/bakery-cpt/templates/templates/single-portfolio-item.php file, lines 20-21 in particular:
<h1><?php the_title(); ?></h1> <h3><?php vu_portfolio_terms( $post->ID ); ?></h3>
replace with the following:
<h3><?php vu_portfolio_terms( $post->ID ); ?></h3> <h1><?php the_title(); ?></h1>
Then paste the CSS code below in Bakery > Custom Code:
.single-product-section .article-header-5 h1 { margin-top: 10px !important; }
.single-product-section .article-header-5 h3 { margin-top: 80px !important; }
Warm regards
“Does your theme work well with back-end caching? Any functionality that is dependent on the back-end and that won’t work with such caching technique, maybe some conditions that varies between mobile and desktop devices or related to the responsive design? I wonder if caching only by “Accept-Encoding” would be enough or should I include User-Agent also in case some theme functionality depends on it.
Thank you.”
Hello!
It’s been more than seven days since I posted my last question and I didn’t get any answer, so I’m posting it again!
Hi,
First, sorry for the late response.
The theme itself does not include any functionality that is dependent on the back-end. So the back-end caching should work well for you.
Thanks
I need your help very urgent very important. Somehow I could not change the site language PDFs in document process did individually. but it did not change the site language.
I ask you to change translation made po files from you?
File translation translation po construction has been installed in the directory
I took special message for FTP and password information
Just replied via email. Please check it and let us know more details. Thanks!
Hi,
You can achieve that by pasting the following code in Bakery Options > Custom Code
#menu-item-745 > ul.sub-menu {
width: 620px;
margin: 0 -2px;
}
#menu-item-745 > ul.sub-menu > li {
float: left;
width: 33.33333333%;
padding: 0 2px;
}
#menu-item-745 > ul.sub-menu > li a {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
Kind regards
Thanks for the quick response!
You’re welcome! 
Thanks.
Couldn’t see this problem. Probably have already solved it. If not, please let us know and we will be happy to help you out.
Thanks and cheers
Hey Milingona,
I have some troubles with my website. I’ve build www.jedewe.nl the last few weeks but the website is very slow at fresh load. Thats not the first impression you want to give to your costumers. Have i missed some settings? Could you please help me out with this issue?
Hi,
We’d recommend you to use any of the popular performance optimization plugins. W3 Total Cache plugin is one of them that may help you achieve what you’re looking for and improve your overall site’s performance.
Thanks and cheers
Hello! Well I have another question, how can i change the link of the blog image?, when you click on the blog image, it should open the post instead of open the image on a lightbox. Thanks for your help!!
You need to edit wp-content/themes/bakery/includes/post-templates/entry.php, line 15 and wp-content/themes/bakery/includes/post-templates/entry-image.php, line 15:
<a href="<?php echo vu_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'full'); ?>" title="<?php the_title(); ?>" class="vu_lightbox”>
replace with the following:
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
Kind regards
Ok thanks! i will try
Nothing! We’re here to help you!
It works! but now the image link on the Recent Posts shortcode show the image gallery, so I found where to change the link, i created i child theme, and created the functions.php file, i copied the function but it doesnot work
the code is:
<?php
if ( ! function_exists('vu_recent_posts_shortcode') ) :
function vu_recent_posts_shortcode_child( $atts, $content = null ) {
$atts = shortcode_atts( array(
'numberposts' => 3
), $atts );
$recent_posts = new WP_Query('orderby=date&order=DESC&posts_per_page='. absint($atts['numberposts']));
ob_start();
if( $recent_posts->have_posts() ) :
while ($recent_posts->have_posts()) : $recent_posts->the_post(); ?>
<div post_class="">>
<?php if( has_post_thumbnail(get_the_ID()) ) : ?>
<div class="blog-post-small-img">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_post_thumbnail('ratio-3:2'); ?>
<span class="blog-post-small-img-cover" />
</a>
<div class="blog-post-small-info">
<div class="blog-post-small-info-content"><?php echo get_the_date(); ?></div>
</div>
</div>
<?php endif; ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<p><?php vu_the_excerpt(20); ?></p>
</div>
<?php endwhile;
endif;
$output = ob_get_contents();
ob_end_clean();
return $output;
}
add_shortcode('vu_recent_posts', 'vu_recent_posts_shortcode');
endif;
?>
There is an inconsistency in the function naming. You should use the code below:
<?php
if ( ! function_exists('vu_recent_posts_shortcode_child') ) :
function vu_recent_posts_shortcode_child( $atts, $content = null ) {
$atts = shortcode_atts( array(
'numberposts' => 3
), $atts );
$recent_posts = new WP_Query('orderby=date&order=DESC&posts_per_page='. absint($atts['numberposts']));
ob_start();
if( $recent_posts->have_posts() ) :
while ($recent_posts->have_posts()) : $recent_posts->the_post(); ?>
<div post_class="">>
<?php if( has_post_thumbnail(get_the_ID()) ) : ?>
<div class="blog-post-small-img">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_post_thumbnail('ratio-3:2'); ?>
<span class="blog-post-small-img-cover" />
</a>
<div class="blog-post-small-info">
<div class="blog-post-small-info-content"><?php echo get_the_date(); ?></div>
</div>
</div>
<?php endif; ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<p><?php vu_the_excerpt(20); ?></p>
</div>
<?php endwhile;
endif;
$output = ob_get_contents();
ob_end_clean();
return $output;
}
add_shortcode('vu_recent_posts', 'vu_recent_posts_shortcode_child');
endif;
?>
Cheers!
Hi, I need help in the following cases: 1 – How can I edit my order form in the portfolio and remove extra field (ex : Date field ) ? 2 – I remove woocommerce, but there is still a price label and “add to cart” button (ex:$) on portfolio , How can I remove these items ?
Hi,
1. The order form code can be found at wp-content/plugins/bakery-cpt/shortcodes/order-form.php
2. The price and cart icons are designed to be shown when you hover over the portfolio items even if you have chosen to not use WooCommerce. To hide out the price just leave blank the price field in the portfolio item settings metabox while for the cart icon please use the following code in Bakery > Custom Code:
.vu_product-item .vu_pi-icon:last-child {
display:none;
}
Thanks and cheers
Hello,
You should leave the messages in Bakery Options > Order Form by default as specified below:
- Validation errors occurred: Validation errors occurred. Please confirm the fields and submit it again.
- Order was sent successfully: Your order has been sent successfully.
- Order was failed to send: Failed to send your order. Please try again.
- There are some fields that the sender must fill in: Please fill in all the required fields.
If the issue still is present after you do the above modification, then please provide us via here your WordPress credentials.
Thanks
Hello The problem is that the .po file that I put the link in my previous comment for you does not load at all. for example the form in the address: http://golshad.ir/?portfolio-item=%D9%BE%D9%88%D8%AF%D8%B1-%D8%A2%D8%A8-%D9%BE%D9%86%DB%8C%D8%B1#order-form must have Persian fields but they are still shown in English.
I am waiting for an answer…
Could you please provide us via our contact form your WordPress credentials and FTP details so we can have a closer look at the issue.
Thanks in advance!
Hello , Thank you for answers. How do I delete order form of product page?
Hi,
Please follow the steps below:
- Disable Ordering from Bakery Options > Order Form > Ordering.
- Delete lines 48-52 of wp-content/plugins/bakery-cpt/templates/templates/single-portfolio-item.php file.
Best regards
Hi,
how can I remove the testimonial pagination?
Thanks a lot 
Hi,
You can do that by pasting the code below in Bakery > Custom Code:
.testimonials-slider .owl-controls .owl-pagination {
display: none;
}
Warm regards
Howdy!
Does your theme work with the latest version of PHP – 7? Is it fully SSL compatible?
Hey there,
Yes, we have tested on our local server and the theme worked well with the latest PHP version. Regarding SSL compatibility, we have not tested but there shouldn’t be any issues with it.
Thanks!
Hi, Thanks for the beautiful theme. It was great to work with! One question: When you have a blog post and add a Featured image, it comes with a filter. When you hover over it with the mouse, it gives you the option to have it pop up. How do I remove this filter? Thanks!
Hi,
You can remove that by using the following code in Bakery > Custom Code
.blog-post .blog-post-image .blog-post-image-cover { display: none !important; }
Thanks and cheers
Hello, how can I change the blog title that conatains the paralax?
Hello,
Please open your blog page and specify another page title under Page Header Settings meta box which is located at the end of the page.
Warm regards
Hello, I still do not understand what I am refering to when you say blog page. I am trying to change the title of this post to news and events instead of blog.
http://www.manvirsidhu.com/prabu/?p=4And how would I chande the background image to that?
Thanks.
I have figured what you meant. Thanks!
Alright, glad you figured that out. Cheers!
Hello, I have updated the theme however the Blog Page does not seem to sync with my categories. Please help.
http://prabufoods.com/?cat=6Hello,
The question is not so clear so please provide us more details about the issue. Looked at the link above but couldn’t notice anything wrong.
Thanks
Hi, i have problem with theme Bakery and in particular with Visual Composer. When i try to use Visual Composer, i received an error (in console ). This is the error in console: Uncaught TypeError: $template.get is not a function in backend.min.js?ver=4.10:6
Thanks !
Hi,
Please provide us via here your WordPress & FTP details so we can get a closer look at the issue and see what is causing that.
Thanks in advance!
Hello, I am trying to remove the “No Comments” from the blog post carousel on the home page. How would I do that?
Hi,
You can do that by opening bakery/includes/shortcodes/blog-posts.php and removing the code below in line 65:
<span class="delimiter-inline">|</span> <a href="<?php comments_link(); ?>"><?php comments_number( __('No Comments', 'bakery'), __('One Comment ', 'bakery'), __('% Comments', 'bakery') ); ?></a>
Thank and cheers!
Just spotted a bug. The resolution of the carousel images on the default demo’s home page blog posts is wrong and therefore they look granular and real ugly. The actual resolution is 193×145 when it should be 800×600 as the image name implies “http://themes.milingona.co/bakery/default/wp-content/uploads/2015/08/m-post-4-800×600.jpg”.
The shop demo’s image files resolutions are correct and the images look alright.
You’re right! That might happened while we compressed the images. We will take care and correct it. Thanks for your report, btw!
Thank you for the prompt reply!
I have a few more questions if you don’t mind.
1. Any suggestions what do I do if I have many gallery items then? It wouldn’t be appropriate to display all on a single page.
2. Does your theme have an option to change the theme permalink structure and the slug name of the custom post types /rewrite slug/? For instance, portfolio-item, portfolio-tag, portfolio-category, portfolio-X and just whatever the name of the slug of the custom post is.
3. Is it possible to translate the custom post type slugs with WPML? I’ve seen it working with other themes and it should be by design as your theme is specified as WPML compatible.
Now I’ve just noticed that your theme isn’t listed as compatible on the WPML page. Here is the url:
https://goo.gl/o1fVOQThe WPML page says that you can certify it at: https://goo.gl/Fmy6cz
Would the missing certificate be a problem with the WPML plugin and any of its features?
Thanks in advance!
Hi,
Please find below the answers to your questions:
1. As an alternative you could create a page where you insert a specific number of gallery items and at the end of it insert a button [eg. see more] with a link to another gallery page and so on.
2. Yes, you can change the CPT slugs from theme options. Here’s a shot of the options:
3. We have not tested it but is should work. The fact that the theme is not listed in the official WPML site does not mean that the theme is not compatible with it and it is not a problem at all.
We will be here to help you any time for any possible issues.
Many thanks