Nico

Forum Replies Created

Viewing 15 posts - 1,936 through 1,950 (of 6,506 total)
  • Author
    Posts
  • in reply to: Help Adding Category To List View With Custom Anchor Text #1196945
    Nico
    Member

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

    in reply to: Customizing the admin-views/meta-box.php file #1196941
    Nico
    Member

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

    in reply to: Ticket Email Query #1196935
    Nico
    Member

    Perfect Chintan!

    Just let me know if I can provide further help,
    Best,
    Nico

    in reply to: Questions #1196933
    Nico
    Member

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

    in reply to: Fotos duplicadas #1196789
    Nico
    Member

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

    in reply to: Create recurring events in advance for…. not saving #1196786
    Nico
    Member

    This reply is private.

    in reply to: Limit number of categories selected when submitting event #1196785
    Nico
    Member

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

    in reply to: Ticket Email Query #1196784
    Nico
    Member

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

    Nico
    Member

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

    in reply to: Search from backend admin area doesn't work on French site #1196700
    Nico
    Member

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

    in reply to: Questions #1196697
    Nico
    Member

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

    in reply to: Mobile Default not working #1196692
    Nico
    Member

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

    in reply to: Developer License for Premium Theme? #1196678
    Nico
    Member

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

    in reply to: Short-Term Solution for Event Reminder Emails #1196661
    Nico
    Member

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

    Nico
    Member

    Thanks 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

Viewing 15 posts - 1,936 through 1,950 (of 6,506 total)