Reply to: tickets(354696)

in myeventon>>>>settings>>>>scripts and styles

you had turned off font awesome which is where it pulls its arrows from- I have turned it on

I also added some css to appearance>>>>customize>>>>additional css to make the arrows red

Reply to: tickets(354700)

Hello,

Please try going to EventON > enable Remove schema data from calendar and Remove JSON-LD data for events: Everywhere except single event pages.

Reply to: tickets(354598)

you are using a very very very old version of eventon from 2019

theres ALOT of updates since then https://docs.myeventon.com/documentations/eventon-changelog/

SEE VIDEO

To update eventon to latest version: If you are unable to do autoupdate WHICH BECAUSE YOUR VERSION IS SO OLD YOU PROBABLY CAN’T , you can go to codecanyon your account > download and get the latest eventon version as zip file. Then you can go to your website > make sure “Delete eventon settings & data when EventON is uninstalled” is Deslected from eventon settings, delete old eventon, install new one and activate. This link will further explain the process it. Also you can follow us on twitter to get real-time announcements on updates!

_______

To update eventon addons: You can download latest eventon addons from myeventon > my account. Then you can go to your website, deactivate old addon and install new one and activate then delete the old addon. This link will further explain the process. Also you can follow us on twitter to get real-time announcements on updates! as your addons are so old you may need to re-purchase them

FROM THIS PAGE YOU CAN SEE THE CURRENT VERSIONS OF EACH ADDON (CLICK TO THE INDIVIDUAL ADDON PAGES https://www.myeventon.com/addons/

Reply to: tickets(354173)

go into myeventon>>>>settings>>>>event card

open up the card builder pop up and simply click save

close that down

then save the event card page- the images should appear

if that fails (it sounds like it shouldn’t work but it works on other sites) the password given doesn’t allow me to log in (otherwise I would have done it for you)

Reply to: tickets(354609)

SEE VIDEO BELOW for a possible way of showing the weekend events only with the weekly view

without having to stuff around with codes

you could also simply hide that top section of weekly view with css (the day boxes) and simply display an events list with those events

Reply to: tickets(354265)

Katrin,

Yes, our Google Maps API is restricted to work only on our domain.  That should have nothing to do with it.  At this point, there remains the unresolved problem that maps are not appearing.

Map appears: https://events.iloveseattle.org/events/seattle-tall-ship

Map does not appear:  https://events.iloveseattle.org/events/movie-night-at-the-stone-house-cafe/ (as the page loads, you can see the map flash on screen and then disappear)

In the past, we (or our users submitting through Action User form) simply needed to paste the address of location.  This feature has become unreliable/broken.  It seems like a fundamental feature that should have top priority.  Nothing changed in the Google Maps API – it worked before and now it does not work.  I think it’s more likely that this is an EO issue than a Google Maps or us issue.

Gerard

Reply to: tickets(354173)

Hey there, Avada-Support wrote a fix for this. There was a conflict with the font-system.

Now the Single-Event-Pages work but the image is not loading on the single site. Could you please have a look?

https://kirche-am-strand.de/veranstaltung/konzert-mit-pankraz/

 

Thank you very much.

Philipp

 

Reply to: tickets(354609)

Hi,

Thank you for your answer.

I want to use a shortcode like this :

function eventon_next_weekend_shortcode() {
// Calculate the dates for the next weekend
$next_friday = strtotime(‘next friday’);
$next_sunday = strtotime(‘next sunday’);

// Convert dates to ‘Y-m-d’ format for the shortcode
$start_date = date(‘Y-m-d’, $next_friday);
$end_date = date(‘Y-m-d’, $next_sunday);

// Generate the EventOn shortcode with the dates of the next weekend
$shortcode = ‘[add_eventon_list number_of_months=”1″ hide_past=”yes” start_range=”‘.$start_date.'” end_range=”‘.$end_date.'”]’;

// Execute the shortcode and return the content
return do_shortcode($shortcode);
}

// Define the WordPress shortcode
add_shortcode(‘next_weekend_events’, ‘eventon_next_weekend_shortcode’);

I can’t test it on your demo site, but do you think it will work ?