Ashok Dudhat
Forum Replies Created
-
Hi,
Please make sure that you have done this way.
You can make new template file as copy from single.php file and rename it with name single-event_listing.php . It will look like below given example.
<?php
/*
* Single event listing pages use your theme’s single.php template and expand the content area to include other information.
*
* Template Name: Your File Name Template
* @theme Name: Your Theme Name*/
get_header();
<section>
<div class=”container”>
<div class=”row”>
<!– Start the Loop –>
<?php while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<!– End the Loop –></div>
</div>
</section>
get_footer();
?>For more information:
https://www.wp-eventmanager.com/documentation/single-event-listing-page/
Hi,
We have fixed cancelled events/expired events hide issue so Please download latest version.
Please let me know if you have still problem.
Thanks
Hi,
About expired event, we are investigating and let you know soon.
if you want to show ticket price then you need sell tickets addon and you need to customize listing view then it will show cost/price etc.
Thanks
For the bookmark and alerts has own separate dashboard. No need to mix with event dashboard.
I hope that it will make you clear.
Thanks
Hi,
You can customize search filter based on your need, please refer the following document.
https://www.wp-eventmanager.com/documentation/creating-custom-event-search-form/
Thanks
Hi,
The dashboard is already provided for the organizer/customer, please have look the following.
https://www.wp-eventmanager.com/documentation/the-event-dashboard/
Hope this will help you.
Thanks
Hi,
As i have mentioned in above link you have to use filter and then you can create any custom fields.
Open up your theme functions.php field and create a function to append a new field to the events section. First hook it in:
add_filter( ‘submit_event_form_fields’, ‘frontend_add_country_field’ );
Then write the function:function frontend_add_country_field( $fields ) {
$fields[‘event’][‘event_country’] = array(
‘label’ => __( ‘Country ($)’, ‘event_manager’ ),
‘type’ => ‘text’,
‘required’ => true,
‘placeholder’ => ‘e.g. germmany’
);
return $fields;
}This adds a event text field at the bottom of the events form that has the label “Country”, is required, has no placeholder.
Fields added using the above code will be saved to the event listing automatically.
https://www.wp-eventmanager.com/documentation/adding-new-field-event-submission-form/
During this week, we will launch visual field editor for the admin side so you can create any custom field without writing any code.
I hope that it will help you.
Hi,
You can add any custom field, please follow this.
https://www.wp-eventmanager.com/documentation/adding-new-field-event-submission-form/
Thanks
Hi,
We have launched the first version of the Recurring Events. If you find any problem then please open issue at add ons support system.
Have a good day.
Regards
- This reply was modified 7 years, 3 months ago by Ashok Dudhat.
Hi,
Great to hear that all working fine in your site. We love to your reveiw and feedback so it can help other users and us too.
For rest api, you need to create your own webservice based on your demand. it is just normal php json request or you can use curl for the request.
Thanks
Hi,
Thanks a lot for update.
If you are not using our plugin then kindly please delete this review and it will really appreciate us.
Have a nice day.
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
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
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
Hi,
We will launch within this week, we are testing it so kindly please wait for this week.
Thanks