Discussion on Bakery | WordPress Cake & Food Theme

Discussion on Bakery | WordPress Cake & Food Theme

Cart 3,689 sales
Well Documented

milingona_ supports this item

Supported

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 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?

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/1RS5pX9

Cheers

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.

“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.”

Like Bakery Theme, you too? Please rate it on ThemeForest!

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,

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

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

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/ve7Fp8

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.

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! :)

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey