How to Add Custom Conditions to Display a Call-to-action?

Description The cp_pro_target_page_settings filter allows adding custom conditions to display your design. Usage /** * Callback function to add more conditions while displaying popup * * @param bool $display * @param string $style_id * @return bool $display */ function your_callback_function( $display, $style_id ) { // Replace style id with your style ID if( $style_id == ’23’ […]

How to Add Custom Conditions to Display a Call-to-action? Read More »