Advertisement
wclovers

Untitled

Feb 17th, 2022
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. add_filter( 'wcfmmp_is_allow_sold_by_label', function( $allow ) {
  2.     return ( is_woocommerce() && is_shop() ) ? false : $allow;
  3. } );
  4. add_filter( 'wcfmmp_is_allow_sold_by_logo', function( $allow ) {
  5.     return ( is_woocommerce() && is_shop() ) ? false : $allow;
  6. } );
  7. add_filter( 'wcfmmp_is_allow_sold_by_review', function( $allow ) {
  8.     return ( is_woocommerce() && is_shop() ) ? false : $allow;
  9. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement