Will
Forum Replies Created
-
Good afternoon,
I was able to resolve this by setting global_terms_enabled to 0 in the sitemeta table in the DB. Still curious as to why this issue was only present with the All in One Security Plugin enabled, however I am glad to have it resolved.
Thanks for looking into it.
We are using TwentyTwenty with a custom child theme, however I just tested it with another, completely different theme and the same thing happens.
Thanks.
Good afternoon @vupdraft,
We do not have the WPML plugin installed and are hoping not to have to add any additional plugins.
Thanks.
Hi @pmbaldha,
We are not using any custom taxonomy or post types for this blog. This is occurring with the default “post” type and “categories” taxonomy that are build into WordPress.
Thanks,
Will
Good morning,
No, the slug is what is causing the problem. Here is some additional info that may help:
1) We are using the plugin with WPMU.
2) Here is what is returned by get_term for the same category both with and without this plugin enabled:With the plugin enabled:
object(WP_Term)#2587 (10) { ["term_id"]=> int(6222) ["name"]=> string(15) "Review Magazine" ["slug"]=> string(15) "review-magazine" ["term_group"]=> int(0) ["term_taxonomy_id"]=> int(5) ["taxonomy"]=> string(8) "category" ["description"]=> string(0) "" ["parent"]=> int(0) ["count"]=> int(58) ["filter"]=> string(3) "raw" }With the plugin disabled (this is the correct slug):
object(WP_Term)#2505 (10) { ["term_id"]=> int(6222) ["name"]=> string(15) "Review Magazine" ["slug"]=> string(10) "the-review" ["term_group"]=> int(0) ["term_taxonomy_id"]=> int(5) ["taxonomy"]=> string(8) "category" ["description"]=> string(0) "" ["parent"]=> int(0) ["count"]=> int(58) ["filter"]=> string(3) "raw" }Thanks.
Thanks, I was able to solve this by overriding the default templates in my child them, as noted on https://docs.ultimatemember.com/article/119-overriding-default-ultimate-member-profile-templates.
I’m not sure if you’re still trying to solve this, but this link helped me solve this issue:
http://wordpress.stackexchange.com/questions/100012/how-to-add-a-page-to-the-yoast-breadcrumbs
Forum: Plugins
In reply to: [WP Activity Log] Exclude specific custom field from audit logThat was the issue. Thanks for your help!
Forum: Plugins
In reply to: [WP Activity Log] Exclude specific custom field from audit logI do see a slight problem with this functionality. When you return to the “Exclude Objects” tab on the Settings page, the list of excluded custom fields no longer appears. So there is no way to re-include a custom field that has been excluded (without accessing the database I assume). Thanks.
Forum: Plugins
In reply to: [WP Activity Log] Exclude specific custom field from audit logThanks a lot- glad this was as easy as updating the plugin. Keep up the great work!
Forum: Plugins
In reply to: [Edge Suite] Animation Loading on Category Archive PageThanks Timm
Forum: Plugins
In reply to: [Edge Suite] Animation Loading on Category Archive PageI was able to temporarily solve this by changing line 182 in edge-suite.php to
if(isset($post->ID) && is_single()){so it will only load the scripts on a blog post page.Obviously this will be overwritten when the plugin is updated. Please let me know if you have any thoughts on a more permanent fix. The scripts being enqueued through the default WordPress method would make it possible to fix this issue pretty easily.
Thanks for looking into this!
Great, thanks again.
Hi Ryan,
I actually just noticed that this fix created another error. The “for” attribute on the label needs to be associated with an ID on an input. Since there is no longer an ID, the label is invalid.
Thanks again for looking into this.
Will
Thanks Ryan, works great!