lisha56
Forum Replies Created
-
Forum: Plugins
In reply to: [Import Eventbrite Events] Something went wrong, please try again.Hello @tracykedje,
Thanks for reaching out to us.
Can you please contact us on our website for support.Also send us Eventbrite url which you have try to import from Eventbrite.
Let us know if you have any query.
ThanksForum: Plugins
In reply to: [Import Social Events] Events don’t importHello @digitalsky,
Thanks for reaching out to us.
Sorry for inconvenience.Due to recent privacy issue Facebook has restricted access to Event API for all. They are working on new policy & rules to get Event data. Meaning our plugin will no longer be able to fetch any data from Facebook.
We are working on our plugin and try to get solution.we update plugin as soon as possible.till that if you want to display Facebook events then you can try Facebook Events this plugin . .please check it out document link here which is helpful to you how to use plugin.
Let us know if you have any query.
ThanksForum: Plugins
In reply to: [Import Eventbrite Events] Show priceForum: Plugins
In reply to: [Import Social Events] Submit Facebook App for reviewHello @sylvsteph,
Thanks for reaching out to us.
Facebook is not providing permission so easily, Even we are yet working on to get approval for our app. Once our app approved we will be able to guide you.
Thanks
Hello @karennel,
Thanks for reaching out to us.
We have check it out and found events are showing here https://search.google.com/structured-data/testing-tool/u/0/#url=https%3A%2F%2Fkarenlucasphoto.com%2Fschool%2F so it’s works fine.
You should wait for few days to reflect on google.Google will automatically crawl it and show events in search result.It takes time but keep searching about your website in google and you will get it as soon as google has crawled it.
Let us know if you have any query.
ThanksHello @isant,
Thanks for reaching out to us.
Import from Facebook still not working.We are working on our plugin and try to get solution.we update plugin as soon as possible. We will notify by email as soon as we have it working.till that if you want to display Facebook events then you can try Facebook Events this plugin . .please check it out document link here which is helpful to you how to use plugin.
Let us know if you have any query.
ThanksHello @howiefied,
We have resolved this duplicate image issue in our beta version of plugin. so can you please contact on our website so we will provide you Plugin.
Let us know if you have any query.
ThanksForum: Plugins
In reply to: [Import Meetup Events] Event page customizationHello @pmantovani,
Thanks for reaching out to us.
We are using theme’s default template to display single event page.you can also develop custom template according your requirement for event “single-meetup_events.php”.so you can develop custom template for that into your theme.
Let us know if you have any query.
ThanksForum: Plugins
In reply to: [Import Eventbrite Events] Display all eventsForum: Plugins
In reply to: [WP Bulk Delete] file Upload is not being deletedHello @colin73,
Thanks for reaching out to us.
You can’t delete media images using the Bulk delete plugin yet.we consider it featured request .We are adding this functionality to our TO DO and add this to the upcoming plugin release.
Let us know if you have any query.
ThanksForum: Plugins
In reply to: [Import Eventbrite Events] Move Ticket Section To Top Of Event PageHello @webconstruct,
Can you please contact us on our website here with admin detail so we check it out exact isuee .
Thanks
Forum: Plugins
In reply to: [Import Eventbrite Events] Move Ticket Section To Top Of Event PageHello @webconstruct,
Thanks for reaching our to us.
You can move ticket section to the top using script.Please add below script in function.php file.
add_action( ‘init’, ‘xt_remove_add_content_filters’);
function xt_remove_add_content_filters() {
global $iee_events;
if( $iee_events ){
remove_filter( ‘the_content’, array( $iee_events->common, ‘iee_add_em_add_ticket_section’ ), 20);
remove_filter( ‘the_content’, array( $iee_events->cpt, ‘eventbrite_events_meta_before_content’ ) );
add_filter( ‘the_content’, ‘xt_customize_eventbrite_events_meta’);}
}function xt_customize_eventbrite_events_meta( $content ){
global $iee_events;
$xt_post_type = get_post_type();
$event_id = get_the_ID();
$event_origin = get_post_meta( $event_id, ‘iee_event_origin’, true );
if ( $event_id > 0 && $event_origin == ‘eventbrite’ ) {
if( ( $iee_events->em->get_event_posttype() == $xt_post_type ) || ( $iee_events->aioec->get_event_posttype() == $xt_post_type ) || ( $iee_events->iee->get_event_posttype() == $xt_post_type ) || ( $iee_events->eventon->get_event_posttype() == $xt_post_type ) ){
$eventbrite_id = get_post_meta( $event_id, ‘iee_event_id’, true );
if ( $eventbrite_id && $eventbrite_id > 0 && is_numeric( $eventbrite_id ) ) {
$ticket_section = $iee_events->common->iee_get_ticket_section( $eventbrite_id );
if ( is_singular( $iee_events->cpt->get_event_posttype() ) ) {
$event_details = $iee_events->cpt->eventbrite_events_get_event_meta( get_the_ID() );
$content = $event_details . $content ;return $ticket_section.$content;
}
}
}
}
return $content;
}Feel free to ask if you have any query.
ThanksForum: Plugins
In reply to: [Import Meetup Events] No history import