Okay
  Public Ticket #1668471
Single Event Page
Closed

Comments

  • P S started the conversation

    Hello,

    My single-event page is occupying the whole page. In your demo it is occupying half of the space http://stachethemes.com/wp-demos/calendar/. How can we restrict our event image from occupying or stretching to the whole width of the page?

    How can I get single event information to appear in the tabs rather than having to scroll the whole page up?

    How do you get color coded lines to show up below the date event?

    How can I place time ticker at the top of single-event listing? It makes sense to keep it there?

    My site is membership based. As a non-login user, I cannot browse events. How can I make all my events public?

    Thanks.

    Pankaj

  •  799
    Zhivko replied

    Hi,

    1) You can wrap the single page with additional css. I can send you the style but I'll need link to the single event page to take a look at your theme.

    2) You can't. However, the event information is displayed before the tabs so I'm not sure what's going on.

    3) Sorry, I don't know what do you mean. Could you elaborate or send me screenshot?

    4) Open file stachethemes_event_calendar\front\view\single.php 

    Copy lines 233 to 255 and place the code on line 71

    5) In St. Event Calendar -> Calendars -> Add/Edit calendar set Front-End Visibility to Public.


    Stachethemes Developer

  • techfit_admin replied

    Hello,

    First, thanks for responding quickly.

    1. Here is the link to single event: http://dev-sandbox.icobc.org/stec_event/10th-annual-icobc-golf-tournament/

    2. What I meant was how can I get the event shown in format (ScreenCapture_2018_08_08_004.png). It is the difference between Full Calendar Event as shown in (http://stachethemes.com/wp-demos/calendar/) Vs Full Calendar (Single Pages) Event as shown in (http://stachethemes.com/wp-demos/calendar/stec_event/vivamus-eget-neque-non-libero/68342400/). How do you switch to the format shown in the screenshot rather that I have attached.

    3. Please see screenshot (ScreenCapture_2018_08_08_002.png)

    4. Could you please make this as an option in your future release because, if I make this change, it will be overwritten the next time I update the plugin.

    5. I did that, but take a look at the link in 1, it doesn't show anything other than the poster image that has been attached to the event at the time of event creation. No other event information is publicly available for one to browse. How can we make event fully public to view. I can provide you with site creds to take a look at it yourself, but I will need an email so you can login and see for yourself. Screenshot (ScreenCapture_2018_08_08_008.png) attached for your reference.

    Thanks,

    Pankaj

  •  799
    Zhivko replied

    1) Go to St. Event Calendar -> Fonts & Colors -> Custom Style and add following:

    .stec-layout-single {
      float: none !important;
      max-width: 1280px ;
      margin: 0 auto !important;
      overflow: hidden; }

    2) It's not possible without customization or writing your own single page in the theme folder.

    3) They are automatically added if there's event on this date. You will have to set "Agenda Calendar Display" to "Show" in St. Event Calendar -> General Settings. If you don't see the color lines then there's most likely css issue there.

    4) Unzip the archive I've attached and place it in your theme folder. This way the changes won't be overwritten by plugin update.

    5) Answer (1) should fix this.


    Stachethemes Developer

  • techfit_admin replied

    On the Full Calendar page, the timer ticker still shows at the bottom. How can you bring it also to top of the event?

    Events are public and anyone can see them. When someone selects an event in the Calendar and tries to put a reminder, where does it track the email since the person is not a member of logged in currently? Is it possible to secure reminder against bots or spammers by including captcha in the Reminder pop-up?

    On the Grid View, is it possible for a user to go to main events page with Full Calendar when he/she selects "Look for more" button instead of displaying more events in the grid assuming the plugin can be configured to show certain number of upcoming events by default inside the grid?


  •  799
    Zhivko replied

    Open your theme functions.php and add following filter:


    add_filter('stec_event_tabs', function($tabs) {
        $tabs[0] = Array('intro', __('Event Info', 'stec'), 'fa fa-info', '', get_template_directory() . DIRECTORY_SEPARATOR . 'stec-intro-tab.php');
        return $tabs;
    });


    Then unzip the file I've attached and place it in your theme main folder. This way future updates will not affect the customization.


    The reminder will be redesigned in future update to support double opt-in feature. If the user is not logged-in they have to add their email in the field manually.


    It's not possible. Look for more simply looks for more events.


    Stachethemes Developer