- This topic has 10 replies, 4 voices, and was last updated 6 years, 5 months ago by
Tom.
-
AuthorPosts
-
November 21, 2019 at 11:24 pm #1071866
Gerhard
Since the update to 2.4.0 /1.9.0, there are errors when displaying the More Button.
Display more Posts (after second press):
+ More > null+More
+ Loading = +nullLoading
etc.
November 22, 2019 at 8:13 am #1072715David
StaffCustomer SupportHi there,
that is peculiar – can you try disabling any plugins or custom functions you have to see if there is a conflict
November 24, 2019 at 11:54 pm #1075571Gerhard
Hi,
Thanks for the 0815 standard support suggestion, I always try this first before I write a message.
That brings no solution, with GP 2.3.x with GP Premium 1.8 has worked without problems.
GP 2.4.0 and GP Premium 1.9 generate the error.
GP 2.4.0 and GP Premium “1.8” works
It is clearly on the GP Premium “1.9” plugin, please fix the problem!
Thanks a lot!
November 25, 2019 at 5:06 am #1075978David
StaffCustomer SupportI am unable to replicate the error on either a clean or updated install using 2.4 and 1.9.
Do you have any custom functions or code within GP Hooks?November 25, 2019 at 1:18 pm #1076951George
I have exactly the same problem. All latest WP, GP, and GPP versions. It happens to two sites. I copied one site to a staging environment and disabled all plugins, caching, etc, apart from GP Premium. I only kept “Code Snippets” active with this code to add a custom post type called “video” to the archives:
function my_cptui_add_post_types_to_archives( $query ) { // We do not want unintended consequences. if ( is_admin() || ! $query->is_main_query() ) { return; } if ( is_category() || is_tag() && empty( $query->query_vars['suppress_filters'] ) ) { // Replace these slugs with the post types you want to include. $cptui_post_types = array( 'video' ); $query->set( 'post_type', array_merge( array( 'post' ), $cptui_post_types ) ); } } add_filter( 'pre_get_posts', 'my_cptui_add_post_types_to_archives' );Maybe the issue happens for custom post type archives?
November 25, 2019 at 2:48 pm #1077051David
StaffCustomer SupportIt turns out to be a bug and that will be patched in the next update which should be released tomorrow.
November 25, 2019 at 3:24 pm #1077087George
Excellent, thank you!
November 26, 2019 at 12:51 pm #1078561George
Thank you for the superfast fix, works great now!
November 26, 2019 at 12:52 pm #1078563Tom
Lead DeveloperLead DeveloperAwesome! Sorry for the bug 🙂
November 26, 2019 at 1:07 pm #1078577Gerhard
Thank you for the fix, works great!
November 26, 2019 at 8:13 pm #1078954Tom
Lead DeveloperLead DeveloperAwesome! Thanks for reporting the issue 🙂
-
AuthorPosts
- You must be logged in to reply to this topic.