Okay
  Public Ticket #3711506
Hide buttons in Boxgrid view
Open

Comments

  •  2
    selinkocagoncu started the conversation

    Hello,

    I have various extraneous buttons on my calendars that I would like to remove or hide.

    • Removing buttons "Today" and "Categories" from Boxgrid View. 
    • Hiding all UI elements except for the arrows in Today View, specifically the following: Today button, Search box, hamburger menu, Category filter, Locations filter.

    Could you help me with these?

    Thank you in advance for your time and attention!

    Attached files:  boxgrid-extraneous-buttons.jpg

  •  2
    selinkocagoncu replied

    Please find the correctly annotated screenshot here.

    Attached files:  boxgrid-today_extraneous-buttons.jpg

  •  852
    Zhivko replied

    Here are the parameters you need to hide these elements:

    Hide categories etc...:
    calendar__top_filters_menu=0

    Hide today button:
    calendar__top_today_button=false

    Hide search button:
    calendar__top_search_menu=false

    Hide hamburger menu:
    calendar__top_layouts_menu=false

    Shortcode Example:

    [stec calendar__top_filters_menu=0 calendar__top_today_button=false calendar__top_search_menu=false calendar__top_layouts_menu=false]

    If you are using the STEC Elementor Widget just paste these parameters in the widget settings Misc tab:

    calendar__top_filters_menu=0
    calendar__top_today_button=false
    calendar__top_search_menu=false
    calendar__top_layouts_menu=false
    

    Stachethemes Developer

  •  2
    selinkocagoncu replied

    Thank you very much for your answer! Could I bother you also to ask which attribute to use to hide *only* the "Categories" button? I wish for only "Categories" to hide, but for "Locations" to remain.

    Thank you! 🙏🙏

  •  852
    Zhivko replied

    I'm afraid the categories button can't be hidden via a parameter. You will have to use plain css:

    .stec-top-filter-categories {
        display: none !important;
    }
    

    Stachethemes Developer

  •  2
    selinkocagoncu replied

    Thank you very much. One final question regarding hiding top menu elements: How should I hide the arrow buttons? 

    I wish to use this in the Featured Events section. With only 4 events, there is nothing to navigate or filter; so none of the navigational elements make any sense anymore. 

    I am seeking help regarding the right column of the following page: Artview homepage

    Thank you in advance!

  •  852
    Zhivko replied

    Try adding calendar__top_nav_buttons=false to the shortcode parameters:

    [stec calendar__top_nav_buttons=false]

    Stachethemes Developer

  •  2
    selinkocagoncu replied

    It worked beautifully! Thank you very much! 💐