Formatting of Submit An Event Page

Home Forums Calendar Products Community Events Formatting of Submit An Event Page

Viewing 8 posts - 16 through 23 (of 23 total)
  • Author
    Posts
  • #1096148
    Laree Mancour
    Participant

    This reply is private.

    #1096227
    Laree Mancour
    Participant

    WTF?!? I updated Events, Events PRO, and Events Community plugins per your latest update (4.1.1) and it automatically deactivated both PRO and Community plugins. I didn’t even notice until someone in my “community” asked why they were looking at a 401 page.

    Seriously?

    #1096258
    Brook
    Participant

    This reply is private.

    #1096635
    Laree Mancour
    Participant

    This reply is private.

    • This reply was modified 10 years, 1 month ago by Laree Mancour.
    #1096737
    Brook
    Participant

    Awesome!

    It looks like there is a little padding being added around each of the day numbers in the datepicker. This CSS was fixing it for me:

    .ui-datepicker td .ui-state-default { padding: 0; }

    In addition, I noticed the year/month selector was arranged vertically instead of horizontally. If that’s not intentional, this CSS will get them horizontal like they usually are:

    .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year { float: left; }

    Did that work??

    Cheers!

    – Brook

    #1096740
    Laree Mancour
    Participant

    Congratulations Brook–you’re the only one who figured out how to fix the calendar. We now have Sundays. Nice work.

    Now we just need to get the form to look like this one – left justified – and we’re golden: http://nordiclarp.org/calendar/community/add

    One other question: Is there a way to show all the categories without having to click “Show all categories ( 13 )”?

    #1096778
    Brook
    Participant

    Splendiferous news!

    Clicking that button fires these two lines of JavaScript

    jQuery( '.hidden_category' ).removeClass( 'hidden_category' );
    jQuery( '#show_hidden_categories' ).hide();

    You could just fire those as soon as the document is ready. Pasting this code somewhere on the page ought to do it I would think:

    jQuery( document ).ready(function() {
    jQuery( '.hidden_category' ).removeClass( 'hidden_category' );
    jQuery( '#show_hidden_categories' ).hide();
    });

    That work?

    Cheers!

    – Brook

    #1103096
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 8 posts - 16 through 23 (of 23 total)
  • The topic ‘Formatting of Submit An Event Page’ is closed to new replies.