Single Product Display Customization
-
Hi,
On wood mart theme, there are three links being displayed on single product page. (1) Compare (2) Add to wishlist (3) Size guide
We are planning to have one more i.e. forth such link beside the “Size Guide”.
Kindly let us know in which file this customization is being done on woodmart. I.e. which file is responsible for adding above three links on single product?
Thank you in Advance.
Hello,
We use Woocommerce hook to add buttons:
add_action( 'woocommerce_single_product_summary', 'woodmart_add_to_compare_single_btn', 33 );
You can use this hook for your customization as well.
Best Regards
Hi,
Thank you for your response. Kindly let us know in which theme file function ‘woodmart_add_to_compare_single_btn’ has been defined.
Or additionally Can you please send code for ‘woodmart_add_to_compare_single_btn’ so that we can use the similar code to add our extra link.
Thank you in advance. Take Care.
Warm Regards
Hello,
This function is in this file: woodmart/inc/integrations/woocommerce/modules/compare.php function woodmart_add_to_compare_single_btn() {
Best Regards