Hello,
1. On other theme, I have created some shortcodes so I can use them in product variable, but your theme is filter all products when I clicked on the value.
It is possible to disable this only on specific attributes?
This is the shortcode:
//[shortcode]
function shortcode_func( $atts ){
return '<a href="#" target="_blank"> click</a>';
}
add_shortcode( 'shortcode', 'shortcode_func' );
So if I add [shortcode] value to an attribute the value on front page should be click.
Hope you understand waiting for your answer!
2. I have succeeded in duplicate the custom product tab; It is possible to add the code to function.php (child theme) so I won’t need to replace every time theme updates?
Thanks