Two Small Issues

Home Forums Ticket Products Event Tickets Plus Two Small Issues

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #940369
    Ken Cook
    Participant

    I love the Modern Tribe Plugins.

    I am having a couple of minor issues, mainly due to my inability to code PHP.

    <!– List Title –>
    <?php do_action( ‘tribe_events_before_the_title’ ); ?>
    <h2 class=”tribe-events-page-title”><?php echo tribe_get_events_title() ?></h2>
    <?php do_action( ‘tribe_events_after_the_title’ ); ?>

    I don’t understand how this H2 is populated, and where I can edit it.

    Secondly,

    When I look at the list view, its most expensive ticket price shows. How can I modify it to show a range?

    Thanks for the help!

    #940486
    Brian
    Keymaster

    Hi,

    Thanks for purchasing WooCommerce Tickets I can help out here.

    To make edits to the List View you can follow our themer’s guide:

    https://theeventscalendar.com/knowledgebase/themers-guide/

    To move and edit templates to your theme for safe editing.

    This is the template that controls the view of the Single Event in the list view:

    the-events-calendar\views\list\single-event.php

    You can follow the guide to move that to your theme to edit.

    Ticket Range

    Right now the Prices do not show a range, we do not have coding to display a range yet, but it is something we are working on adding.

    I can provide some css to hide the cost of that is an issue.

    Let me know and we can go from here.

    Thanks

    #940615
    Ken Cook
    Participant

    I would like to hide it at least on the main price, and the single event view header.

    #940621
    Ken Cook
    Participant

    This reply is private.

    #940642
    Brian
    Keymaster

    tribe_get_events_title is a function similar to WordPress’s get_the_title()

    You can find out more about it and where it is located in our coding here:

    https://theeventscalendar.com/function/tribe_get_events_title/

    As for hiding the cost, this css should do the trick:

    .tribe-events-list .tribe-events-event-cost,
    .tribe-events-schedule .tribe-events-cost,
    .tribe-events-meta-group dl dt:nth-child(5),
    .tribe-events-meta-group .tribe-events-event-cost {
    display:none;
    }

    Add that css to your theme’s stylesheet or through a plugin such as Simple Custom CSS.

    Let me know if that helps.

    Thanks

    #949536
    Brian
    Keymaster

    Since there is has not been any activity on this thread for over 2 weeks so I am now closing it. Feel free to start a new thread if you have further issues. Thanks! 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Two Small Issues’ is closed to new replies.