group-compat.php
8 years ago
group-extra.php
8 years ago
group-fields.php
8 years ago
group-form.php
8 years ago
group-query.php
8 years ago
group-slideshow.php
7 years ago
group-style.php
8 years ago
option-background.php
8 years ago
option-boilerplate.php
9 years ago
option-category.php
8 years ago
option-classes.php
8 years ago
option-client-section.php
7 years ago
option-color.php
8 years ago
option-content.php
7 years ago
option-divi.php
8 years ago
option-form-ajax.php
9 years ago
option-form-category.php
8 years ago
option-id.php
8 years ago
option-layout.php
8 years ago
option-limit.php
8 years ago
option-order.php
8 years ago
option-pagination.php
8 years ago
option-read-more-page.php
8 years ago
option-select.php
8 years ago
option-slideshow-behavior.php
8 years ago
option-slideshow-breakpoints.php
7 years ago
option-slideshow-navigation.php
7 years ago
option-slideshow-num.php
7 years ago
option-slideshow-transition.php
7 years ago
option-slideshow-type.php
7 years ago
option-template-list.php
8 years ago
option-thumbnail.php
8 years ago
option-title.php
8 years ago
template-input.php
8 years ago
template-not-found.php
8 years ago
template-options.php
8 years ago
view-mode.php
8 years ago
view-name.php
9 years ago
view-shortcode.php
8 years ago
template-not-found.php
26 lines
| 1 | <?php |
| 2 | // Indicate if template not found; for example, after switching themes or deactivating add-ons. |
| 3 | /* translators: On the Views admin screen. */ |
| 4 | ?> |
| 5 | <?php if ( ! $template_found ) : ?> |
| 6 | <ul class="radio-list template-list"> |
| 7 | <li> |
| 8 | <div> |
| 9 | <input class="error" type="radio" id="<?php esc_attr_e( $view['template'] ); ?>" |
| 10 | name="view[data][<?php esc_attr_e( $current_mode ); ?>]" |
| 11 | value="<?php esc_attr_e( $view['template'] ); ?>" checked> |
| 12 | <label for="<?php esc_attr_e( $view['template'] ); ?>"> |
| 13 | <?php echo $view['template']; ?> |
| 14 | </label> |
| 15 | </div> |
| 16 | <div class="template-description"> |
| 17 | <p> |
| 18 | <span class="dashicons dashicons-warning error"></span> |
| 19 | <span class="error"><?php _e( 'not found', 'strong-testimonials' ); ?></span> |
| 20 | </p> |
| 21 | <?php // TODO Explain: Add template key and explain this could be due to switching themes or deactivating a template plugin. It's OK to leave this setting as is if testing or troubleshooting. ?> |
| 22 | </div> |
| 23 | </li> |
| 24 | </ul> |
| 25 | <?php endif; |
| 26 |