fbpx
Want To Add Extra Images Per Product Variation For Free? Download Now

Remove the ‘more’ after the + on shop page

Hi,

 

I want to show a maximum of 3 swatches for each product on the shop pages. How can I remove the ‘More’ from the ‘+12 More’ on the shop page?

 

Kind regards
Davy

Golam Kibria

Hi Davy,

Please add the following snippet to your child theme’s functions.php file

add_filter ('woo_variation_swatches_pro_item_more_text', function($default, $product){
return esc_html__( '+%s', 'woo-variation-swatches-pro' );
},10,2);

Let me know if this helps.

Thank You