Reply to: Open Link In New Window as Default for Action User

Hello – Thank you for providing the plugin. I installed it, and made it Active. Are there any instructions? I see in the MyEventOn settings, there is now a toggle to turn this on. I have done so and cleared my server cache. But the form is still showing the open in new window as an option. We want this NOT to show for anyone using the form: https://delawarerivertowns.com/add-your-event/

Reply to: general settings

Hi Ashish, you mean that you can see the preview of the event when you click “Visualizza” in event list or “Anteprima modifiche” inside the single event?

Because when I click these options also in the event that you have created I’m redirected to the home page of my website and not to the page of the event….how is it possible?

help!

Thank you

Reply to: Event Title Font Color and Filter Categories

Hi Ashan,

Thank you for the code. After adding it to the EventOn Styles sheet however, the dark green color only showed up on the EventCard and not the EventTop (see attached image).

In other words, the code fixed half the problem but the EvenTop titles are still showing up in grey.

Do you know why this might be happening?

Reply to: Editing font size in tile design

I am still getting the same message.

I am going to tag Artem. He should be able to help you with this further.

Maybe your server has blocked my country.

Please allow him to get back to you and thank you very much for your patience.

Reply to: general settings

Hello Matteo,

I just tested and I am able to see the events normally.

I created a test page here: http://www.festivalbiblico.it/ajde-test/

 

Reply to: add textand filter

Event list works, only I have adjusted a bit.

Now I have used a piece of code for the read only I do not get the $ object-> title visible in the link.

 

This is the code I use. Can you see what I am?

add_filter( ‘eventon_eventcard_boxes’,’addfield_001′ , 10, 1);
function addfield_001($array){
$array[‘extra1’]= array(‘evoextra1’,__(‘Extra Box’,’eventon’));
return $array;
}

add_filter(‘eventon_eventcard_array’, ‘addfield_002’, 10, 5);
add_filter(‘evo_eventcard_adds’, ‘addfield_003’, 10, 1);
function addfield_002($array, $pmv, $eventid, $__repeatInterval){
$array[‘extra1’]= array(
‘event_id’ => $eventid,
‘pmv’=>$pmv,
‘titles’=>$title,
‘__repeatInterval’=>(!empty($__repeatInterval)? $__repeatInterval:0)
);
return $array;
}

function addfield_003($array){
$array[] = ‘extra1’;
return $array;
}

add_filter(‘eventon_eventCard_extra1’, ‘addfield_004’, 10, 2);
function addfield_004($object, $helpers){
$event_post_meta_values = $object->pmv;

ob_start();
echo “<div class=’evorow evcal_evdata_row bordb evcal_evrow_sm”.$helpers[‘end_row_class’].”‘ data-event_id='”.$object->event_id.”‘>
<span class=’evcal_evdata_icons’><i class=’fa fa-calendar-check-o’></i></span>
<div class=’evcal_evdata_cell’>”;

echo ‘<a href=”/events/’.($object->title).'”>LEES MEER</a>’;

// Any data for this section goes here

echo “</div>”.$helpers[‘end’];

echo “</div>”;

return ob_get_clean();
}