nicolargo
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [Google Analytics Dashboard] [Plugin: Google Analytics Dashboard] Loading…Thanks you Carson !
The problem is resolved in this lastest version 🙂
Mmhh, did not solve all the issue a better patch will be:
replace:
foreach ( $wp_query->tax_query as $tax_query ) $term_count += count( $tax_query['terms'] );by:
foreach ( (array) $wp_query->tax_query as $tax_query ) $term_count += count( $tax_query['terms'] )It works now when i try todisplay my category:
http://blog.nicolargo.com/category/open-source
But when i try to get the feed for that category (http://blog.nicolargo.com/category/open-source/feed), i have the following error on the XML file:
<b>Warning</b>: Invalid argument supplied for foreach() in <b>/srv/d_bilbo/web/blog/wp-includes/canonical.php</b> on line <b>153</b>
…
Patch needed on WordPress ?
If i change the canonical.php script by replacing this section line 53:
foreach ( $wp_query->tax_query as $tax_query ) $term_count += count( $tax_query['terms'] );by this code:
if (is_tax()) { foreach ( $wp_query->tax_query as $tax_query ) $term_count += count( $tax_query['terms'] ); }The problem is solved…
Forum: Installing WordPress
In reply to: No JS loaded under wp-admin pagesIt’s work !!!
Thanks a lot for this hint James.
Viewing 5 replies - 1 through 5 (of 5 total)