Reply to: Error when activating freshly bought RSVP-addon v.2.6

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.

Reply to: Php 7.1

Hello,

Could you please tell us more about the error you’ve fixed?

Reply to: Event type 1 and 2 in url

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

Reply to: The eventon plugin has invalid CSS. See this issue: https://github.com/Getbeans/Beans/issues/309

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.

 

Reply to: eventOn is not visible on chrome 69, Firefox has some visual issues too.

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!

Reply to: Event type 1 and 2 in url

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.