Forum Replies Created
-
AuthorPosts
-
andreafph
ParticipantGetting closer…I’ve been working out some kinks in the backend…is there any way to specifically target a: the form only, and b: the edit page ‘My Events’ ?
*Also, I’m not seeing the line w/ ‘Not an evil spammer’ nor the checkbox. I’ve found someone’s site who is showing this and am rummaging around the code to see why it’s not showing in my view (while logged out, and anonymous submissions are being accepted in settings)
andreafph
ParticipantOkay so I kept coming across solutions that said that .live is deprecated and to use .on instead. I updated this in the event-admin.js file and everything is working. HOWEVER, I would still like to know how to switch to a different template for both ‘add’ page and ‘edit event’ page so I can use a full width template, rather than one w/ sidebars (which is fine for the list view pages, etc.) I can start a new topic if necessary.
andreafph
ParticipantLastly, if I deactivate pro and just keep community and standard events cal plugins, there are no errors.
andreafph
ParticipantSorry, to clarify, I would like to know how to direct the form/add event page to a different template than the regular events template I have set in the dashboard/settings.
andreafph
ParticipantThe theme relies on the google.js– removing it breaks the site. It seems that only the community form/add page has a conflict with an essential plugin that I can resolve if I knew how to designate a different template to the form page only, so that I could disable the plugin on that one page. I have a custom default template for the event pages and it works well. How can I add a custom default template for the add/form page? I will attempt to try this solution, but what folder/directory do create this in?
andreafph
ParticipantI pieced together a solution to remove the time from the tribe_events_event_schedule_details filter by copying the full function function ‘tribe_events_event_schedule_details’ in general.php to my theme’s function.php file, then renaming the filter to function tribe_events_event_schedule_details_noTime and editing show_end_times and time to false:
$settings = array(
‘datetime_separator’ => ‘ @ ‘,
‘same_year_format’ => ‘F j’,
‘show_end_time’ => false,
‘time’ => false,
Be sure to rename your new filter where it is being used, in my case, in a loop on the home page.andreafph
ParticipantActually a solution would be to be able to mimic the widget’s start/time output in my home page loop– searching for that code now.
andreafph
ParticipantSo there isn’t an ‘if start date is = to end date don’t show end date’ solution?
andreafph
ParticipantI figured out how to hide the Recurring event instances w/ setting option to show only the first instance … easy enough. Now for the loop…at the moment I’m using: tribe_get_start_date($event, false, ‘m/d/Y’)
-
AuthorPosts
