WordPress.org Forums » All Replies https://wordpress.org/support/forums/feed/ Sat, 28 Mar 2026 05:11:53 +0000 https://bbpress.org/?v=2.7.0-alpha-2 en-US https://wordpress.org/support/topic/products-not-loading-after-latest-update/#post-18865334 <![CDATA[Reply To: Products not loading after latest update]]> https://wordpress.org/support/topic/products-not-loading-after-latest-update/#post-18865334 Sat, 28 Mar 2026 04:46:33 +0000 Jahidul Hassan Mojumder Hi @nnatsios,

Sorry for the delayed response. I tried it myself and found everything to work fine as shown in this screenshot. I am using WooCommerce v10.6.1 and WordPress v6.9.4. Is there anything else that I might be missing to reproduce the issue?

Along with that, please take a look at whether any of the following scripts are somehow blocked on your website.

  1. [your_domain_name]/wp-json/wepos/v1/settings
  2. [your_domain_name]/wp-json/wepos/v1/payment/gateways
  3. [your_domain_name]/wp-json/wepos/v1/products?status=publish&per_page=30
  4. [your_domain_name]/wp-json/wc/v3/products/categories?hide_empty=true&_fields=id,name,parent_id&per_page=100

Blocking any of these might cause an issue. It might be blocked in several ways. A security plugin, a firewall, or a blocker from your hosting. I would recommend taking a look at those.

Feel free to share your feedback on this.

]]>
https://wordpress.org/support/topic/show-featured-events-first-2/#post-18865332 <![CDATA[Reply To: Show Featured Events First]]> https://wordpress.org/support/topic/show-featured-events-first-2/#post-18865332 Sat, 28 Mar 2026 04:38:01 +0000 Jan the filter get_event_listings_query_args does not seem to exists any more.

if anyone is looking for a solution, this works:

function custom_event_manager_get_listings_args( $query_args ) {
$query_args[ 'orderby' ] = 'featured';
return $query_args;
}
add_filter( 'event_manager_get_listings_args', 'custom_event_manager_get_listings_args', 99 );
]]>
https://wordpress.org/support/topic/timed-out-stuck-in-processing-for-over-5-minutes/#post-18865329 <![CDATA[Timed out: stuck in processing for over 5 minutes]]> https://wordpress.org/support/topic/timed-out-stuck-in-processing-for-over-5-minutes/#post-18865329 Sat, 28 Mar 2026 04:30:39 +0000 liamcordoba Hi, I sometimes get this error:

“Timed out: stuck in processing for over 5 minutes”

I’m using DeepSeek through anthropic, and sometimes it just gets stuck in processing and never finishes.

Anyone else having this?

]]>
https://wordpress.org/support/topic/how-to-optimize-my-woocommerce-slugs/#post-18865328 <![CDATA[How to optimize my WooCommerce slugs?]]> https://wordpress.org/support/topic/how-to-optimize-my-woocommerce-slugs/#post-18865328 Sat, 28 Mar 2026 04:27:28 +0000 Renaat How to optimize my WooCommerce slugs, Category Base and Parent Slug?

In Rank Math I have this option https://app.screencast.com/2M7J9U9dLcRFr

How can I do the same with SureRank?

]]>
https://wordpress.org/support/topic/good-9108/#post-18865327 <![CDATA[Best WordPress Real Estate Plugin for Property Listings]]> https://wordpress.org/support/topic/good-9108/#post-18865327 Sat, 28 Mar 2026 04:26:02 +0000 Md Tanvir Hossain Really impressed with Havenlytics. Easy to set up, flexible layouts, and the search works smoothly. Great option for building modern property listing websites.

]]>
https://wordpress.org/support/topic/my-check-out-page-disent-respond-it-is-the-theme-problem-no-support-from-them/#post-18865326 <![CDATA[My checkout page doesn’t respond. It is the theme problem, no support theme]]> https://wordpress.org/support/topic/my-check-out-page-disent-respond-it-is-the-theme-problem-no-support-from-them/#post-18865326 Sat, 28 Mar 2026 04:23:32 +0000 radas73

Hi there
I hope I can get your answer quickly as I would like to work on the website tomorrow.

1. So my problem is that with the checkout page set up to be only booking after pressing book button

it doesn’t respond, which means i don’t go to the thank you page, and no booking is registered.


2. I followed the instructions OF TE PAID PLUGINGGIN WP TRAVEL and changed the theme and booking it works, took me to thank you page and registered the booking url https://altmanplus.com/wp-travel-checkout/

3. Now, can you help me with my old theme to solve the problem? I was building the front page for a long time

I hope you help me to solve the problem booking and go to thank you page.

  • This topic was modified 39 minutes ago by radas73.
]]>
https://wordpress.org/support/topic/settings-page-just-displays-a-blank-white-page/#post-18865325 <![CDATA[Reply To: Settings page just displays’ a blank white page?]]> https://wordpress.org/support/topic/settings-page-just-displays-a-blank-white-page/#post-18865325 Sat, 28 Mar 2026 04:16:13 +0000 Syde Jamie Hi @9ball ,

Thank you for your clarification.

To speed up the whole process we suggest you to contact us directly for further assistance. You can open a ticket with our service desk. Here’s how you can request support: Request Support. Please make sure to include the URL of this thread in your ticket for reference.

Best Regards,
Jamie

  • This reply was modified 11 minutes ago by Syde Jamie.
]]>
https://wordpress.org/support/topic/show-featured-events-first-2/#post-18865324 <![CDATA[Show Featured Events First]]> https://wordpress.org/support/topic/show-featured-events-first-2/#post-18865324 Sat, 28 Mar 2026 04:08:57 +0000 Jan hey 🙂

I used the following code to

  1. show featured events first (ordered by event start date)
  2. and then all other events (ordered by event start date)

by using this tutorial: https://support.wp-eventmanager.com/portal/en/kb/articles/ordering-events-by-event-start-date-meta-key .

function custom_event_manager_get_listings_args( $query_args ) {
$query_args[ 'orderby' ] = array(
'featured' => 'DESC',
'event_start_date' => 'ASC'
);
return $query_args;
}
add_filter( 'event_manager_get_listings_args', 'custom_event_manager_get_listings_args', 99 );

function custom_get_event_listings_query_args( $query_args ) {
$query_args[ 'meta_query' ][ 'relation' ] = 'AND';
$query_args[ 'meta_query' ][ 'featured' ] = array(
'key' => '_featured',
'compare' => 'EXISTS'
);
$query_args[ 'meta_query' ][ 'event_start_date' ] = array(
'key' => '_event_start_date',
'compare' => 'EXISTS'
);
return $query_args;
}
add_filter( 'get_event_listings_query_args', 'custom_get_event_listings_query_args', 99 );

it worked great until I updated WP Event Manager today.

is there a quick fix to make it work again?

thanks a lot,
Jan

]]>
https://wordpress.org/support/topic/version-6-75-breaking-wp-job-manager-resume-manager-form-submissions/#post-18865323 <![CDATA[Reply To: Version 6.75 Breaking WP Job Manager Resume Manager Form Submissions]]> https://wordpress.org/support/topic/version-6-75-breaking-wp-job-manager-resume-manager-form-submissions/#post-18865323 Sat, 28 Mar 2026 04:06:37 +0000 eugenecleantalk Thank you for your reply.

In the meantime, you can also install the previous version of our plugin if you haven’t had any issues with it: https://github.com/CleanTalk/wordpress-antispam/releases/download/6.74/cleantalk-spam-protect.6.74.zip

]]>
https://wordpress.org/support/topic/where-find-specific-ids-to-filtering/#post-18865321 <![CDATA[Reply To: Where find specific IDs to filtering]]> https://wordpress.org/support/topic/where-find-specific-ids-to-filtering/#post-18865321 Sat, 28 Mar 2026 03:52:57 +0000 Monjur Hasan Milton Hi,

Please check this https://prnt.sc/_nc0P8Juqw9L

]]>