• Resolved adzay

    (@adzay)


    Hi, I want to edit my template file so that it may show a section of a locations page only if it has events happening at its location. (For example a colored container that holds the “NEXTEVENTS” list).

    I have tried many times and i have not been able to use your conditional placeholders as template tags within my files so I was wondering if you can give me a php “if” alternative please.

    Many thanks.

    https://www.ads-software.com/plugins/events-manager/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    try EM_Events::count(array(‘location’=>x)) where x is the location id

    Thread Starter adzay

    (@adzay)

    Hi, unfortunately it doesn’t work.

    I put this in my template

    <?php if( EM_Events::count(array('location'=>$EM_Location)) == 0 ) { ?>

    I ended up getting an error in the front end with em-object.php.

    Plugin Support angelo_nwl

    (@angelo_nwl)

    how about something like

    $count = EM_Events::count(array('location'=>$EM_Location->location_id))
    if ( $count > 0 ){
    
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Check if location has any events attached in template/php’ is closed to new replies.