a4aLien
Forum Replies Created
-
Hi,
We’ve observed the same with our Woocommerce products. Content does not show in editor and frontend works OK. Disabling/Downgrading the plugin fixes it.
We received an email from Woocommerce too.
[08-Dec-2020 06:05:35 UTC] PHP Parse error: syntax error, unexpected ')' in /home/arttea/public_html/wp-content/plugins/seo-by-rank-math/includes/admin/class-serp-preview.php on line 461
Forum: Fixing WordPress
In reply to: STRANGE Pagination – Limit to 35 postsFound the ISSUE.
Had put this code earlier (pre_get_posts) in functions.php that restricted apparently, all queries, to 35.
function number_of_posts_on_archive($query){ if ($query-> is_category()) { $query->set('posts_per_page', 35); } return $query; } add_filter('pre_get_posts', 'number_of_posts_on_archive');
Alas, it took me 5 hours of extensive searching yet the culprit was sitting in my own code.
- This reply was modified 8 years, 5 months ago by a4aLien.
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Titles in Dropdown showing raw stringsForum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Titles in Dropdown showing raw stringsBoth of the solutions are working perfectly fine!
Now I feel bad of having to pay him while you people deserve all the credit ??
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Titles in Dropdown showing raw stringsTsk Alex..
Didn’t expect it this soon ??
I just paid a developer $30 to fix it..
Here is what he did:
//My Custom Functions add_filter('list_pages', 'my_list_pages',10,2); function my_list_pages($title,$page){ return WPGlobus_Core::text_filter($title,WPGlobus::Config()->language);
}
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Titles in Dropdown showing raw strings