Forum Replies Created
-
AuthorPosts
-
Nico
MemberHi there Kyle,
Thanks for reaching out to us! Good question here 🙂
So the process would be the same, but ofcourse a bit tweaked:
/**
* Move RSVP Ticket form in events template
*/
if (class_exists('Tribe__Tickets__RSVP')) {
remove_action( 'tribe_events_single_event_after_the_meta', array( Tribe__Tickets__RSVP::get_instance(), 'front_end_tickets_form' ), 5 );
add_action( 'tribe_events_single_event_before_the_meta', array( Tribe__Tickets__RSVP::get_instance(), 'front_end_tickets_form' ), 5 );
}
If you need to move the form in posts, you’ll need to use the following code instead:
/**
* Move RSVP Ticket form in posts template
*/
if (class_exists('Tribe__Tickets__RSVP')) {
remove_filter( 'the_content', array( Tribe__Tickets__RSVP::get_instance(), 'front_end_tickets_form' ) );
// re hook the function to run where needed
}
Please let me know if this does the trick,
Best,
NicoNico
MemberHey Daan,
Stocked to hear you could make this work Daan 🙂
I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.
Best,
NicoNico
MemberHey Suzie,
Glad to hear you could solve this 🙂
I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.
Best,
NicoDecember 3, 2015 at 9:55 am in reply to: Publicize showing on event screen but are not applied to the event if changed #1034803Nico
MemberHey Douglas,
Thanks for reaching out to us, and sorry to hear about this issue. I’ll try to help you out getting this sorted.
I’m a bit confused by your description of the issue, so I’ll try to re-cap a bit:
- There’s a problem with Events and Publicize feature of Jetpack.
- This seems to be introduced in version 4.0.
- It happens to Facebook Imported events and ‘new’ events also.
- Not sure about the actual issue with the modified text don’t get published. Can you elaborate a bit more or provide a screenshot?
Let’s begin by basic troubleshooting of the issue: Can you please follow the steps described in our Testing for conflicts guide? This way we can see if this is a problem in our plugin or a conflict with the theme or other installed plugins.
Please confirm if the above description of the issue is correct and let me know if testing for conflicts sheds some light over this,
Best,
NicoNico
MemberHi Troy,
Thanks for reaching out and sorry to hear this is still an issue 🙁 I’ve gone over your previous thread with George, and as you state maybe the cron to ‘update’ the recurrence instances is not working as expected. But I’m not sure that’s the case.
You can install the WP-Crontrol plugin to inspect and run scheduled crons. With the plugin installed you can check if you see tribe_events_pro_process_recurring_events and tribe-recurrence-cron tasks in there (WP-Admin > Tools > Cron Events), and if you are in the staging site, please try to run them using the Run Now option.
I would also like to now if you updated the plugins to the 4.0 version just released yesterday. In the case you didn’t, Can you do it before testing the Crons?
Please let me know about your findings,
Best,
NicoNico
MemberHowdy Suzie,
Welcome to our support forums and thanks for reaching out to us. I’ll try to help you here…
I can understand the issue, but I don’t think it’s related with the errors you see in the console. I think the best approach is to contact the theme developers and ask them if they are aware of this incompatibility issue and in case they are, ask if there’s any recommended solution. From the troubleshooting side you can look for the XHR requests (ajax calls) in the browser console (https://cloudup.com/cim-WQqInMW), from what you describe it seem’s ajax calls are failing. You can also test this in a new-icnognito mode window without being logged in to the WP-Admin.
Please let me know if there’s anything else I can do for you here,
Best,
NicoNico
MemberThis reply is private.
Nico
MemberHey Cirian,
Thanks for following-up! From a code perspective I don’t see anything wrong from the calendar view, there are no meta tags with noindex or nofollow values. Maybe there are some settings in Yoast SEO you can adjust for better indexing events pages? Some per post_type settings?
We have a knowledge base article on a title conflict with Yoast, although they don’t seem super relevant for your case you might want to take a look: How to remove “Event Archives” from the title in Yoast SEO.
Please let me know if you find further info on Yoast seetings,
Best,
NicoDecember 2, 2015 at 11:05 am in reply to: mouse over pop up on recurring event shows wrong date #1033999Nico
MemberHey Simon,
Thanks for following up with the back-end screenshots 🙂
Release 4.0 is about to be released, Can you re test after upgrading? I’m aware some changes to recurrence descriptions are being introduced (couldn’t find your exact issue as fixed but I saw some similar bug solved). Remember you can add a custom recurrence description for now: https://cloudup.com/c9-GDaMdGtA
Please let me know if this is fixed after the update,
Best,
NicoNico
MemberHey Jennifer,
Glad to hear that snippet worked 🙂
For the single event page issue (which seems to be different) you’ll need the following CSS fix:
.tribe-events-single-event-title {
opacity: 1!important;
}
Please let me know if there’s anything else I can help you with,
Best,
NicoNico
MemberHowdy Daan,
Welcome to our support forums and thanks for reaching out to us. I’ll try to help you implementing the code you linked me to.
First of all let’s assume the coding shared by @media325 works 🙂
Just pasting this code in your theme’s functions.php (located at wp-content/themes/your_theme/functions.php) file should do the trick:
//re-register tribe_organizer to allow for archive pages
function update_tribe_organizer_post_type() {
register_post_type('tribe_organizer',
array(
'labels' => array (
),
'public' => true,
'has_archive' => true,
'rewrite' => array(
'slug' => 'organizers',
'with_front' => false,
),
'supports' => array(
'title',
)
)
);
}
add_action( 'init', 'update_tribe_organizer_post_type');//re-register tribe_venue to allow for archive pages
function update_tribe_venue_post_type() {
register_post_type('tribe_venue',
array(
'labels' => array (
),
'public' => true,
'has_archive' => true,
'rewrite' => array(
'slug' => 'venues',
'with_front' => false,
),
'supports' => array(
'title',
)
)
);
}
add_action( 'init', 'update_tribe_venue_post_type');
That should enable archives for both venues and organizers.
Please give it a try and let me know,
Best,
NicoDecember 2, 2015 at 8:38 am in reply to: iCal export – events on wrong day & avoid content being in iCal note section #1033897Nico
MemberHi Kate,
Thanks for reaching out and sorry to hear about this issue! I’ll try to help you here.
I’ve searched our backlog and found a bug that relates to the issue you describe and I’m mostly sure it’s the cause of what you are experiencing. A fix for this is shipping with the new version of our products (4.0) coming out really soon (today/tomorrow hopefully). Can you test this after updating the plugins?
Please let me know if the update fixes the issue for you,
Best,
NicoDecember 2, 2015 at 8:25 am in reply to: Sidebar Widget Displaying Wrong Date in .list-date div #1033891Nico
MemberHowdy Henry,
Welcome to our support forums and thanks for reaching out to us. I’ll help you figuring out what’s happening here…
As you say a fix for incorrect date in the widget icons was included in release 3.12.6, but I guess it was a addressing a different angle of the same issue.
In the Events Calendar settings under “Enable timezone support “, I’ve not selected “Update timezone Data”. What does this option do? Should it resolve my issue?
Please give this a try and let me know, I think this might be related to some sort of Timezone issue. If this doesn’t fix the issue, Can you please follow the steps described in our Testing for conflicts guide? This way we can see if this is a problem in our plugin or a conflict with the theme or other installed plugins.
If none of the above seem to work please send me detailed instructions on how to recreate this (Timezone config and event data), and I’ll try to reproduce this locally to confirm is this a bug in our code.
Please let me know about your findings,
Best,
NicoNico
MemberHowdy Gianluca,
Welcome to our support forums and thanks for reaching out to us! I’ll help you out with this issue 🙂
Taking a look into your site calendar (http://www.jazzit.it/eventi/) I can see future events are showing as expected. They also seem to be showing in the correct order in the home widget.
Maybe you could fix this? Maybe I’m missing something?
Please let me know about it,
Best,
NicoDecember 2, 2015 at 7:49 am in reply to: How to import Events -together- with their Ticket information? #1033869Nico
MemberHi Amy,
Thanks for reaching out to us! At the moment our CSV importer doesn’t support Tickets info.
I’m aware there are plans to update the CSV importer in the near future, but I don’t have any specific dates on it. For now best I can suggest is head over to The Events Calendar user voice page and add this feature request for others to up-vote it.
Please let me know if there’s anything else I can help you with here,
Best,
Nico -
AuthorPosts
