Problems embedded calendar in the page

Home Forums Calendar Products Events Calendar PRO Problems embedded calendar in the page

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #940456
    Jorge
    Participant

    Problems with the plugin and my tema.-

    Hello, excuse the bad English.
    I have problems with the plugin and theme you have installed.
    The page where the calendar is displayed da conflict with the top bar.
    http://mindfulnessypsicologia.com/actividades/
    And as the calendar is embedded in the page automatically and do not have a short code, I have the option to scroll down the calendar.
    Am you can provide a solution?
    If not the plugin no use to me,

    #940539
    Barry
    Member

    Hi Jorge,

    Would it be possible for you to visit Events → Settings → Display and change the default event template setting?

    Some themes work well with the Default Page Template option, others with the Default Events Template: toggling between those options might offer an easy fix here 🙂

    #941228
    Jorge
    Participant

    Hi Barry.
    Nothing, change settings and still have problems with the top menu.
    Do not understand how a plugin that costs $ 100 does not have short codes so we can solve these problems.
    But hey, let’s focus on giving a solution and not complain about the limitations of the calendar.
    Probe the different possibilities:
    – Basic Style
    – Full Style
    – Tribe Style events
    Also change the template for events that goes in the same págian configuration.

    #941407
    Barry
    Member

    We’re definitely investigating the viability of shortcodes for this sort of thing, but we’re not there just yet I’m afraid.

    So to the problem at hand, I think one of the key differences between one of your regular pages and the event views is that a chunk of HTML is missing and that, unfortunately, throws the layout significantly.

    On a normal page, things are structured something like this:

    <body>
        <div class="body-wrapper">
            <header>
                <!-- other stuff, nav menus etc -->
            </header>
            <div id="gdlr-header-substitute"> </div>
            <div class="gdlr-page-title-wrapper">
                <!-- creates the title with a nice -->
                <!-- background image              -->
            </div>
            <div class="content-wrapper">
                <!-- main page begins... ->

    Assuming the theme follows a fairly typical structure I imagine much of the above – including div.gdlr-page-title-wrapper, which is the section that creates the nicely formatted title with background image – is generated by the header.php template.

    The problem is that when an event view is displayed that same section is missing. I’m not sure what the key is to getting that to display, but perhaps you could reach out to the theme developer (feel free to link to this forum topic if it helps to describe the situation) and ask them for advice on identifying the part of the theme that triggers the inclusion of that particular div.

    By using one of our conditional helpers like tribe_is_event_query() you should be able to add a custom title and background image that displays only on event views, something like this:

    if ( tribe_is_event_query() ) {
        // display your event-specific placeholder
    } else {
        // the theme's existing code used to generate
        // div.gdlr-page-title-wrapper
    }

    So, all in all, it does seem like you’re going to have to make some customizations to the theme to resolve this one.

    I hope that helps 🙂

    #946355
    Barry
    Member

    Hi! 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 create new threads as needed. Thanks!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Problems embedded calendar in the page’ is closed to new replies.