Okay
  Public Ticket #3140551
Customizing the box grid layout
Closed

Comments

  •  2
    Pronish started the conversation

    Hello,

    Is it possible to hide date and category button from box grid layout?

    Also, is it possible to show past events?

    Best,


  •  783
    Zhivko replied

    Hi,

    Go to Dashboard -> STEC -> Fonts & Colors -> Custom style tab and add following css:

    .stec-layout-boxgrid-event-tags,
    .stec-layout-boxgrid-event-timespan {
        display: none !important;
    }

    By default you can navigate to past dates from the top menu. 

    If you want the calendar to show certain month you can use start_date shortcode parameter. 

    Example:

    [stachethemes_ec views=boxgrid view=boxgrid start_date=2022-01-31]

    the date must be in YYYY-MM-DD format like in the example.


    Stachethemes Developer

  •  2
    Pronish replied

    Hello,


    Thank you. They all worked like a charm. Is there any way to hide the Day and Month on the box grid layout too?

    Please see attached.


    Best,


    Attached files:  Screen Shot 2022-10-11 at 16.58.21.png

  •  783
    Zhivko replied

    Update the previous style to this:

    .stec-layout-boxgrid-event-timespan-wrap,
    .stec-layout-boxgrid-event-tags,
    .stec-layout-boxgrid-event-timespan {
        display: none !important;
    }

    Stachethemes Developer

  •  2
    Pronish replied

    Thanks a lot!