Forum Replies Created
-
AuthorPosts
-
Nico
MemberHi Michelle,
As with the other thread you posted I’m closing this one as the text is not complete, we will help you here → https://theeventscalendar.com/support/forums/topic/adding-header-to-events-page/
Best,
NicoNico
MemberHi Michelle,
Thanks for getting in touch! I’m closing this thread in favor of → https://theeventscalendar.com/support/forums/topic/category-view-error-2/
We will get to it later today!
Best,
NicoNico
MemberYou are welcome Justin 🙂
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
MemberThanks for following up Mischa! Sorry the suggested solution didn’t help in any case you can always reach out to X-theme support and ask for the recommended settings to use The Events Calendar alongside their theme.
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
MemberThis reply is private.
Nico
MemberStocked to hear Math 🙂
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
MemberThis reply is private.
Nico
MemberHi there Neil,
Thanks for the patience while I worked on this one 🙂 Just wanted to make sure the code makes sense as it will change data in your site.
/* Tribe, merge venues util function */
function merge_venues ( $venue_id, $merge_venues ) {// let's check the venues_id is valid
if ( !tribe_is_venue( $venue_id ) ) return;foreach ( $merge_venues as $merge_venue ) {
if ( !tribe_is_venue( $merge_venue ) ) continue;
// replace merge_venue for new venue in all events
$events = tribe_get_events ( array('venue' => $merge_venue) );foreach ( $events as $event ) {
$data = array();
$data['venue']['VenueID'] = $venue_id;if ( get_post_meta( $event->ID, '_EventShowMap', true ) ) $data['venue']['EventShowMap'] = 1;
if ( get_post_meta( $event->ID, '_EventShowMapLink', true ) ) $data['venue']['EventShowMapLink'] = 1;Tribe__Events__API::saveEventMeta( $event->ID, $data );
}// delete merge_venue
Tribe__Events__API::deleteVenue( $merge_venue );
}}
/*
* IMPORTANT: venues will be deleted from your site!!!
* Uncomment the code below, input the correct venue IDs and reload a site page for it to run once, then comment it back again.
* The first parameter is the correct venue ID
* The second parameter is an array that holds venues ID to merged and deleted
*///add_action ( 'init', function () { merge_venues ( 99, array ( 33, 34, etc ) ); } );
Paste this code in your theme’s (or child theme’s) functions.php file and follow the instructions to use it. Please note this function will DELETE venues from your site! So please make sure to test it out in a staging site first to be sure it’s working as intended, or comment this part of the code Tribe__Events__API::deleteVenue( $merge_venue ); to prevent venues from being deleted and do that yourself manually. Also please note that while I tested the function and could see it’s working as expected, it’s not a fully tested and reviewed code. This is provided as a starting point for your customization and you should make sure it’s working as expected for you.
Please let me know if it helps,
Best,
NicoNovember 10, 2016 at 3:51 am in reply to: Extension to plugin to allow for reconnecting disconnected Eventbrite Events #1190205Nico
MemberHi Jon,
Sorry for the delay in my reply! I was touching base with dev frequently to see when they could fully review this but they were pretty busy!
The final reply they gave me is that this won’t be included soon. They are exploring the addition of a field for this, but most probably a set of hooks for folks needing to add things like this to the EventBrite form. Unfortunately they told me there’s no way of adding your customization and keep it safe from update for now.
I’ll create an internal feature request for this and link it with this thread so you’l get a heads-up when there are news on this.
Best,
NicoNico
MemberThanks for following up Oliver!
Use the snippet below by pasting it into your theme’s (or child theme’s) functions.php file:
/* Tribe, add copyright to image */
function tribe_add_image_copyright ( $featured_image, $post_id, $size ) {// bail if no image is displayed
if ( $featured_image == '' ) return $featured_image;// get image author
$custom = tribe_get_custom_fields();// bail if no author set
if ( !isset( $custom['custom_1'] ) ) return $featured_image;// build the copyright
$copy = '<span class="copyright">Image copyright sample: '. $custom['custom_1']. '</span>';return $featured_image . $copy;
}
add_filter( 'tribe_event_featured_image', 'tribe_add_image_copyright', 10, 3 );
After adding this make sure the right custom field key is in place, and review the site to check if there’s any place where this is not displayed.
Best,
NicoNovember 10, 2016 at 3:17 am in reply to: \"PERSONAL\" product is only used on 1 site, so that mean….. #1190198Nico
MemberHi Vic,
Thanks for getting in touch and for you interest in our products 🙂
Can the”PERSONAL” product allow user to change the site or move the site to a new domain?Can the plugin still work?
Yes, this is totally possible. Please check out this article with further details on it → Moving your license keys.
Please let me know if there’s anything else I can help you with,
Best,
NicoNico
MemberStocked to hear you are set Lasse! Glad to be of service 🙂
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 Kris,
Thanks for following up with the screenshots. Unfortunatelly I’m still not quite sure of what’s missing. Are you referring to the triangle that allows you to edit each widget (https://cloudup.com/cuT1_V-SW8u)?
If that’s the case let me say I’m not seeing the same in my local install, and couldn’t find this logged as a bug. This doesn’t mean the issue is not legit, but that we will need some more troubleshooting to know what’s causing this!
Best,
NicoNico
MemberHi there Justin,
Thanks for reaching out and sorry to hear about this 🙁
I think you are seeing it this way because the amount of columns available. Use the ‘screen options’ link at the top of the screen, it will show the current columns and will allow you to disable some of them so there’s a bit more space for the ones you really need.
Please let me know if this helps,
Best,
NicoNico
MemberHi Susan,
Thanks for getting in touch with us and for your interest in Events Calendar PRO 🙂
Let me say that’s a neat customization of our plugin! The default styles can be inspected in our demo site → http://wpshindig.com/events/
Some themes (like the one in the Improper website) heavily customize the look and feel of the calendar. Take a look at this article on Compatible Themes for The Events Calendar.
Please let me know if the above helps,
Best,
Nico -
AuthorPosts
