Geoff

Forum Replies Created

Viewing 15 posts - 2,956 through 2,970 (of 10,150 total)
  • Author
    Posts
  • in reply to: Remove RSVP? #1132868
    Geoff
    Member

    Hey Paul,

    Sure! The file is located here:

    /wp-content/plugins/event-tickets/src/admin-views/meta-box.php

    Of course, it’s wroth noting to use caution when installing future updates because the changes made to this template will be overridden.

    Cheers!
    Geoff

     

    in reply to: Custom Page Template #1132864
    Geoff
    Member

    Hey Michael,

    It could be the content editor in the forums here, but there seemed to be some stray missing characters in the code you provided. Does this work instead:

    <!-- GET REPEATER -->
    <?php if( have_rows('explore-activity', 197) ): ?>
    <?php while( have_rows('explore-activity', 197) ): the_row(); ?>
    <!-- START DESTINATION -->
    <div class="col-sm-6 col-md-3">
    <div class="if_poi">
    
    <?php the_sub_field(‘activ_title’); ?>
    <?php the_sub_field(‘activ_copy’); ?>
    
    </div>
    </div>
    <!-- END DESTINATION -->
    <?php endwhile; ?>
    <?php endif; ?>
    <!-- /GET REPEATER -->

    Also, just out of curiosity, is it only ACF repeater fields that are not showing up in the templates, or is it any type of ACF field?

    Thanks!
    Geoff

    Geoff
    Member

    Hi Bryan,

    Thanks for the info!

    You can add this CSS to your child theme’s style.css or by using the Simple Custom CSS plugin:

    #tribe-events-bar .tribe-bar-date-filter {
    display: none;
    }

    Will this work for you? Please let me know. 🙂

    Cheers,
    Geoff

    in reply to: Events Calendar Pro with Sensei unwanted widget #1132858
    Geoff
    Member

    Hello James and thanks for chiming in.

    You can pick up past versions of the premium plugins in your account here on this site. You can also grab past versions of The Events Calendar here on WordPress.org.

    Once you have the earlier versions, you can follow the steps outlined here to downgrade.

    Cheers!
    Geoff

    in reply to: Organizer details missing, shows only "No saved exists" #1132550
    Geoff
    Member

    Hey Chris, and so sorry for the trouble here with saved organizers in the Community Events submission form. Let’s take a look at this together to see what’s up.

    First of, will you please try following the steps outlined in this article? It will help test for conflicts with the existing theme and other installed plugins. The reason I want to try it out is because I tried testing this on my own fresh WordPress installation with the Twenty Sixteen theme active and no other plugins installed and everything seemed to work correctly (screenshot).

    Let’s start there and see what we find — that should tell us where the conflict is coming from.

    Thanks!
    Geoff

    in reply to: Events Calendar Pro with Sensei unwanted widget #1132542
    Geoff
    Member

    Hey James,

    Ah yes, we are indeed aware of this issue and it’s related to the new oEmbed feature we released in 4.1. For the time being, the best way to get rid of it is to downgrade The Events Calendar and Events Calendar PRO to version 4.1.4 while we work on an official patch, which I see is slated for version 4.2.2 if all goes according to plan.

    I’ve noted this thread in the issue ticket and will definitely keep you posted as we learn more.

    Thanks for the heads up and sorry for the trouble here!

    Geoff

    P.S. I’ve moved this thread to our Events Calendar PRO forum. The URL will be the same, but it will be easier for others to find. 🙂

    in reply to: Hide tickets in products page #1132540
    Geoff
    Member

    Heck yeah, nice work! I really, really, really appreciate you sharing that with us here. 🙂

    Cheers!
    Geoff

    in reply to: Hide tickets in products page #1132470
    Geoff
    Member

    Hey there, Claudio!

    Oh sorry, no, that snippet is for the front-end view of the website rather than the admin area.

    I’m afraid that customizing the admin area is something that would have to be directly in WooCommerce itself rather than the calendar and ticket plugins.

    While I do not have a solution for this, I did find this thread on WordPress.org and wonder if it might at least help get you started.

    Cheers,
    Geof

    in reply to: Description of Category #1132467
    Geoff
    Member

    Hi Rhonda,

    Oh shoot, it appears I led you down a wrong path — I get the same error and should have tested my answer more thoroughly before sharing it. Sorry about that!

    On a second look, it appears the cleanest way to get the category description is to add it directly to the template. Our Themer’s Guide provides steps for customizing calendar templates, but it basically boils down to this:

    • Make a copy of the template. In this case, let’s add this to the list/content.php template which is located at wp-content/plugins/the-events-calendar/src/views/list/content.php
    • Make a new folder in your theme called tribe-events
    • Make a new folder in that one called list
    • Drop the copied content.php file in that last folder

    Now that the template is in your theme, it can be customized to suit your needs. In this case, add the following where you would like the category description to display:

    <?php if( is_tax() ) {
    echo term_description( get_queried_object_id(), 'tribe_events_cat' );
    }?>

    I tested that out and it does seem to do the trick. Please let m know if it works for you as well. 🙂

    Cheers!
    Geoff

    in reply to: Removing title and customising photo views #1132405
    Geoff
    Member

    Hi Graham,

    Will you please send me a link to the homepage? I haven’t seen a URL in this thread so far, but could just be missing it.

    Thanks!
    Geoff

    Geoff
    Member

    Hi Lucy,

    Sure, that’s totally possible! In fact, here is a snippet that provides examples for how to change the title attribute on any calendar page.

    Will this help you get started? Please let me know. 🙂

    Cheers,
    Geoff

    in reply to: White label option #1132398
    Geoff
    Member

    Hi Christine,

    Thanks so much for checking out our plugins!

    All of our plugins are white-label by default. In other words, they plug right into your WordPress site and we do not advertise Modern Tribe at all, unless you change that in the settings.

    Was there something else in the products you were hoping to white label? Please let me know and I’d be happy to help as best I can.

    Cheers!
    Geoff

    in reply to: Hide tickets in products page #1132385
    Geoff
    Member

    Hey Claudio, hope you had a great weekend!

    You can hide the ticket form with CSS for the time being:

    .single-tribe_events #tribe-events-content form.cart {
    display: none;
    }

    Will that work for you? Please let me know.

    Cheers!
    Geoff

    Geoff
    Member

    Hey Bryan and hope you had a great weekend!

    Good question. Would you be willing to share a link to the page in question? I’d offer a recommendation, but want to see that date box first because it doesn’t look like the date field included in the plugin by default (screenshot) and I want to make sure whatever I give you doesn’t interfere with something else.

    Thanks so much!
    Geoff

    in reply to: Adding #1132371
    Geoff
    Member

    Hey there, Paul!

    Sure, we’d be happy to help you out! Will you please email us at support [at] theeventscalendar.com and link this thread when you do? We’d be happy to look into that for you. 🙂

    Cheers,
    Geoff

Viewing 15 posts - 2,956 through 2,970 (of 10,150 total)