Changeset 383
- Timestamp:
- 02/06/2014 06:12:14 PM (12 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page
- Files:
-
- 4 edited
-
TODO.txt (modified) (2 diffs)
-
css/template-coming-soon.css (modified) (1 diff)
-
views/settings-fields.php (modified) (1 diff)
-
views/template-coming-soon.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/TODO.txt
r382 r383 1 1 High 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 7 5 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 10 9 11 10 Medium priority: 11 add color pickers 12 12 update image preview after they pick new but before they save/refresh 13 13 customize image size in template … … 18 18 19 19 Low priority: 20 styles 21 make responsive & mobile-first 22 make contact box align w/ right edge of intro text properly instead of workaround 20 23 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 14 14 } 15 15 16 #wccsp- logo{16 #wccsp-image { 17 17 display: block; 18 18 margin: 0 auto 40px auto; -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/views/settings-fields.php
r381 r383 32 32 <p> 33 33 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" /> 35 35 </p> 36 36 <?php endif; ?> -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/views/template-coming-soon.php
r381 r383 16 16 17 17 <?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' ) ); ?>" /> 19 19 <?php endif; ?> 20 20
Note: See TracChangeset
for help on using the changeset viewer.