Okay
  Public Ticket #1809992
Single Page - Filter disappears
Closed

Comments

  • François-Xavier started the conversation

    Hi,

    Regarding the single page for events, once we click on a specific event and we land on his single page, we don't have any filter, any menu above the event content.

    Could we have a solution today to fix that ? a shortcode ? a modification in the function php ?

    Thanks,

    FX

  •  94
    Valentin replied

    Good Morning,

    I'm sorry for the delay, can you please give me link to the site to see what is going on or at least screenshot if its on local? 

    Stachethemes Support
    My Time Zone is GMT+3


    Envato Profile | Facebook | Twitter | Newsletter | Rate & Review

  • François-Xavier replied

    Hi,

    Here's the screenshots you need for this ticket ! 

    Thank you,

    F-X

  •  877
    Zhivko replied

    Hi,

    By default there's no filter menu in the single page because it's not needed there.

    This page is for "this" specifc event only.


    Stachethemes Developer

  • François-Xavier replied

    Hi Zhivko,

    Thanks for your response ! 

    Ok by default. 

    However, when whe we land on a specific event, we don't have any possibilities to go back on the program on the calendar. (only with previous button from the browser).

    Could be great to review this option ?

    Thanks for your support ! 

    F-X



  •  877
    Zhivko replied

    Hi,

    You can include back buttons by adding in your theme functions.php file following actions:


    add_action('stec_single_before_content', function() {
        ?>
        <a class="stec-layout-single-button-style stec-layout-event-btn-fontandcolor" href="URL-TO-FULL-CALENDAR"><?php _e('Back to Calendar', 'stec'); ?></a>   
        <?php
    });


    add_action('stec_single_after_content', function() {
        ?>
        <a class="stec-layout-single-button-style stec-layout-event-btn-fontandcolor" href="URL-TO-FULL-CALENDAR"><?php _e('Back to Calendar', 'stec'); ?></a>   
        <?php
    });
    

    Replace URL-TO-FULL-CALENDAR to your actual calendar url.


    Stachethemes Developer