don’t even bother. totally not functioning. hasn’t been updated since 2009.
https://www.ads-software.com/extend/plugins/advanced-tagline/
]]>Notice: Use of undefined constant ADVTAG_VERSION – assumed ‘ADVTAG_VERSION’ in /wordpress/wp-content/plugins/advanced-tagline/advanced-tagline.php on line 28
Notice: Use of undefined constant ADVTAG_MODE – assumed ‘ADVTAG_MODE’ in /wordpress/wp-content/plugins/advanced-tagline/advanced-tagline.php on line 29
Notice: Use of undefined constant ADVTAG_TAGPAIRS – assumed ‘ADVTAG_TAGPAIRS’ in /wordpress/wp-content/plugins/advanced-tagline/advanced-tagline.php on line 30
Notice: Use of undefined constant ADVTAG_TYPE – assumed ‘ADVTAG_TYPE’ in /wordpress/wp-content/plugins/advanced-tagline/advanced-tagline.php on line 31
Notice: register_sidebar_widget is deprecated since version 2.8! Use wp_register_sidebar_widget() instead. in /wordpress/wp-includes/functions.php on line 3382
Notice: register_widget_control is deprecated since version 2.8! Use wp_register_widget_control() instead. in /wordpress/wp-includes/functions.php on line 3382
Notice: has_cap was called with an argument that is deprecated since version 2.0! Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead. in /wordpress/wp-includes/functions.php on line 3466
]]>I’ve tried this plugin on a few different WordPress installations and in all cases, none of features seem to work. Settings aren’t saved, taglines aren’t saved or imported, etc. Basically, the user interface appears in the admin panel but doesn’t seem to do anything. In short, this plugin doesn’t do anything!
This has been tested in Firefox, Internet Explorer, and Chrome, so I don’t suspect that this is a browser issue.
]]>On the Active Tagline settings page the button to save the OPTIONS doesn’t work, nothing happens when I click it. I am able to type in a new tagline but nothing happens when I click the SAVE button below so I can’t save any taglines.
I couldn’t find any information on this, theres no author website as far as I could see so I’m assuming this plugin is DEAD.
]]>The Advanced Tagline plugin’s code enqueues its “advtag.js” script without taking any steps to limit where the script is loaded. This causes the script to be included in the header of every page (public and admin).
I’ve never written or edited a plugin before, so a 100% fix (making the script only load on the Advanced Tagline settings page) will take me a bit longer, but I at least got the script to only load in admin pages (and in the page footer, not the <head>) with the following code changes:
add_action('init', 'advtag_scripts');
to:
add_action('admin_init', 'advtag_scripts');
and:
wp_enqueue_script('advtag', $path.'advtag.js', array('jquery'), '1.0' );
to:
wp_enqueue_script('advtag', $path.'advtag.js', array('jquery'), '1.0', true );
https://www.ads-software.com/extend/plugins/advanced-tagline/
]]>