vidhill
Forum Replies Created
-
Another thread reporting the same error, plugin author is working on resolution.
https://www.ads-software.com/support/topic/debug-error-nextgen-version-1910
Duplicate thread with same error..
https://www.ads-software.com/support/topic/debug-error-nextgen-version-1910
– Deactivating the NextGen Gallery plugin makes the error go away
I have written a fix myself, at line 205
instead of
if (is_admin()) { wp_enqueue_script('cfplsc_admin_js', trailingslashit(get_bloginfo('url')).'?cf_action=cfplsc_admin_js', array('jquery')); }
(which would add the script on all admin pages)
I added this:
add_action("admin_print_scripts-post.php", 'cfplsc_load_admin_js' ); function cfplsc_load_admin_js() { wp_enqueue_script('cfplsc_admin_js', trailingslashit(get_bloginfo('url')).'?cf_action=cfplsc_admin_js', array('jquery')); }
the script is only added to post.php admin pages
Forum: Plugins
In reply to: [Issuu PDF Sync] [Plugin: Issuu PDF Sync] WordPress 3.4 compatible?I am running a WordPress install in debug mode, and Issuu PDF Sync is throwing the following error:
Notice: wp_enqueue_script was called incorrectly. Scripts and styles should not be registered or enqueued until the wp_enqueue_scripts, admin_enqueue_scripts, or init hooks. Please see Debugging in WordPress for more information. (This message was added in version 3.3.) in /Volumes/RAID Set/Work_10/htdocs/corkbp/wp-includes/functions.php on line 2825
Forum: Fixing WordPress
In reply to: [My Page Order] My Page Order Not Working in WP 3.4Just a heads up, I had an issue with seo-automatic-wp-core-tweaks.. (wp 3.4)
Having that plugin activated caused a fatal error when I tried to activate My Page Order
Forum: Plugins
In reply to: [Plugin: Event Calendar 3] Event Calandar 3.14 Breaks WordPress filtersSOLUTION:
Event Calendar Version 3.1.4 implements its own excerpt filters..
To remove them add the following to your theme’s functions.php fileremove_filter('the_content','ec3_filter_the_content',20); remove_filter('get_the_excerpt', 'ec3_get_the_excerpt'); add_filter('get_the_excerpt', 'wp_trim_excerpt');
Event Calendar Version 3.1.4 was the cause of my issue, it implements its own excerpt filters..
To remove them add the following to your theme’s functions.php fileremove_filter('the_content','ec3_filter_the_content',20); remove_filter('get_the_excerpt', 'ec3_get_the_excerpt'); add_filter('get_the_excerpt', 'wp_trim_excerpt');
It seems that the plug-in Event Calendar Version 3.1.4 was the cause of my issues.
I’ll have to check in with the Plug-in’s Author.Forum: Plugins
In reply to: [Plugin: RB Internal Links] WP 2.9.2 Cannot ActivateSame here, since upgrading to WP 2.9.2 cannot activate it, get the same error:
Parse error: syntax error, unexpected T_STATIC, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/clutton/public_html/wp-content/plugins/rb-internal-links/rb-internal-links.php on line 56
Forum: Plugins
In reply to: [Plugin: WP-Table Reloaded] Problem Importing a table– Internet Explorer onlyHi,
I just upgraded the plugin and tested it, it looks fine now.
Thanks
David
Forum: Plugins
In reply to: [Plugin: WP-Table Reloaded] Problem Importing a table– Internet Explorer onlyHi,
Internet Explorer is the bane of a web developer’s lifeIt happens in IE6 and IE7, I haven’t tried it in IE8
Thanks