admin管理员组

文章数量:1391937

I want to hide "sold by" on certain pages with id page 43 if I use this code, it's hidden for all pages on my site

/  Remove sold by in product loops  /
remove_action ('woocommerce_after_shop_loop_item', array ('WCV_Vendor_Shop', 'template_loop_sold_by'), 9, 2);

how to make a special hidden on the page with id 43 thank you

I want to hide "sold by" on certain pages with id page 43 if I use this code, it's hidden for all pages on my site

/  Remove sold by in product loops  /
remove_action ('woocommerce_after_shop_loop_item', array ('WCV_Vendor_Shop', 'template_loop_sold_by'), 9, 2);

how to make a special hidden on the page with id 43 thank you

Share Improve this question asked Feb 29, 2020 at 2:50 Arwahi MArwahi M 12 bronze badges 2
  • currently, where have you put this code? – Tanmay Patel Commented Feb 29, 2020 at 3:37
  • in my active theme function.php – Arwahi M Commented Feb 29, 2020 at 11:49
Add a comment  | 

1 Answer 1

Reset to default 0

Try this:

if (is_page('43')){ remove_action ('woocommerce_after_shop_loop_item', array ('WCV_Vendor_Shop', 'template_loop_sold_by'), 9, 2);}

本文标签: phpI want to hide quotsold byquot on certain pages with id page 43