Posted: October 22, 2015 at 4:33 am
|
Hi there, My questions are: Apologies for all the questions and thanks so much for all your help. |
Hi Kate, We can share feedback on accomplishing some of those. Please keep in mind that some of the content that appears on the page for laneway learning is not from Event Espresso and may have been added via another plugin or custom coding. If you are looking for a very close match in terms of content and layout, then the best option would be to get in touch with an Event Espresso professional: https://eventespresso.com/developers/event-espresso-pros/ 1) An asterisk means that must be selected. For example, if you try to register without selecting a quantity then you’ll see a warning. 2) Inspecting those images shows that the images were edited to include the halloween overlay before they were uploaded to the event. 3a) There are a couple ways to get rid of the information. The first is to setup a child theme that will hold your customized templates: https://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme 3b) Now we need to add the templates to the child theme. The first template will be for the single-espresso_events.php file which handles the layout for the single event page. Take a look at step 5 here: https://gist.github.com/lorenzocaum/16aac08f099d7c154f04 3c) The next step it to add one more file to the child theme and then edit one of the lines which will remove the venue (location) information. Browse to this location using an SFTP / FTP client such as FileZilla or Cyberduck: /wp-content/plugins/event-espresso-core-reg/public/Espresso_Arabica_2014 Then download the content-espresso_events.php which is used by the single-espresso_events.php file. Now open the content-espresso_events.php for editing. At about line 32, you’ll see a line of code for the venues: http://cl.ly/image/160M1E413U2u Remove that, then save changes. Afterwards, upload the content-espresso_events.php to your child theme. Here is a recap of the steps above: Create a child theme so your customizations are preserved. It will be in this location: /wp-content/themes/your-child-theme-folder/ Now create a single-espresso_events.php and upload to this location: /wp-content/themes/your-child-theme-folder/ Then create a content-espresso_events.php, make changes, and upload to the child theme folder (same location as above): /wp-content/themes/your-child-theme-folder/ The steps described above are preferred if you will be making a variety of edits across several template files. The other option is to use a line of CSS to hide the venue information on the single event pages: .espresso_event_type-single-event .espresso-venue-dv {display:none;} The sample CSS above can be added to your child themes stylesheet or via a plugin like Reaktiv CSS Builder or My Custom CSS. 4) Is the social share icons being added through a plugin? If so, what plugin is in use? 5) The code snippet in the following link can be used to remove the ical button: https://eventespresso.com/wiki/useful-php-code-snippets/#disable-ical It can be added through a site specific plugin or your child theme’s functions.php file. 6) This won’t apply if you remove the location (venue information) in step 3 7) Here is some CSS that can be used to hide those icons on the single event pages: .espresso_event_type-single-event span.dashicons.dashicons-calendar, .espresso_event_type-single-event span.dashicons.dashicons-clock {display:none;} Let us know if you have any questions on the changes above. — |
|
The support post ‘Single events page – a couple of questions’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.