Forum Replies Created
-
AuthorPosts
-
November 24, 2016 at 4:12 am in reply to: Help Adding Category To List View With Custom Anchor Text #1196945
Nico
MemberThanks for following up Shaun!
Just paste this code in ‘list/single-event.php’ as well:
More Info', get_term_link( $category_ids[0] ) );
}
}
?>
That should do the trick!
Please let me know if it works as intended,
Best,
NicoNico
MemberHey Paul,
Don’t worry about it! I just coded a basic sample for you š
Just paste the code below in your theme’s (or child theme’s) functions.php file:
/* Tribe, remove RSVP tickets option from event page in the admin */
function tribe_remove_rsvp() {// check if it's a Tribe admin page
$screen = get_current_screen();if( !isset($screen->ID) || $screen->ID != Tribe__Events__Main::POSTTYPE ) return;
// switch default provider and hide RSVP
?><script type="text/javascript">
jQuery(document).ready(function($){
if ( $('input.ticket_field[value="Tribe__Tickets_Plus__Commerce__WooCommerce__Main"]').length ) {
$('input.ticket_field[value="Tribe__Tickets_Plus__Commerce__WooCommerce__Main"]').click();
$('input.ticket_field[value="Tribe__Tickets__RSVP"]').hide().next().hide();
}});
</script>
<?php }
add_action('admin_head', 'tribe_remove_rsvp');
Give it a try and let me know if it works for you,
Best,
NicoNico
MemberPerfect Chintan!
Just let me know if I can provide further help,
Best,
NicoNico
MemberThanks for following up Ricky!
hooking to an action executed in the list view template
This is achieved by a simple PHP snippet placed in your theme’s (or child theme’s) functions.php file. To know more about Actions & Hooks in WordPress please review this guide ā Plugin API.
Best,
NicoNico
MemberGracias por la información Antonio! Voy a configurar estas paginas y ver si puedo reproducir el error, ya que no encontré ningún bug que pueda relacionar con este comportamiento.
Dame unos dĆas para dejar correr los imports (voy a ademĆ”s forzar imports manuales) para ver si esto sucede en mi sitio local. Te mantengo al tanto.
Saludos,
NicoNovember 23, 2016 at 3:54 pm in reply to: Create recurring events in advance for…. not saving #1196786Nico
MemberThis reply is private.
November 23, 2016 at 3:46 pm in reply to: Limit number of categories selected when submitting event #1196785Nico
MemberHi there Justin,
Thanks for getting in touch with us!
There’s no setting to change this validation, that’s something you’ll need to code. Take a look at this tutorial showing some hooks to modify validation ā Required Fields for Events Submission Form.
Please let me know if you need more help on this,
Best,
NicoNico
MemberHey Chintan,
Thanks for getting in touch with us!
Hopefully there’s an easy way of re-sending the tickets. Just go to the ‘WP-Admin > WooCommerce > Orders’ and edit the order you want to re-send tickets for. Once you are in the edit order screen you’ll see a metabox with the title ‘Order actions’, select the action to resend Tickets and submit the form. That should do it!
Please let me know if it works for you,
Best,
NicoNovember 23, 2016 at 3:29 pm in reply to: Icalendar is importing the events and setting the event time incorrectly #1196781Nico
MemberHi there Stanley,
Glad to help you out on this one as well!
I’m mostly sure you are being affected by a known bug š Sorry I missed to mention this before.
This is unfortunately affecting lot of folks and fixing this is a priority for our dev team. So hopefully we see this working soon. I’ve added your case to the bug ticket, this way you’ll get notified once the fix is out.
Sorry for the trouble this might cause until fixed,
Best,
NicoNovember 23, 2016 at 12:20 pm in reply to: Search from backend admin area doesn't work on French site #1196700Nico
MemberHi Gregory,
Thanks for getting in touch with us! I just gave this a go in my local test site and it’s working as expected in both English and French.
Are you using a multilingual plugin or is it just WordPress set in French? If you switch the site language to English does it work as expected?
If it doesn’t work in English, 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 let me know about it,
Best,
NicoNico
MemberHi there Ricky,
Thanks for getting in touch and for your interest in our products š
1) Can custom links be displayed (with links) on the events page using list view? I need a register button without people having to click through to the event page. Iāve looked at your events tickets product, but I already have my ticketing sorted.
Sure this is possible by hooking to an action executed in the list view template. You can also create a template override (a custom copy of the template) and place it there (more on this on our themer’s guide).
2) Is there any time zone conversion in the pipeline. Otherwise, I have to send my visitors to http://www.thetimezoneconverter.com/ which is not ideal.
There’s no utility to convert the events schedule to the viewer timezone. In these cases we recommend using a setting that shows the timezone of the event in the schedule details so users are aware of this.
Please let me know if there’s anything else I can help you with,
Best,
NicoNico
MemberHey Tamara,
Thanks for getting in touch with us and sorry to hear about the issue with Yoast š
Unfortunately I’m mostly sure this is also a conflict with Yoast as well. We have a logged ticket to fix this and the plan is to include this fix in the upcoming maintenance release (take a look to our release schedule).
For now this can be temporarily fixed by placing this snippet in your theme’s (or child theme’s) functions.php file:
/* Tribe, temp fix for Yoast conflict for default mobile view */
add_filter( 'wpseo_canonical', function( $canonical_url ) {
global $wp_query;return ! empty( $wp_query->tribe_is_event_query ) && wp_is_mobile()
? Tribe__Events__Main::instance()->getLink( tribe_get_mobile_default_view() )
: $canonical_url;
} );
Please let me know if that helps for now,
Best,
NicoNico
MemberHey there Bryce,
Thanks for getting in touch with us!
I just followed up with you via email (to the address you submitted when creating this post). We deal with these kind of request over email.
Please let me know that you got my email!
Best,
NicoNico
MemberHey Tim,
Thanks a lot for the update! I’m super stoked to hear this custom developed functionality ended with great results š
Congratz to Henry, and to you as well for the great work here! Make sure to tell Henry to link to this thread in his application (if he decides to send one at some point).
Iāll go ahead and close out this thread now that the issue is resolved and that the dev information is also shared for future reference.
Thanks for keeping us informed on this,
Best,
NicoNovember 23, 2016 at 10:42 am in reply to: icalendar import – Error: The URL provided could not be reached. #1196654Nico
MemberThanks for confirming Stanley š
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,
Nico -
AuthorPosts
