themightyant
Forum Replies Created
-
Thanks for the prompt reply, here are a few. (non-exhaustive list)
https://racecourseassociation.co.uk https://www.theroedererawards.com https://purelatitude.com https://hotelalbustan.com https://iscaschools.com
I couldn’t get this working with this plugin so I have used the official mailgun plugin.
I have exactly the same problem. I contacted the Jetpack team via their website last week but have had no response. Effectively Infinite Scroll is missing the first set of new posts in your case where 2 show at a time this is posts 3 & 4. In my case where 10 show at a time this is 11-20. After that everything works OK. I have changed this value and that holds true.
Forum: Plugins
In reply to: [Admin Color Schemer] Not compairable with PHP 7.0Hi Helen, no apologies needed we are all grateful for any update.
Thank youForum: Plugins
In reply to: [Admin Color Schemer] Not compairable with PHP 7.0Thanks @kzeni I can confirm your fork works! For a front end developer like myself this plugin is AMAZING, clients are so happy to see the admin in their brand colours (when appropriate for usability).
I agree it would be great if there was some update on plugin. Fully understand maintenance of plugins can become a hassle and developer may want to hand off ownership but some communication would be useful! @wordpressdotorg @helen @markjaquith Bueller, anyone? ??
Forum: Fixing WordPress
In reply to: Remove trailing slash from Canonical url on homepage onlyI have already spoken to Sybre Waaijer the plugin developer, as it uses WordPress’ canonical URL he redirected me here
Forum: Fixing WordPress
In reply to: Remove trailing slash from Canonical url on homepage onlyThanks Steve,
i’m using the The SEO Framwork not Yoast, but it uses WordPress’ canonical URL.
I tend to agree with all that the link says and my research showed the same.
However I still have client requesting it removed on the homepage. Is it possible?Forum: Fixing WordPress
In reply to: Remove trailing slash from Canonical url on homepage onlyAccording to client, who is an SEO Professional, (not my area of expertise just passing on) he has seen sites rankings tank for sites that trusted that https://example.com and https://example.com/ are equivalent. I am dubious, but as i’m being specifically asked am looking for a solution or alternatively a strong enough argument against.
Hi Arshid,
thanks for the reply, yes I can dismiss this as an admin, but that is not the problem.The problem is that non-admins are seeing the bar, they shouldn’t, and then they cannot dismiss it.
Forum: Plugins
In reply to: [Cookie Law Bar] Undefined index PHP errorsThank you, that fixes it!
Forum: Plugins
In reply to: [Cookie Law Bar] Undefined index PHP errorsHi,
Yes the errors are still there, they show up when I make changes to the cookie bar settings. see graphic belowCan you replicate the issue?
WP 4.7.2
Hi Jeremy I appreciate your reply. I have always used
content.php
and theget_template_part( 'content' );
part has always worked and isn’t where I am having the issue.Could you clarify the last part:
Once you have that working, you’ll need to edit the tma_render function, and create your custom WP Query with the custom post_type query parameter there.
I am unclear what exactly should appear in the render function to make additional CPT content appear with infinite scroll. There doesn’t seem to be any documentation on this.
Thnaks for the reply Jeremy, it’s a big help in the right direction, however i’m still having a little trouble with the
render
syntax.I wasn’t using a custom loop before but have changed that to below and I have also removed the
pre_get_posts
filter// Args $args = array( 'post_type' => array( 'post', ' update' ), ); $query = new WP_Query( $args ); if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post(); get_template_part( 'content' ); } }
What I am having trouble with is the syntax of render. This is my new function, but it’s not loading any posts
// Custom render for infinite scroll function tma_render() { while ( $query->have_posts() ) { $query->the_post(); get_template_part( 'content' ); } }
and this is the line in jetpacks
add theme support
'render' => 'tma_render',
Any help greatly appreciated. Googling the issue doesn’t seem to reveal any hints either
- This reply was modified 7 years, 12 months ago by themightyant.
Forum: Plugins
In reply to: [Custom Post Type UI] CPT UI Icon not displaying in adminNo worries, I did the same!
“An expert is a person who has made all the mistakes that can be made in a very narrow field.”Forum: Plugins
In reply to: [Custom Post Type UI] CPT UI Icon not displaying in adminTry clearing your browser cache. That fixed it for me ??