• Resolved Anil Patidar

    (@anilpatidar138)


    Hi

    i an using your plugin in my site
    and i want to show event category wise
    like i have create a 6 event and two category

    3-3 event asgin to category
    but i want to show event category wise

    is that possible in the plugin

    please help

Viewing 15 replies - 1 through 15 (of 18 total)
  • Plugin Author Ashok Dudhat

    (@ashokdudhat)

    Dear Anil,

    Are you sure that you are using our plugin, last time you was using other plugin and put thread here, kindly please remove previous thread if possible?

    About your query : Yes, it is possible to show any event with event category and event types.
    You need to enable category and types from admin panel, event listing setttings.

    I hope that it will help you.

    Thanks

    Thread Starter Anil Patidar

    (@anilpatidar138)

    Hi,

    sure i am using your plugin other plugin have been removed from my site

    thanks

    Plugin Author Ashok Dudhat

    (@ashokdudhat)

    Hi,

    About your query : Yes, it is possible to show any event with event category and event types.
    You need to enable category and types from admin panel, event listing setttings.

    I hope that it will help you.

    Thanks

    Thread Starter Anil Patidar

    (@anilpatidar138)

    Hi

    thank you for your reply

    and i want to remove three filter
    1 keyword
    2 location
    3 any date

    only i want to show 2 filter

    1 any category
    2 any event type

    it is possible in plugin

    thank you

    Plugin Author Ashok Dudhat

    (@ashokdudhat)

    Hi,

    Please just override filter template and you will get what you want ??

    For more info :https://www.wp-eventmanager.com/documentation/creating-custom-event-search-form/

    Thanks

    Thread Starter Anil Patidar

    (@anilpatidar138)

    Thank You For Your Reply….

    Thread Starter Anil Patidar

    (@anilpatidar138)

    Hi,

    @ashokdudhat

    Please help me

    i have add a 27 Event in my website 8 event in 2016 in the year and 19 2017 in the year
    according to date
    but event dont remove from Recent Events on page
    all event showing only 2016 yaer
    but i want to show event of 2017 yaa upcoming event on event page

    and dont hide my expired event list according to end of event date and custom
    Listing Expiry Date:

    please visit this link
    https://www.mpfindia.in/eventsss/

    please help

    • This reply was modified 7 years, 4 months ago by Anil Patidar.

    Hi Anil,
    I have checked your above link.I can see all the events of 2016 and 2017 after clicking on load more.

    Can you please describe what you want to achieve?

    Thank you

    Thread Starter Anil Patidar

    (@anilpatidar138)

    Hi
    @hiteshmakvana

    sidebar archive is prefect set dont have any problem.

    my question is

    i want to see only recently year like 2017 of event .
    previous last month October events ..
    how to hide 2016 events from event page

    thank you

    You can assign your custom post order via filter

    $query_args = apply_filters( 'get_event_listings_query_args', $query_args, $args );

    You can add your customization in your theme side.

    Hi Anil,
    If you want to hide expired events you just need to set from event listing settings.

    Enable – Hide expired listing settings.

    Thank you.

    Thread Starter Anil Patidar

    (@anilpatidar138)

    Hi,

    @hiteshmakvana

    My event dashboard in dont show event.
    from fronted viva short code

    [event_dashboard]

    ( You do not have any active listings. )

    all event is active but event is cancel

    and 4 event is active not cancel and not expired

    Please help

    Hi Anil,
    If you are login with organizer of that event then you can see your events.
    If you want to know the author of that event you can check in admin side via editing event.At the bottom you will see posted by : auther name.

    [event_dashboard]
    Above shortcode only shows events which is posted bye current user.

    I hope all clear now.

    Thank you.

    Thread Starter Anil Patidar

    (@anilpatidar138)

    Thank You for your reply…

    one more think

    can i add one column in event dashboard for the event category name
    at present 6 column in event dashboard i want to add one more column for the category
    so please how to add category column in dashboard

    thank you again for the answer

    please help

    Hi Anil,
    You can override template event-dashboard.php theme side.For overriding template please check https://www.wp-eventmanager.com/documentation/template-files-override/

    If you want to follow action and filter which is proper way to do.
    Add below code inside you themes function file.
    You need to add or unset column details.

    add_filter( 'event_manager_event_dashboard_columns', 'add_remove_column' );
    
    function add_remove_column( $columns ) {
    	//to unset column
    	unset( $columns['event_title'] );
    	unset( $columns['event_location'] );
    	unset( $columns['event_start_date'] );
    	
    	//to set new column
    	$columns['my_custom_column']= __( 'Custom Title', 'wp-event-manager' );
    	
    	return $columns;
    }
    
    //show value in column
    /*
    * to show each column value you need to add multiple add action according to your column name
    * event_manager_event_dashboard_column_ + your column name 
    * in this function i have used 
    * event_manager_event_dashboard_column_ + my_custom_column
    * you need to set dynamic hook for each column value
    */
    add_action( 'event_manager_event_dashboard_column_my_custom_column',  'custom_column_value', );
    function custom_column_value($event)
    {
    
    	echo 'My custom column value goes here';
    
    }

    Thank you

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘Can i seen event according to category on page’ is closed to new replies.