vagueillusion
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Limit user front-end read access to posts from specific categories@bcworkz Thanks for the help on this, much appreciated.
Thought I would be able to tackle it with a plugin, alas, the code route it shall be.
Forum: Fixing WordPress
In reply to: WooCommerce product designer/customiser pluginsSorry about that, I forgot I still had this one.
Ah ok, that makes sense.
What settings would you suggest for both desktop and mobile, so the popup only displays once per visit?
Got it sorted
add_post_type_support( 'event', 'genesis-seo' );
Forum: Plugins
In reply to: [Custom Post Type UI] Aquick question about yarppGot it sorted, thanks ??
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Blank category archive pageGot it sorted, thanks for the help.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Blank category archive pageI’m using the genesis framework, they advise against modifying framework files but instead do overrides in child theme.
Will it work if I create taxonomy-advert_category.php file and just add the code below?
<?php global $wp_query; remove_filter("the_content", "adverts_the_content"); echo shortcode_adverts_list(array( "category" => $wp_query->get_queried_object_id() )); ?>
Thanks ??
I know you can ad support for genesis seo features using
add_post_type_support( 'cpt-slug', 'genesis-seo' )
I’m just not sure what the Events Manager CPT slug is, could you assist?
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Need some help with an events page 404Thanks for the reply, much appreciated.
Yea I think that conflict is causing the problem, I’ll work around that problem for now and see if I can find a fix, will post if I do.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Need some help with an events page 404Apologies, my title should have read: Need some help with ad page 404.
Forum: Plugins
In reply to: [Custom Post Type UI] Genesis archive supportAwesome!!
Worked perfectly, thanks ??