• Resolved jack.aspden

    (@jackaspden)


    How would I go about changing the number of events shown on each line? I’d like there to be 5 or 6.

    Thanks,

    Jack

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @jackaspden

    Please add the following code to your child theme’s functions.php file

    add_filter('event_manager_event_wpem_column','change_wpem_column_listing');
    function change_wpem_column_listing($number){
    $number = 6 //add your column number here
    return $number;
    }

    Thank you

    Hi @jackaspden
    We haven’t heard back from you in a while. I am resolving this issue for now. Please create a new thread still if you are facing the issue.

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Events List’ is closed to new replies.