1690 comments found.
Hi there, I just wanna ask if there’s an option where I can change the header in each product category? I only see option to change header on Shop Page. What I want to do is to change the header image/bg on each category of the products page. Looking forward for a quick response 
Hi,
Please go to Bakery Options > Shop > Category Header Background and choose “Category Thumbnail”, then from Products > Categories > Thumbnail specify a category image for each of the categories.
Cheers
Thanks Milingona 
Another question, is there a way I can customize the cart page? What I need to do is to put a “Continue Shopping” button right next to “Proceed Checkout”
Hi,
Please first upgrade the theme to v1.2.9 then go to wp-content/themes/bakery/woocommerce/cart/proceed-to-checkout-button.php file and replace lines 25 – 27:
<a href="<?php echo esc_url( wc_get_checkout_url() ) ;?>" class="checkout-button button alt wc-forward">
<?php echo __( 'Proceed to Checkout', 'woocommerce' ); ?>
</a>
with the following:
<a href="<?php echo esc_url( get_permalink( woocommerce_get_page_id( 'shop' ) ) ) ;?>" class="shop-button button wc-forward" style="float: left; height: 42px; line-height: 42px;">
<?php echo __( 'Continue Shopping', 'woocommerce' ); ?>
</a>
<a href="<?php echo esc_url( wc_get_checkout_url() ) ;?>" class="checkout-button button alt wc-forward">
<?php echo __( 'Proceed to Checkout', 'woocommerce' ); ?>
</a>
Warm regards
Thanks for the quick reply! You guys are amazing! 
You’re welcome! Thanks for the compliment! 
for the order online section is it possible for customers to see a grid display of items, with prices next to them, get a total and then proceed to order using paypal, where we can then add on a delivery fee
Hi,
The theme is fully compatible with WooCommerce plugin which offers extensive possibilities in product displaying, price setting etc. So, yes you can show up products in the grid view with prices next to them. Moreover, if you decide to purchase the theme now we can provide you for free few customizations that you might need.
Thanks for your interest.
Kind regards
I cant find the demo file for Bakery Theme, can u help me to find?
Hello,
First, thank you for purchasing the theme.
You can install demo data by going to Bakery > Install Demo Content. Follow the instructions given there and your site will be ready within minutes.
Thanks and cheers
Do you have this available for html instead of wordpress?
Hello,
The HTML version of this item can be found here: http://themeforest.net/item/bakery-cakery-bakery-html5-template/9835281.
Thanks and cheers
But do you have the Store version as HTML?
No, the html version of shop part is not included in either the theme nor template.
Thanks
How much would you charge to create the store version in html?
Please contact us via here to get informed about the price and other details.
Thanks in advance.
How do I change / add categories to the gallery item?
Thanks
Hi there,
You need to click Edit on Gallery Shortcode to change or add the available categories for gallery items. Once you do that, you should specify one or more categories for each Gallery Item.
Warm regards
Ho to get install Google fonts for Revolution Sliders…
Please provide strep by step guidelines..
Thanks
Hello,
Google Fonts are automatically included in the Revolution Slider. Please have a look at the link below for a more detailed explanation:
http://bit.ly/1RS5pX9Cheers
Hi,
In my every products in zoom view option comes with the same text of other product name can you help to fix this…
You can chk my site and have a look
bdpnetwork.com/mishtyybela
Thanks
Hi,
You should modify wp-content/theme/bakery/woocommerce/content-product.php file, line 69:
<a href="<?php echo vu_get_attachment_image_src( get_post_thumbnail_id(), 'full' ); ?>" title="Cupcake" class="vu_pi-icon vu_lightbox"><i class="fa fa-search" /></a>
replace with:
<a href="<?php echo vu_get_attachment_image_src( get_post_thumbnail_id(), 'full' ); ?>" title="<?php the_title(); ?>" class="vu_pi-icon vu_lightbox"><i class="fa fa-search" /></a>
Cheers
Am not able to understand this can you explain me by providing step by step info
thanks
Access the theme directory via FTP then locate content-product.php file by navigating in wp-content/theme/bakery/woocommerce. Open the file and replace line 69 with the following:
<a href="<?php echo vu_get_attachment_image_src( get_post_thumbnail_id(), 'full' ); ?>" title="<?php the_title(); ?>" class="vu_pi-icon vu_lightbox"><i class="fa fa-search" /></a>
Or provide us here your WordPress & FTP details so we can modify it for you.
Thanks
Hi, I am looking to purchase this template to upgrade my website. We have multiple store locations so we need to have the ability to have contact details for multiple stores in addition to head office and display stores on screen similar to a grid or portfolio with all their details, particulars, video, pics and maps etc… please have a look at www.ridgeydidge.com.au under store locations. I don’t see a way I am able to do this easily by looking at the live demo? Having said that I would really like to use your template as I think it would suit what we are trying to achieve. Kind Regards Michael.
Hi Michael,
The best that would fit your requirements is Gallery Filterable 3 Cols: http://themes.milingona.co/bakery/default/filterable-gallery-3-columns. It supports setting up external link which in your case would be another page with the respective details of the store.
Thank you for your interest and look forward to hear again from you.
Best regards
Bakery has just received another rating for Flexibility.
Like Bakery Theme, you too? Please rate it on ThemeForest!“Using this theme for 2 months in order to do a proper evaluation. I never used support services because the theme quality is so good you don’t need it. Clean, flexible and lots of features. Keep-up with the good work.”
We installed this theme on our website and loaded the demo content but we haven’t been able to get the homepage to work correctly. It just displays “Record not found” The link is www.lorenzosbakerynb.com, Please help!!
Hi there,
The reason why you’re getting that message is that there is no slider available while you have in the page content ‘Revolution Slider’ shortcode inserted. This might be caused due to the problems while importing demo content because the import should have imported also slider demo content.
Now there two options available:
- You can still import only slides as in demo by importing includes\options\inc\extensions\wbc_importer\demo-data\default\bakery-main-slider.zip file from Revolution Slider.
- Delete the site and install everything from the beginning.
It depends on you which option you prefer more.
Warm regards
Hi everyone, how can I add more columns in portfolio? I would like to set 5 or 6 columns. Is it possible? Thanks a lot
Hi,
You can do that by modifying wp-content/plugins/bakery-cpt/shortcodes/portfolio.php file and replacing lines 180 – 185:
"value" => array(
__("1 Column", 'bakery-cpt') => '1',
__("2 Columns", 'bakery-cpt') => '2',
__("3 Columns", 'bakery-cpt') => '3',
__("4 Columns", 'bakery-cpt') => '4'
),
with the following:
"value" => array(
__("1 Column", 'bakery-cpt') => '1',
__("2 Columns", 'bakery-cpt') => '2',
__("3 Columns", 'bakery-cpt') => '3',
__("4 Columns", 'bakery-cpt') => '4',
__("6 Columns", 'bakery-cpt') => '6'
),
Then when you add or edit the shortocodes choose 6 Columns at Layout option.
Similarly, you can modify ‘Portfolio with filter’ by modifying wp-content/plugins/bakery-cpt/shortcodes/portfolio-with-filter.php file, lines 170 – 175.
Kind regards
Hi, how can i increase the size of the horizontal separator between each menu item? Thanks!
Hi,
Sorry but the question is not so clear to us. Could you please provide a screenshot or a more detailed description of what you’re looking for.
Thanks in advance
Hi, here is a screenshot of the separator: http://lubranopains.fr/wp-content/uploads/2015/12/Capture.jpg My client want, if possible, to make it “bold” instead of a thin line. Is there a way to do this? Thanks
Hi,
Now it’s clear. You can do that by using the following custom CSS in Bakery Options > Custom Code:
.vu_main-menu>ul>li {
border-left-width: 2px;
}
Thanks and cheers
Great! it works. Thanks for your help. Great support
Perfect! Glad to help you 
Hi we’re using your theme for one our clients and seem to having problems with the contact form. We’ve tried using your contact form and contact form 7 with the same results. The email does not send and we get the following error “Failed to send your message.” We know it’s not a server problem as we are hosting resellers also and have about 50 live sites running fine using other themes with contact form 7 running with no problems. We also get the same problem if we try the contact form locally. Please could you advise us on how to resolve this problem as the site has now gone live.
Many thanks
Hi,
The issue may be related with Visual Composer plugin. So please try to modify wp-content/plugins/js_composer/include/classes/core/access/class-vc-role-access-controller.php file, by replacing line 176:
foreach ( $role->capabilities as $key => $value ) {
with the following:
foreach ( (array) $role->capabilities as $key => $value ) {
Sorry for the inconvenience and please let us know if this works for you.
Thanks
Thanks for your response.
Unfortunately, that hasn’t worked I still get the same error. Again I’ve tested the change with both contact form 7 and the default contact form locally and live.
We’re using Bakery version 1.2.6 if that helps.
What else might it be?
Thanks
Please send us your site URL so we can get a closer look at the issue and then provide you the feedback.
Thanks in advance
The site URL is http://www.bn1cleaningservices.co.uk/ Thank you
Thanks for providing the link.
There might be an issue with the email configuration. So please try using the following plugin for a better and more advanced email configuration: https://wordpress.org/plugins/wp-mail-smtp/. Otherwise the problem might be at your server so try to get in touch with you server administrator.
Thanks,
Support
I’m using the Wordpress Version: 1.2.4 of Bakery. I want to change my individual portfolio pages so my image is on the left and my description is on the right. Can this be done? Thank you!
Hi,
You can do that by modifying wp-content/plugins/bakery-cpt/templates/templates/single-portfolio-item.php file, line 12:
replace with:
<div class=” col-md-5=”” col-md-offset-1=”” col-md-push-6=””>
and line 26:
replace with:
<div class=” col-md-6=”” col-md-pull-6=”” vu_animation=””>”>
Cheers
Thank you!
You’re welcome! 
Hello there
just bought this theme its great!
just wondering how do i customize the order form? there are a few fields i would like to add
doe this require php knowledge?
Hello,
Thank you for purchasing our theme.
The order form can be customized via wp-content/plugins/bakery-cpt/shortcodes/order-form.php file so you should have PHP knowledge. If you’re not good at it you can hire us. For more details please get in touch via here.
Thanks and cheers
I find this template http://themeforest.net/item/bakery-cakery-bakery-html5-template/full_screen_preview/9835281 that is in HTML5… can please give me back my 59$ and i buy it? PLEASE was an error.
Sorry but we can’t issue refunds. In order to request a refund you should submit a request to Help Center, as they handle all marketplace transactions. In addition, you can contact us via our profile page to get more details about this.
Regards
Hi! i need use your template but without wordpress … can??
Hi,
The item you have bought is a WordPress theme and not an HTML template. If you want static HTML template then you can buy it here: http://themeforest.net/item/bakery-cakery-bakery-html5-template/9835281.
Thanks
When I install WPML plugins my filter icons is show in double how to fix its?
see this pic http://goo.gl/ve7Fp8Hi,
Please first send us your purchase code as well as your WordPress & FTP details so we so we can verify the purchase and then get a closer look at the issue.
Thanks
f88ec42a-26eb-4cd1-a5ac-f8ecdfb7713a
Verified! Thanks for the purchase.
Could you please also provide via here your WordPress & FTP details so we so we can get a closer look at the issue.
Thanks
wordpress long User :admin pass:admin
website name muibakery.ib2hosting.com/
Fixed! Please check it and let us know if you need any further assistance.
Also please change immediately your password for security reasons and next time be careful to not leave your credentials here in the comments. Instead you can send them from our profile contact form.
Warm regards
Hi, 1. How to remove sidebar from single product page? I want to show only on shop page (catalog page) 2. It’s possible to add multiple category for Products with Filter?
Hi,
1. Please replace the code in wp-content/themes/bakery/woocommerce.php with the following:
<?php
/*
Template Name: WooCommerce
*/
?
get_header();
?
$shop_layout = vu_get_option('shop-layout');
?>
<div class="container vu_page-content vu_woocommerce m-t-80 m-b-70">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-<?php echo ($shop_layout == 'no-sidebar') ? '12' : '9'; echo ($shop_layout == 'left-sidebar') ? ' col-md-push-3' : ''; ?>">
<?php if( function_exists('woocommerce_content') ) { woocommerce_content(); } ?>
</div>
?
<?php if( $shop_layout == 'left-sidebar' or $shop_layout == 'right-sidebar' ) : ?>
<aside class="sidebar col-xs-12 col-md-3<?php echo ($shop_layout == 'left-sidebar') ? ' col-md-pull-9' : ''; ?>">
<?php dynamic_sidebar('shop_sidebar'); ?>
</aside>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>
2. Yep, that’s possible. Just make the other categories as child categories of a parent one, eg. All. Then at Poftfolio with filter shortcode select only the parent category.
Kind regards
From your advises to put this code below to /bakery/woocommerce.php
<?php /* Template Name: WooCommerce */ ? get_header(); ? $shop_layout = vu_get_option(‘shop-layout’); ?> ? <?php if( $shop_layout 'left-sidebar' or $shop_layout ‘right-sidebar’ ) : ?> <aside class=”sidebar col-xs-12 col-md-3<?php echo ($shop_layout == ‘left-sidebar’) ? ’ col-md-pull-9’ : ’’; ?>”> <?php dynamic_sidebar(‘shop_sidebar’); ?> </aside> <?php endif; ?> <?php get_footer(); ?>
to show only sidebar on catalog page
I get some error it say :
Parse error: syntax error, unexpected ’?’ in /home/newmui/public_html/wp-content/themes/bakery/woocommerce.php on line 32
please help for fix this.
Hey there,
sorry for the inconvenience. Please try to download again the file through the link below:
and replace it with the current wp-content/themes/bakery/woocommerce.php file. This should work for you now.
Cheers
Sorry for disturb , my site broken I lost this file from my hosting , Could you please send me this file again please.
Just re-uploaded the file and you can download it here: http://bit.ly/1KFphKt
Kind regards
and the last question. I use plugin TM extra product option
it’s must be show select option button for replace add to cart button but your themes doesn’t show this button . How can i fix it or remove add to cart button for some categories. (show only link button.) lookat this image http://goo.gl/IH3S8P1. Just looked at your live site and couldn’t notice anything wrong. Probably you have fixed that?!
2. The theme has implemented this option in a different way. If you look ‘Croissant’ item in http://themes.milingona.co/bakery/shop/shop/ you won’t see the add to cart button, which indicates that the item is a variable product and the user needs to select few options before being able to add it to cart. Otherwise, we advise you to take a look at the plugin docs or contact the plugin’s author directly and seek support from them.
Many thanks
1. yes, I’m edit on single product page already but still have a problem with product catalog page with side bar please advise how to fix it. 2. thank you i will try as you advise.
sorry for distube again i can fix it all already , but the last questions how can i change select option icon (ex. themes.milingona.co/bakery/shop/shop )
Thanks
Please go to wp-content/themes/bakery/woocommerce/loop/add-to-cart.php, line 31:
fa-list-alt
and change it with another Font Awesome icon, eg.:
fa-plus-square
Then paste the code below in Bakery > Custom Code
.vu_product-item .vu_pi-icon.vu_pi-cart.product_type_variable .fa.fa-list-alt {
display: inline-block;
}
but do not forget to replace ‘fa-list-alt’ with the new Font Awesome class as for eg.
.vu_product-item .vu_pi-icon.vu_pi-cart.product_type_variable .fa.fa-plus-square {
display: inline-block;
}
Kind regards
Hi; The contact forms stopped working suddenly. Look at – www.cookpontual.com.br. Its not working anymore (‘map & contact form’).
Hi,
Please open wp-content/plugins/js_composer/include/classes/core/access/class-vc-role-access-controller.php file, go to line 176:
foreach ( $role->capabilities as $key => $value ) {
and replace it with the below:
foreach ( (array) $role->capabilities as $key => $value ) {
Warm regards
Dear theme author,
first of all thanks for your great work. I have only a small problem with the shopping card symbol, which appears under the full menu (logo right). Is it possible to switch it off? Our customer does not want to sell items, we use the shop shop only for presenting the products.
Thanks for helping.
Hi there,
Thanks for the purchase. Happy you’re loving the theme.
If you want just to present the products and don’t want to use shopping options at all then you should insert products as Portfolio Items from Portfolio > Add New and disable ordering options by switching off Bakery Options > Order Form > Ordering.
Cheers
Thanks for helping, but the plan is to sell products in future, so it will be better to put them into woocommerce I think. The ordering function of your theme is disabled but there is still a shopping card symbol under the menu… do you have another idea? Cheers
Then the recommended solution is to install YITH plugin. The plugin will enable you to temporarily disable all shop related things. In addition you should paste the following code in Bakery > Custom Code to hide out the shopping cart from the header:
.vu_wc-menu-item { display: none !important; }
Kind regards
YITH Plugin is already installed, the css code works. Thanks
Perfect! Glad to hear that! 