Changeset 3941
- Timestamp:
- 09/03/2016 03:35:57 PM (8 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/form-topic.php
r3899 r3941 30 30 31 31 <div class="bbp-template-notice"> 32 <p><?php 33 printf( 34 /* translators: %s: Search URL */ 35 __( 'Before posting a new topic, be sure to <a href="%s">search</a> to see if one has been started already.', 'wporg-forums' ), 36 esc_url( bbp_get_search_url() ) 37 ); 38 ?></p> 39 <p><?php _e( 'Having a problem? Asking a question? Make sure to read the <a href="http://codex.wordpress.org/Forum_Welcome">Forum Welcome</a> to find out how to maximize your odds of getting help!', 'wporg-forums' ); ?></p> 32 <p><?php _e( 'When posting a new topic, follow these steps:', 'wporg-forums' ); ?></p> 33 <ul> 34 <li><?php 35 /* translators: %s: Codex URL for forum welcome */ 36 printf( __( '<strong>Read the <a href="%s">Forum Welcome</a></strong> to find out how to maximize your odds of getting help!', 'wporg-forums' ), esc_url( __( 'https:///codex.wordpress.org/Forum_Welcome', 'wporg-forums' ) ) ); 37 ?></li> 38 <li><?php 39 /* translators: %s: URL to search */ 40 printf( __( '<strong><a href="%s">Search</a> the forums</strong> to see if your topic has been started already.', 'wporg-forums' ), esc_url( bbp_get_search_url() ) ); 41 ?></li> 42 <li><?php _e( '<strong>Update to the latest versions</strong> of your plugins, themes, and WordPress.', 'wporg-forums' ); ?></li> 43 <li><?php _e( '<strong>Note the exact steps</strong> needed to reproduce your issue.', 'wporg-forums' ); ?></li> 44 <li><?php _e( '<strong>Provide any information</strong> you might think is useful. If your issue is visual, note your browser and operating system. If your issue is technical, not your server environment.', 'wporg-forums' ); ?></li> 45 </ul> 40 46 </div> 41 47 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/style-rtl.css
r2009 r3941 73 73 text-align: left; 74 74 } 75 76 #bbpress-forums div.bbp-template-notice ul { 77 margin-left: 0; 78 margin-right: 20px; 79 } -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/style.css
r3940 r3941 127 127 background: #fff8e5; 128 128 border: 1px solid #ffb900; 129 border-bottom: 3px solid #ffb900; 129 130 -webkit-border-radius: 0; 130 131 border-radius: 0; … … 135 136 background: #fbeaea; 136 137 border: 1px solid #dc3232; 138 border-bottom: 3px solid #dc3232; 139 } 140 141 div.bbp-template-notice a { 142 text-decoration: underline; 143 } 144 145 #bbpress-forums div.bbp-template-notice ul { 146 margin-left: 20px; 147 } 148 149 #bbpress-forums div.bbp-template-notice ul li { 150 list-style: disc; 137 151 } 138 152
Note: See TracChangeset
for help on using the changeset viewer.