Okay
  Public Ticket #3428458
Single Page Customization
Closed

Comments

  •  4
    mbertina started the conversation

    Hi! 

    I would like to customize the page that hosts the single view of an event, as I want to remove some info such as title and author. 

    I surfed thought articles and previous ticket, but it seems that nothing was talking about this issue.

    Do you have any suggestion?

  •  783
    Zhivko replied

    Hi,

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

    .single-stec_event .entry-header { display: none !important; }
    2459401906.png

    6427061972.png

    Stachethemes Developer

  •  4
    mbertina replied

    Hi Zhivko.

    Thanks for your reply. The solution suggested seems to work properly.

    But now I'm facing to some other issues related the customization of this page. Do you know if there's some public documentation that can help me to create such page with other custom tools, such as sections, images, other widget? 

    Or at least to customize padding of the container.

    It seems that the layout used is decided by the plugin.

  •  783
    Zhivko replied

    The calendar uses the theme default single page.

    The calendar layout is placed where the_content() function is located.

    To create a single page specifically for the event posts, you can create a file named single-stec_event.php in your theme folder.


    Stachethemes Developer

  •  4
    mbertina replied

    Thanks for the informations. I've probably solved for the single page layout.

    Now I'm facing to another problem with the Organizer page. How can I customize this page with my widget? It seems not available a shortcode to define where to put content of Organizer.

  •  783
    Zhivko replied

    The organizer page can be any page that has the_content() method inside.

    If you have a specific page template that you want to use, you can set it in the page settings here:

    3472057544.png
    4217676631.png



    Stachethemes Developer

  •  4
    mbertina replied

    Thanks.