Making WordPress.org

Changeset 383


Ignore:
Timestamp:
02/06/2014 06:12:14 PM (12 years ago)
Author:
iandunn
Message:

Coming Soon: Use "image" consistently instead of "logo".

Location:
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/TODO.txt

    r382 r383  
    11High priority:
    2     finish styles
    3         make responsive & mobile-first
    4         make contact box align w/ right edge of intro text
    5         make work consistently with any theme
    6         center subscribe buttons
     2    wccsp_image_id
     3    contact form bug
     4        confirmation that contact form was sent
    75    display dates
    8     add color pickers
    9     confirmation that contact form was sent
     6    make work consistently with any theme
     7    warn user that image preview won't update until they save settings
     8   
    109   
    1110Medium priority:
     11    add color pickers
    1212    update image preview after they pick new but before they save/refresh
    1313    customize image size in template
     
    1818           
    1919Low priority:
     20    styles
     21        make responsive & mobile-first
     22        make contact box align w/ right edge of intro text properly instead of workaround
    2023    contact form submitted to latest post url instead of current page (if on home page)
     24    make dashes/underscores consistent in html element ids/names
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/css/template-coming-soon.css

    r381 r383  
    1414}
    1515   
    16     #wccsp-logo {
     16    #wccsp-image {
    1717        display: block;
    1818        margin: 0 auto 40px auto;
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/views/settings-fields.php

    r381 r383  
    3232        <p>
    3333            Current image preview:<br />
    34             <img id="wccsp-logo-preview" src="<?php echo esc_attr( $image[0] ); ?>" alt="Image Preview" />
     34            <img id="wccsp-image-preview" src="<?php echo esc_attr( $image[0] ); ?>" alt="Image Preview" />
    3535        </p>
    3636    <?php endif; ?>
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/views/template-coming-soon.php

    r381 r383  
    1616       
    1717        <?php if ( $image_url ) : ?>
    18             <img id="wccsp-logo" src="<?php echo esc_attr( $image_url ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" />
     18            <img id="wccsp-image" src="<?php echo esc_attr( $image_url ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" />
    1919        <?php endif; ?>
    2020
Note: See TracChangeset for help on using the changeset viewer.