Hi @wpkenneth ,
Please update the plugin to the latest release(3.1.14) and add this below code in your theme’s functions.php file
add_filter( 'icegram_mobile_popup_settings', array( &$this, 'icegram_mobile_popup_custom_settings' ), 10, 1 );
function icegram_mobile_popup_custom_settings( $action_bar ) {
$action_bar['label'] = __( 'Your Text here', 'icegram' );
return $action_bar;
}
Thank You!
Sorry, have made a small modification in the above code. Please copy this below code in the functions.php file instead of above one
add_filter( 'icegram_mobile_popup_settings', 'icegram_mobile_popup_custom_settings');
function icegram_mobile_popup_custom_settings( $action_bar ) {
$action_bar['label'] = __( 'Your Text here', 'icegram' );
return $action_bar;
}
Marking this as resolved due to inactivity