• Resolved aliferis

    (@aliferis)


    hello

    i want to create a multi user diary system using Events Manager

    I need Front end submission for WP registered users and the ability for a WP user to view a list or cal of their own events.

    So, a user event view and a combined (all user) event view

    Can I do this ?

    thanks a lot

    joe

    https://wordpress.org/plugins/events-manager/

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

    (@angelo_nwl)

    hi,

    sorry for the confusion, can you give us more details please? however, you can try to use shortcode [event_form] for the event submission form and for additional settings see Events > Settings > General > Event Submission Form

    Thread Starter aliferis

    (@aliferis)

    Thanks a lot Angelo

    I can see how I can create a list of events for a WP user with your search shortcode – very nifty !

    Is there a way I can do front end event posting ?

    cheers

    Joe

    The [event_form] shortcode should allow you to do that – it can be used in any page.

    Thread Starter aliferis

    (@aliferis)

    thanks

    Thread Starter aliferis

    (@aliferis)

    hi again

    using the Search shortcode with the owner parameter, is there a way to write the shortcode so the current user is used – like this

    [events_list owner=”][/events_list]

    or will I have to use php in the template – like this

    echo EM_Events::output(array(‘owner’=>$currentUser));

    thanks a lot

    joe

    Thread Starter aliferis

    (@aliferis)

    i did it like this in template – I made a my events page (22)

    <?php
    $currentUser = get_current_user_id();
    if (is_page(22)) {
    echo EM_Events::output(array(‘owner’=>$currentUser));
    echo do_shortcode(‘[events_calendar full=1 owner=’.$currentUser.’]’);
    }
    ?>

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘user events’ is closed to new replies.