Knowledge Base
Show Counter in all Front End Instances
To display the counter under all coupons that have it activated add the following coding to a custom plugin or to your child theme’s function.php:
/* * Coupon Creator Pro - Show Counter in all Views * Version 2.1.2 */ add_action('cctor_before_coupon', 'cctor_counter_on_shortcode' ); function cctor_counter_on_shortcode() { add_action('cctor_coupon_link', 'cctor_pro_counter', 10 , 1); }