Reply To: Custom fields and WooCommerce

Home Forums Support Custom fields and WooCommerce Reply To: Custom fields and WooCommerce

Home Forums Support Custom fields and WooCommerce Reply To: Custom fields and WooCommerce

#230142
Tom
Lead Developer
Lead Developer

You can use GP Hooks, this would only show on WooCommerce templates for example:

<?php if ( function_exists( 'is_woocommerce' ) ) :
if ( is_woocommerce() ) { ?>
    Text here will only show on WooCommerce pages
<?php }
endif; ?>