Changeset 2921047
- Timestamp:
- 06/03/2023 05:10:14 PM (3 years ago)
- File:
-
- 1 edited
-
edd-template/trunk/class/class-main.php (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
edd-template/trunk/class/class-main.php
r2921013 r2921047 164 164 if ( $result == true ) 165 165 { 166 167 166 wp_register_style( 'edd-template', EDD_TEMPLATE_ASSETS_CSS_DIR . 'edd-template.css'); 168 167 wp_enqueue_style( 'edd-template' ); … … 225 224 <div class="select"> 226 225 <select class="has-text-centered" name="edd-template-status" id="edd-template-status"> 226 <?php 227 if (!get_option('edd-template-status')) { 228 ?> 229 <option value="" selected="selected"> </option> 230 <?php 231 } 232 ?> 227 233 <option value="enable" <?php selected( get_option('edd-template-status'), 'enable', true ); ?>> 228 234 <?php esc_html_e('Enable', 'edd-template'); ?> … … 249 255 250 256 default: 251 echo '<strong class="has-text- warning">' . esc_html( __('Not Set Yet!', 'edd-template') ) . '</strong>';257 echo '<strong class="has-text-info">' . esc_html( __('Not Set Yet', 'edd-template') ) . '</strong>'; 252 258 break; 253 259 } … … 287 293 <div class="field"> 288 294 <p class="control"> 289 <strong class="ml-2 help is-success is-italic ">Ex: /checkout/ </strong>295 <strong class="ml-2 help is-success is-italic dir-ltr">Ex: /checkout/ </strong> 290 296 </p> 291 297 </div> … … 300 306 </p> 301 307 <p class="control"> 302 <strong class="ml-2 help is-success is-italic ">Ex: /checkout/receipt/ </strong>308 <strong class="ml-2 help is-success is-italic dir-ltr">Ex: /checkout/receipt/ </strong> 303 309 </p> 304 310 </div> … … 316 322 </p> 317 323 <p class="control"> 318 <strong class="ml-2 help is-success is-italic ">Ex: /checkout/confirmation/ </strong>324 <strong class="ml-2 help is-success is-italic dir-ltr">Ex: /checkout/confirmation/ </strong> 319 325 </p> 320 326 </div> … … 330 336 </p> 331 337 <p class="control"> 332 <strong class="ml-2 help is-success is-italic ">Ex: /checkout/purchase-confirmation/ </strong>338 <strong class="ml-2 help is-success is-italic dir-ltr">Ex: /checkout/purchase-confirmation/ </strong> 333 339 </p> 334 340 </div> … … 347 353 </p> 348 354 <p class="control"> 349 <strong class="ml-2 help is-success is-italic ">Ex: /checkout/download-history/ </strong>355 <strong class="ml-2 help is-success is-italic dir-ltr">Ex: /checkout/download-history/ </strong> 350 356 </p> 351 357 </div> … … 360 366 </p> 361 367 <p class="control"> 362 <strong class="ml-2 help is-success is-italic ">Ex: /checkout/purchase-history/ </strong>368 <strong class="ml-2 help is-success is-italic dir-ltr">Ex: /checkout/purchase-history/ </strong> 363 369 </p> 364 370 </div>
Note: See TracChangeset
for help on using the changeset viewer.