Display events starting with most recent

For some reason there’s no way to change the order of how events are sorted using the feature element. So right now it’s starting with 2015 instead of this month. How can we get this flipped?

Hi Rob,

It seems that you are having an issue with the re-ordering of the events in the given page URL. To check the settings made, we need to investigate it by logging in to your website, can you please provide login credentials for your site in a secure note to examine it further, including:

– WordPress Site URL & Login URL
– WordPress Admin username/password

To create a secure note, click the key icon underneath any of your posts.

Thanks

Thank you for your help! I’ve sent a secure note with the details you’ve requested.

Hello Rob,

In your child theme, you have added a custom template. In your template, template-layout-event-content.php (framework/views/integrity/template-layout-event-content.php) file, you have this WP Query:

$options1 = array(
    'post_type' => 'post',
	 'post_status' => 'publish',
    'cat' => array(55),
 );

$wp_query= new WP_Query( $options1 );

Be aware that this is already custom development and is beyond the scope of our support. Please contact the one who added those codes and make sure that you are using the WP Query in the correct way to display the recent items. You may need to review these articles;

Best Regards.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.