Gemini23
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Astra] Custom navigation menusFound the solution – part of WordPress. D’oh!
Thanks.
Thanks Adam – I have added a comment. Also to ask – is the impressions page views or impressions in the SERPS?
Forum: Everything else WordPress
In reply to: How to No-Index Pages from Page 2 onwardsYoast plugin but the option isn’t there to add no-index for page2 onwards
Forum: Themes and Templates
In reply to: [Kadence] How to disable click and zoom on product images?Hurray! Thanks Eze, this worked.
Okay - re the following code - what do I change the 'POST_TYPE_HERE' to? And anything else need changing? Most posts in 1 of 2 different categories. add_action('init', 'bulk_update_post_meta_data'); function bulk_update_post_meta_data() { // guardrail: if current user can't edit posts, bail if ( ! current_user_can( 'edit_posts' ) ) return; $args = array( 'posts_per_page' => -1, 'post_type' => 'POST_TYPE_HERE', 'suppress_filters' => true ); $posts_array = get_posts( $args ); foreach($posts_array as $post_array) { $yarpp_meta['yarpp_display_for_this_post'] = 1; // YARPP value to update update_post_meta( $post_array->ID, 'yarpp_meta', $yarpp_meta ); } }
Forum: Plugins
In reply to: [Contextual Related Posts] Can related products be posted?Can related products be placed on posts
Forum: Themes and Templates
In reply to: [Astra] Unable to view and edit Marketing WidgetHerman, I don’t know how to upload a vide on here…
Found it – simply change the <ol> to <ul>
Forum: Themes and Templates
In reply to: [Astra] How to ‘remove’ (not display) page numbers?Thanks Herman – that resolved it!
Forum: Themes and Templates
In reply to: [Astra] How to ‘remove’ (not display) page numbers?Thanks Herman. Is there a code that will hide the pagination just for the homepage?
But leave it on the archive pages of categories.Forum: Themes and Templates
In reply to: [Astra] How to ‘remove’ (not display) page numbers?Thanks
Visitors to the website can go to the catageory sections in the navigation bar and from there visit archives which are paginated/infite scroll
Okay – I have found it – it has ‘moved’ to the right sidebar.
Forum: Themes and Templates
In reply to: [Astra] How to ‘remove’ (not display) page numbers?Many thanks – the website is https://www.londontheatre1.com
Forum: Themes and Templates
In reply to: [Astra] How to display caption on featured image?Many thanks, Herman. ??