Reply to: tickets(157102)

OK – just sharing this because so far it works. Obviously I have to wait and see what happens when a new update to either eventON or RSVP gets installed, but it can hardly be worse than before.

My code in functions.php

function dequeue1 ()
{
wp_dequeue_style( ‘evcal_cal_default’ );
wp_deregister_style( ‘evcal_cal_default’ );
}

function dequeue2 () {
wp_dequeue_style( ‘evo_RS_styles’ );
wp_deregister_style( ‘evo_RS_styles’ );
}
function dequeue3 () {
wp_dequeue_style( ‘eventon_dynamic_styles’ );
wp_deregister_style( ‘eventon_dynamic_styles’ );
}

add_action( ‘wp_print_styles’, ‘dequeue1’ );
add_action( ‘wp_print_styles’, ‘dequeue2’ );
add_action( ‘wp_print_styles’, ‘dequeue3’ );

/* ENQUEUE */
add_action( ‘wp_enqueue_scripts’, ‘ph_enqueue_styles’ );
function ph_enqueue_styles() {

$parent_style = ‘parent-style’;
wp_enqueue_style( $parent_style, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘hello-elementor-child’,
get_stylesheet_directory_uri() . ‘/style.css’,
array( $parent_style ),
wp_get_theme()->get(‘Version’)
);
wp_enqueue_style( ‘eventon_dynamic_styles’, get_stylesheet_directory_uri() . “/eventon_dynamic_styles.css” . ‘ ‘, array(), ”, ‘all’);
wp_enqueue_style(‘eventon-custom-styles’, get_stylesheet_directory_uri() . “/eventON_custom.css” . ‘ ‘, array(), ”, ‘all’);
}

For info, I do not use the Appearance option in myEventOn to change any styling info, because it’s far simpler for me to just deal with appearance in my custom stylesheet. But I’ve included my last copy of eventon_dynamic_styles.css in my child theme’s directory just in case it’s necessary.

Thanks for your help!

(Here is a picture – reduced in View mode so you can see more – of what my calendar now looks like.)

 

 

Reply to: tickets(156759)

Hello David, The addon RSVP events was originally purchased for $55 on dec 21, 2019. that is the only addon purchase I see in your account that is on subscription. No where does it say this was a free license for non-profit in our system notes. Kindly refresh my memory how this happened to be a free licensed give to you by eventON?

Reply to: tickets(156855)

Found the issue I believe this might do the trick

Please make these changes it is overriding the global JSON object might we whats causing the issue. All these changes will be in the next version update to fullcal addon.

Reply to: tickets(156790)

Cath, we have done some updated to schema that is probably why you saw issues after update sorry about that. We have now resolved is stably. As you can see above, description is passed in JSON-LD schema data and as a itemprop value for description and google structured data tester show description correctly in both JSON-LD and regular schema data types on the single event page. 

Single event page is what is important as that is what google search crawlers will use to index your website. 

Reply to: tickets(157022)

here is the patch fix.


This should resolve the issue and I will be sure to include this in the next version update to actionUser addon 🙂

If you have more questions, kindly send us a new ticket and we would be more than happy to help you resolve your issues!

Reply to: tickets(156844)

If you have more questions, kindly send us a new ticket and we would be more than happy to help you resolve your issues!