Hello,
Yes. With the latest version of RSVP you can choose what Additional Fields to show on events: https://tppr.me/V2xBn and https://tppr.me/CKCBx
Replies for tickets on suppota
Hello,
Yes. With the latest version of RSVP you can choose what Additional Fields to show on events: https://tppr.me/V2xBn and https://tppr.me/CKCBx
Thank you for your messages, I am going to assign this ticket to Ashan (CEO and Main Developer) and he will be able to take it from here and find you a solution. Please allow some time for him to get back to you, we greatly appreciate your patience and thank you for being a eventon customer! Also please disable any IP blocking on your site if there are any.
Hello,
Could you please tell us more about the error you’ve fixed?
Hello,
Yes. Please check http://dev.myeventon.com. It has 4.9.8 installed along with the latest version of EventON.
Okay I go the idea about the custom field.
For URL fixing, can’t it be changed in the code which will make the taxonomy name as the name typed in category field ? This way if I add new category, I will have to again change in the code. This is not quite professional.
Please let me know, how to change in the code which will dynamically make the taxonomy name as the category name entered.
Look forward to hear soon.
Wishes
Datshay
Hey
I just updated to the newest plugin version 2.6.12 and expected the various things I have mentioned to have been fixed. I am getting an insecure font issue that is loaded over http. This is something you mentioned for me to fix earlier in another support issue. I fixed it in the earlier plugin but I am noticing the issue remains after the update. Other things I do not know about yet.
I was also asked to update the plugin because of an issue of past events not being removed on the front page. Updating did not help. I will find the correct issue and post about it again there.
No worries, we are glad your issue is resolved. If you have any further questions or concerns please create a new ticket.
If you have a moment, we would greatly appreciate if you could kindly leave us a review at codecanyon! from your account > downloads. Cheers!
I’m so sorry for the time waste! Didn’t realize that updates weren’t available directly in the Dashboard. We’ve upgraded it and it’s working again! So glad you guys are so quick to ensure your plugin is browser-ready! That’s wonderful to know!
Thank you for the quick reply!
Great!
1. that is comig from your theme mostly. Better way to do this is create a new page with desired title and then add eventon shortcode to show all the events.
2. you can add this filter to functions.php
add_filter(‘eventon_single_event_page_data’,’functionX’);
function functionX($A){
$A[‘etc_override’] = ‘yes’;
return $A;
}
if you have any more questinos please send us a new ticket 🙂
If you have a moment, we would greatly appreciate if you could kindly leave us a review at codecanyon! from your account > downloads. Cheers!
So by default there are 10 fields in there, so you’d wanna change the 11 to like 16 if you want 15 fields total.
In order to change the URL you would need to rewrite the slug.
using filter add_filter(‘eventon_taxonomy_args_event_type’);
and then in the filter function return $array[‘rewrite’] = array(‘slug’=>’new_name’);
Here is a doc on how to use wordpress filters http://docs.myeventon.com/documentations/use-actions-filters/
let us know if you need help with anything else.