• Resolved openskyconsult

    (@openskyconsult)


    As a site/events admin, I want to find “stale” recurring events so I can verify the details are still correct. I’d like to add a column for Event Updated Date and be able to filter on it like I can for Start Date and End Date.

    I had a Pro license last year as I evaluated the product, this feature is required for me to be interested in renewing. I’ve read through the forums and documentation for APM, but I don’t see any easy recipes. Please advise on options for adding this capability to APM.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey there !

    Thanks for reaching out. The first thing I have to let you know of is that we really don’t support custom development requests here — though I do have a snippet for you that can be added via your child theme’s functions.php file to get you started.

    function extend_ecp_apm_filters( Tribe_APM $apm_object ) {
    	// The APM object created by Events Calendar PRO will be assigned to this global
    	global $ecp_apm;
    	// Let's ensure we're looking at the correct APM object
    	if ( $ecp_apm !== $apm_object ) return;
    	// Define the additional filters we wish to add to those already setup by APM
    	$custom_args = array(
    		'additional_filter_key' => array(
    			'name' => 'This is my new filter',
    			'meta' => '_ecp_custom_2'
    		)
    	);
    	// Let's add them to the mix via the convenient add_filters() method
    	$apm_object->add_filters( $custom_args );
    }
    // "tribe_cpt_filters_init" is a good point to add new filters
    add_action( 'tribe_cpt_filters_init', 'extend_ecp_apm_filters' );

    You’ll need to do a bit more coding to get this going to your liking, our Functions list should also help with that.

    Take care,
    Ed ??

    Hey there,

    Since this thread has been inactive for a while, I’m going to go ahead and mark it as resolved. Don’t hesitate to create a new thread any time you help again!

    Ed ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Adding Updated Date Column + Filter’ is closed to new replies.