-
AuthorPosts
-
January 2, 2017 at 8:42 pm #728740
I have enfold installed and woocommerce installed, but I want to edit how the product and category pages are layed out.
I doing research on this site I found that Enfold doesn’t really use the woocommerce template as in config-woocommerce\config.php basically every woocommerce hook gets removed.
I weeded through that file but it was hard to decipher exactly what was going on.
Please point me in the right direct as to what hooks I need to hook into to adjust how the product page is layed out.
When I try and use the standard woocommerce way of editing the template it looses the enfold features. Please help
January 3, 2017 at 5:32 am #728836Hey ahouglum,
Thank you for using Enfold.
What specific changes are you trying to implement in those pages? You can refer to the WooCommerce template hooks and filter documentation for more info.
// https://docs.woocommerce.com/wc-apidocs/hook-docs.html
// https://docs.woocommerce.com/document/introduction-to-hooks-actions-and-filters/Best regards,
IsmaelJanuary 3, 2017 at 4:49 pm #729062I am looking to move where the shop sidebar is located. But, the shop sidebar is not apart of the normal woocommerce sidebar code. Seems to be put in separately.
January 4, 2017 at 8:08 am #729324Hi,
Where do you want to move it? Did you try the shop page’s Layout > Sidebar Settings?
Best regards,
IsmaelJanuary 4, 2017 at 6:09 pm #729551I want to move the side bar all to the left of the image. I will post a link to our design in the “private content” section for you to review.
January 6, 2017 at 1:11 am #730118Any word on this? I am on a deadline and could use your help.
January 6, 2017 at 7:13 am #730198Hi,
Thank you for the screenshot.
Please add the following code in the functions.php file.
// adjust settings on init add_action('init','ava534345953_init', 50); function ava534345953_init() { add_action( 'woocommerce_after_single_product_summary', 'avia_add_sidebar', 25); } function avia_close_image_div() { global $avia_config; echo "</div>"; } function avia_add_sidebar() { if(is_product()) { $avia_config['currently_viewing'] = "shop_single"; get_sidebar(); } } add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script type="text/javascript"> (function($) { function a() { $('.single .product').prepend('<div class="single-product-main-container"></div>'); $('.single-product-main-image, .single-product-summary').prependTo('.single-product-main-container'); } a(); })(jQuery); </script> <?php }
And this code in the Quick CSS field.
.single-product-main-container { width: 70%; float: right; margin-left: 5% } .single-product-main-image { width: 45%; float: left; margin-right: 0; } .single-product-summary { overflow: hidden; width: 45%; float: left; margin-left: 5%; } .single-product .sidebar { width: 25%; }
Best regards,
IsmaelMarch 12, 2018 at 7:09 pm #925660Dear Ismael,
I would like to use the WooCommerce 3.0 product gallery in my costume product layout, how to integrate it?
Ty,
d.
- This reply was modified 6 years, 8 months ago by dwebprojects.
March 15, 2018 at 5:34 am #927034Hi,
It’s already available on version 4.2.6. You can find the option in the Enfold > Shop Options > Product gallery settings.
Best regards,
IsmaelMarch 21, 2019 at 10:13 pm #1081578Is it possible to display the woocommerce single product gallery in product pages built using ALB? I have checked the theme in shop settings to view the woocoomerce gallery and I can’t find the option to implement it in custom built product pages. Please advise.
Thank you.March 25, 2019 at 3:04 am #1082470Hi,
The default product gallery is not going to be included in the ALB template. You have replace it with the default gallery or the image sliders, which are available under the Media Elements panel.
Best regards,
IsmaelOctober 8, 2019 at 3:06 pm #1146187Hi is there a way to put a text before the price example: From $ 3,50.
I want to do this on the shop/archive page where you can see the products of the woocommerce plugin.
Or can i put my custom advanced field on it?October 9, 2019 at 11:51 pm #1146687Hi,
@peruwan: Thank you for the inquiry. You can use this filter to append a text before the price.// http://hookr.io/filters/woocommerce_get_price_html/
Please open a new thread if you need further assistance.
Best regards,
Ismael -
AuthorPosts
- The topic ‘How to edit woocomerce product page layout’ is closed to new replies.