sitelockdesign

Forum Replies Created

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • in reply to: Community Events Submission page form issues #103828
    sitelockdesign
    Participant

    Thank you

    in reply to: Community Events Submission page form issues #103225
    sitelockdesign
    Participant

    I have The Events Calendar Version 3.4.1
    and
    The Events Calendar: Community Events Version 3.2

    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.”

    No updates available and no older versions available that I see

    in reply to: Community Events Submission page form issues #103221
    sitelockdesign
    Participant

    One 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.

    in reply to: Community Events Submission page form issues #101351
    sitelockdesign
    Participant

    That 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’);

    }

    });

    },

    in reply to: Community Events Submission page form issues #101111
    sitelockdesign
    Participant

    Ok, 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.

    in reply to: Community Events Submission page form issues #98436
    sitelockdesign
    Participant

    What do you mean by “commenting out” that code? I appreciate the help!

    in reply to: Community Events Submission page form issues #97959
    sitelockdesign
    Participant

    Yes, it is theme related. What can I do to make this work with my theme?

    in reply to: Add Event Form Template #81394
    sitelockdesign
    Participant

    I 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/add

    in reply to: Add Event Form Template #81393
    sitelockdesign
    Participant

    This reply is private.

Viewing 9 posts - 1 through 9 (of 9 total)