Forum Replies Created
-
AuthorPosts
-
clubbingpriest
Participantyou are right it is a mod i done on list.php that did it i replace it with the original one and everything is fine
clubbingpriest
Participantclubbingpriest
ParticipantThe Events Calendar -> Theme Settings -> Events Template,
* then this file loads the page template for all for the individual
* event view. Generally, this setting should only be used if you want to manually
* specify all the shell HTML of your ECP pages in this template file. Use one of the other Theme
* Settings -> Events Template to automatically integrate views into your
* theme.
*
* You can customize this view by putting a replacement file of the same name (ecp-single-template.php) in the events/ directory of your theme.
*/// Don’t load directly
if ( !defined(‘ABSPATH’) ) { die(‘-1′); }
?><div id="post-” >
<?php edit_post_link(__('Edit','tribe-events-calendar'), '’, ”); ?>
clubbingpriest
ParticipantHello Barry,
That did the trick on single-venue.php cool,
I also noticed I got the same problem with the list view
when I view a category list with an upcoming events it is fine
http://theclubbingbible.net/events/category/ibiza/
But when i got no upcoming event the sidebar gets pushed down below
http://theclubbingbible.net/events/category/berlin/
Seems that list.php got the same unbalanced tags issue that the
with single-venue.php
BTW my default template ecp-single-template.php is built the same than ecp-page-template.php
Can you help on this one
Thank yupclubbingpriest
ParticipantI got the same problem with no event the sidebar gets pushed down , i switched to a default theme and i got the same problem, it do not look like a css problem
I even reinstall the full original calendar but still the same bug
i run the-events-calendar.2.0.11, events-calendar-pro.2.0.11 & the-events-calendar-community-events.1.0.5
example venue page with event
http://theclubbingbible.net/venue/space-ibiza/
example venue page without event
http://theclubbingbible.net/venue/dc10-ibiza/
Any idea for a fixclubbingpriest
ParticipantHI Casey,
Thank you this is workingclubbingpriest
ParticipantSorry I did not finish my message
I inserted the jQuery but the function do not workclubbingpriest
ParticipantHI Casey
I did add the jQuery script on the event-form.php but the function did Here the codejQuery(‘.events-community-submit’).click(function() {
var pattern = new RegExp(/^((([a-z]|\d|[!#\$%&’\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&’\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i);
if(jQuery(‘#OrganizerEmail’).val() != “”) {
if(!pattern.test(jQuery(‘#OrganizerEmail’).val())) {
alert(‘Please enter a valid email address.’);
jQuery(‘#OrganizerEmail’).select();
jQuery(‘#OrganizerEmail’).focus();
return false;
}
}
});jQuery(document).ready(function() {
jQuery(‘#show_hidden_categories’).click(function() {
//jQuery(‘#event-categories’).css(‘overflow-y’, ‘scroll’);
jQuery(‘.hidden_category’).show(‘medium’);
jQuery(‘#show_hidden_categories’).hide();
return false;});
//Code to select desired default hour
jQuery(‘select[name=”EventStartHour”]’).val(’23’);
jQuery(‘select[name=”EventEndHour”]’).val(’06’);
});…..etc….
February 2, 2013 at 4:49 am in reply to: Start time and end time drop down list in public event form #32008clubbingpriest
ParticipantHI Casey,
Thank you
It work perfectly -
AuthorPosts
