Geoff

Forum Replies Created

Viewing 15 posts - 9,256 through 9,270 (of 10,150 total)
  • Author
    Posts
  • in reply to: Limit Venues and Organizers #905655
    Geoff
    Member

    Hi there, Carolyn! Thanks for getting in touch. 🙂

    Great question, but unfortuantely there’s no easy way to do this without triggering other issues from popping up. There is JavaScript in the plugin that controls Venue fields from hiding and showing those options and  would break if you were to remove the ‘Use New Venue’ or ‘Use New Organizer’ options.

    If this is something you’d like to see in a future release, I would suggest submitting it as an idea on our UserVoice page. Our team periodically reviews the most popular ideas for possible inclusion in a future release of the plugin.

    Sorry this probably isn’t the answer you were hoping for, but does it at least help answer your question? Please let me know. 🙂

    Cheers!
    Geoff

    in reply to: Custom template tags #905642
    Geoff
    Member

    Awesome, thanks for following up and marking the answer, Brian!

    I’ll go ahead and close this thread, but please feel free to hit us up with a new thread if any other questions pop up. We’d be happy to help. 🙂

    Cheers!
    Geoff

    in reply to: Custom template tags #905350
    Geoff
    Member

    Ah, I see what you’re saying. Thanks for clarifying. 🙂

    Yes, it would be better to define those functions on your own in your theme’s functions.php file. Unfortunately, theme overrides are limited to views. which don’t include template tags.

    Cheers!
    Geoff

    in reply to: Event preview on hover in month view broken #905344
    Geoff
    Member

    Hey there, Adam! Just checking in to see if there’s been any further update or if you still need assistance on this one–let me know. 🙂

    Cheers!
    Geoff

    in reply to: Month View in Calendar #905342
    Geoff
    Member

    Hey there, James! Just checking in to see if there’s been any further update or if you still need assistance on this one–let me know. 🙂

    Cheers!
    Geoff

    in reply to: Sidebars is missing in single event, list and in calendar. #905338
    Geoff
    Member

    Hey there, Preben! Just checking in to see if there’s been any further update or if you still need assistance on this one–let me know. 🙂

    Cheers!
    Geoff

    in reply to: Categories in different widgets #905334
    Geoff
    Member

    Hey there, Artem! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to open a new thread. We’d be happy to help. 🙂

    Cheers!
    Geoff

    Geoff
    Member

    Hey there, Christopher! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to open a new thread. We’d be happy to help. 🙂

    Cheers!
    Geoff

    in reply to: Confirmation / Thank you message on Submission of an event #905325
    Geoff
    Member

    Hey there, Nadine! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to open a new thread. We’d be happy to help. 🙂

    Cheers!
    Geoff

    in reply to: Return to Shop call to action page formatting #905319
    Geoff
    Member

    Hey there, Maria! Thanks for following up. 🙂

    Yes, we’re on the same page. The shopping cart page, including the “Return to Shop” link are both part of the WooCommerce plugin. The WooCommerce Ticket plugin simply displays the ticket products on the event pages.

    You will want to contact WooCommerce support for better guidance, but I imagine you will either need to redirect where the “Return to Shop” link so it goes to the calendar instead of the shop, or modify the Shop landing page (which is also a WooCommerce plugin template).

    I hope this helps clarify things a bit more. Let me know if you have any other follow-up questions and I’d be happy to help as best I can. 🙂

    Cheers!
    Geoff

    in reply to: Event submission form: string "Use saved" not translated #905306
    Geoff
    Member

    Hi there Rafael, welcome back to the forums. 🙂

    Yeah, we rely heavily on the community to help provide translations so it’s very possible that particular string has not been translated.

    One possible option is to use a filter to translate the text. For example, try adding this to your theme’s functions.php file:

    add_filter( 'gettext', 'my_event_change_venue_label', 20, 3 );
    
      function my_event_change_venue_label( $translated_text, $text, $domain ) {
        if ( $translated_text == 'Use Saved Venue:' && $domain == 'tribe-events-calendar' ) {
          $translated_text = __( 'Your Translated Text Goes Here!', 'tribe-events-calendar' );
      }
      return $translated_text;
    }

    If that doesn’t work, I would suggest posting a thread in our Translations forum. The community is fairly active and might be able to help with an updated .pot file that includes the string.

    Cheers!
    Geoff

    in reply to: Facebook Events created by others? #905292
    Geoff
    Member

    Hi there, Kimberly! Thanks for getting in touch and welcome to the forums. We really hope you enjoy the plugins. 🙂

    Good question. Yes, you can absolutely import events from other Facebook pages. Once the plugin is installed, there will be a “Import: Facebook” option under Events in your WordPress dashboard menu. From that screen, you can specify multiple accounts to import by providing the Facebook IDs for each account. Here’s a screenshot how that looks.

    I’d also suggest checking out this handy tutorial before purchasing. It will give you a very detailed overview of how the plugin works from start to finish to give you a much better idea of what you’ll be getting.

    Does this help answer your question? Please let me know. 🙂

    Cheers!
    Geoff

    in reply to: Custom template tags #905286
    Geoff
    Member

    Hi there, Brian! Thanks for getting in touch.

    Good question. We recommend using template overrides when customizing calendar templates. By placing copies of the templates in your theme (or child theme) folder, you are ensuring that your work will not be overwritten when the plugin is updated.

    The detailed steps for template overrides are outlined in our Themer’s Guide. I’d suggest checking this out to see all the available options you have for customizing the plugin without touching core files.

    Cheers!
    Geoff

    in reply to: Translation of "other" #905277
    Geoff
    Member

    My pleasure! Thanks for following up and confirming the answer. Great work. 🙂

    I’ll go ahead and close this thread, but please feel free to hit us up with a new thread if any other questions pop up. We’d be happy to help.

    Cheers!
    Geoff

    in reply to: price in the pop-up month's view #905274
    Geoff
    Member

    Hi there, Jann!

    Great question. I do want to note first of all, though, that we are fairly limited in terms of helping out with custom development questions like this one. That said, we’d love to point you in the right direction if we can.

    The tooltip is a template that can be customized by overriding it in your theme files. I outlined the steps for overriding templates in another one of your threads, but here they are again just in case:

    • Make a copy of tooltip.php (located in /plugins/the-events-calendar/views/month/)
    • Create a new folder in your theme directory called tribe-events
    • Create a folder within that called month
    • Drop your copied tooltip.php file in the tribe-events/month folder

    Once the tooltip.php file is there, it can be customized. In this case, you can add the following where you would like the cost to display in the tooltip:

    <?php esc_html_e( tribe_get_formatted_cost() ) ?>

    Does this help answer your question? Please let me know. 🙂

    Cheers!
    Geoff

Viewing 15 posts - 9,256 through 9,270 (of 10,150 total)