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.

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

Hi, thank you for your answer! I’ve added “slide_hide_control=’no’” and now the slider looks right 🙂

Now, I’ve two more questions:

1) http://www.chiesaluterana-firenze.org/2018/calendario/: this is my default event archive page… how can I customize it? I would like to remove “Archivi:” from title and “This is where you can add new events to your calendar.” subtitle.

2) in my event detail page (ex. http://www.chiesaluterana-firenze.org/2018/calendario/evento-di-prova/) I would like to ovveride default event color with Event Type color, just like I’ve made in archive page and Event slider.

Thansk in advance!

Reply to: Event type 1 and 2 in url

Also I tried to add more custom meta box by adding the below code in my theme functions.php

But this did not give me an option to add more meta fields in the settings.

add_filter(‘evo_max_cmd_count’,’custom_function_2′,10,1);
function custom_function_2($number){
return 11;
}