bensinclair
Forum Replies Created
-
Forum: Plugins
In reply to: [CKEditor for WordPress] Plugin not working with WordPress 3.5The FireBug error is:
TypeError: tinymce.onAddEditor is undefined
/wp-admin/load-scripts.php?c=1&load[]=admin-bar,hoverIntent,common,schedule,wp-ajax-response,autosave,suggest,jquery-color,wp-lists,jquery-ui-core,jquery-ui-widget,jq&load[]=uery-ui-mouse,jquery-ui-sortable,postbox,post,thickbox,underscore,shortcode,backbone,media-models,wp-plupload,media-views,media-&load[]=editor,jquery-ui-position,wp-pointer,editor&ver=3.5
Line 67
Based on old tickets, there were issues with Google XML Sitemaps. I don’t have this installed just so you know.
Hi Ciprian, your code worked by I had to change the first line to:
$sticky = get_option( 'sticky_products' );Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] Notice error when debug is turned onLOL that would explain why you were confused at the start. My bad I’m sorry. Is there anyway for me to change the tag on this or will I have to repost?
Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] Notice error when debug is turned onVersion 1.50 and in the /we-content/plugins/wp-postviews/wp-postviews.php
Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] Notice error when debug is turned onBecause the error is in the WP-Pagenavi plugin…
Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] Notice error when debug is turned onFound another one:
Notice: Undefined index: views in /wordpress/wp-content/plugins/wp-postviews/wp-postviews.php on line 67
Line 67:
$post_views = intval($post_views['views'][0]);Should be:
$post_views = isset($post_views['views'][0]) ? intval($post_views['views'][0]) : 0;