Forum Replies Created
-
AuthorPosts
-
sitelockdesign
ParticipantThank you
sitelockdesign
ParticipantI have The Events Calendar Version 3.4.1
and
The Events Calendar: Community Events Version 3.2Error:
“The following plugins are out of date: The Events Calendar: Community Events 3.2. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version.”
No updates available and no older versions available that I see
sitelockdesign
ParticipantOne last thing:
I see this error:
“The following plugins are out of date: The Events Calendar: Community Events 3.2. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version.”
I followed the link to find the right version but I dont understand what this all means. It’s pretty confusing.
sitelockdesign
ParticipantThat was close! It worked, however it removed the header image seen behind the title “submit an event” http://sitelockdesign.com/ruidoso/events/community/add
Here is what the script looks like from the java file:
—>
replaceSelect: function() {//// vars
var selCont = this;//// WRAPS IT AROUND SELECT
selCont.wrap(‘<div class=”select-replace”></div>’);
var mainCont = selCont.parent();
var selectedItem = selCont.children(‘option:selected’);
mainCont.append(‘<span>’+selectedItem.text()+'</span>’);
var mainContHeight = mainCont.height();//// MAKES IT OVERLAY THE CONTAINER
selCont.css({ display: ‘block’, opacity: 0 });//// WHEN WE CHANGE SELECT
selCont.change(function() {//// NEW SELECTED ITEM
var selectedItem = selCont.children(‘option:selected’);
mainCont.children(‘span’).text(selectedItem.text());});
},
replaceCheckbox: function() {
//// vars
var selCont = this;//// WRAPS IT AROUND SELECT
selCont.wrap(‘<div class=”checkbox-replace”></div>’);
var mainCont = selCont.parent();//// IF IT’S CHECKED
if(selCont.is(‘:checked’)) { mainCont.addClass(‘checkbox-replace-checked’); }//// MAKES IT OVERLAY THE CONTAINER
selCont.css({ display: ‘none’ });//// WHEN WE CLICK THE MAIN CONTAINER
mainCont.click(function() {//// IF IT’S CHECKED
if(jQuery(this).attr(‘class’).indexOf(‘checked’) != -1) {//// UNCHECKS IT
jQuery(this).removeClass(‘checkbox-replace-checked’);
selCont.removeAttr(‘checked’);} else {
//// UNCHECKS IT
jQuery(this).addClass(‘checkbox-replace-checked’);
selCont.attr(‘checked’, ‘checked’);}
});
},
sitelockdesign
ParticipantOk, so I commented this out and is messes up the all of my theme forms completely. How can the events submission form be displayed without grabbing the theme scripts? I cant change the script of the website.
sitelockdesign
ParticipantWhat do you mean by “commenting out” that code? I appreciate the help!
sitelockdesign
ParticipantYes, it is theme related. What can I do to make this work with my theme?
sitelockdesign
ParticipantI am having an issue with this \”add event\” page template. When someone adds an event, it will not allow the user to set the time of the event, choose or create categories.
I have changed the page templates in the settings and virtually tried everything to solve this display issue. Can you take a look for me please?
Thank you
http://sitelockdesign.com/ruidoso/events/community/addsitelockdesign
ParticipantThis reply is private.
-
AuthorPosts
