Nico

Forum Replies Created

Viewing 15 posts - 2,071 through 2,085 (of 6,506 total)
  • Author
    Posts
  • in reply to: Adding Header to Events Page #1190839
    Nico
    Member

    Hi 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,
    Nico

    in reply to: Category View Error #1190835
    Nico
    Member

    Hi 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,
    Nico

    in reply to: Dashboard layout is jacked up #1190834
    Nico
    Member

    You 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,
    Nico

    in reply to: Events Page Showing as Excerpt #1190831
    Nico
    Member

    Thanks 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,
    Nico

    in reply to: Plugin 4.3.2 problem #1190255
    Nico
    Member

    This reply is private.

    in reply to: ticket selector hidden #1190248
    Nico
    Member

    Stocked 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,
    Nico

    in reply to: Ajax Problem with Events Calendar PRO #1190247
    Nico
    Member

    This reply is private.

    in reply to: Aggregator Issues #1190239
    Nico
    Member

    Hi 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,
    Nico

    Nico
    Member

    Hi 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,
    Nico

    in reply to: Show owner underneath image #1190202
    Nico
    Member

    Thanks 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,
    Nico

    Nico
    Member

    Hi 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,
    Nico

    in reply to: I bought the wrong plugin. :o) #1189965
    Nico
    Member

    Stocked 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,
    Nico

    in reply to: Widgets Edit Link Missing #1189964
    Nico
    Member

    Hey 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,
    Nico

    in reply to: Dashboard layout is jacked up #1189896
    Nico
    Member

    Hi 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,
    Nico

    in reply to: special template calendar #1189893
    Nico
    Member

    Hi 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

Viewing 15 posts - 2,071 through 2,085 (of 6,506 total)