Home Forums WoodMart support forum change the title of the product in wd-sticky panel Reply To: change the title of the product in wd-sticky panel

#410090

Hello,

Please check this file: inc/integrations/woocommerce/template-tags.php and find this functions: woodmart_sticky_single_add_to_cart

Copy this function to the functions.php of the child theme and edit it as per your needs:

if ( ! function_exists( 'woocommerce_template_loop_product_title' ) ) {
   function woocommerce_template_loop_product_title() {
      echo '<div class="wd-entities-title"><a href="' . get_the_permalink() . '">' . get_the_title() . '</a></div>';
   }
}

If you have any questions please feel free to contact us.

Best Regards