Enable/disable selected popup with code
-
How to enable/disable selected popup with code in functions.php?
/** * Before WPAI import function */ function before_xml_import( $import_id ) { // here I want to Enable popup popmake-86629 } add_action( 'pmxi_before_xml_import', 'before_xml_import', 1, 1 ); /** * On Complete WPAI import function */ function after_xml_import_function( $import_id ) { // here I want to Disable popup popmake-86629 } add_action( 'pmxi_after_xml_import', 'after_xml_import_function', 1, 1 );
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Enable/disable selected popup with code’ is closed to new replies.