Changeset 3424470
- Timestamp:
- 12/21/2025 06:25:34 AM (3 weeks ago)
- Location:
- super-testimonial/trunk
- Files:
-
- 11 edited
-
admin/tp-testimonials-admin.php (modified) (16 diffs)
-
includes/admin/frontend-form-post.php (modified) (46 diffs)
-
includes/metabox/tp-testimonials-metabox.php (modified) (88 diffs)
-
includes/shortcodes/template/theme-1.php (modified) (1 diff)
-
includes/shortcodes/template/theme-2.php (modified) (1 diff)
-
includes/shortcodes/template/theme-3.php (modified) (1 diff)
-
includes/shortcodes/template/theme-4.php (modified) (1 diff)
-
includes/shortcodes/template/theme-5.php (modified) (1 diff)
-
includes/tps_super_testimonial_options.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
-
tp-testimonials.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
super-testimonial/trunk/admin/tp-testimonials-admin.php
r3328073 r3424470 8 8 function tps_super_testimonials_init() { 9 9 $labels = array( 10 'name' => _x('Testimonials', 'Post type general name', ' ktsttestimonial'),11 'singular_name' => _x('Testimonials', 'Post type singular name', ' ktsttestimonial'),12 'add_new' => _x('Add New', 'Testimonial Item', ' ktsttestimonial'),13 'add_new_item' => __('Add New', ' ktsttestimonial'),14 'edit_item' => __('Edit testimonial', ' ktsttestimonial'),15 'update_item' => __('Update Testimonial', ' ktsttestimonial' ),16 'view_item' => __('View Testimonial', ' ktsttestimonial' ),17 'new_item' => __('Add New', ' ktsttestimonial'),18 'all_items' => __('All Testimonials', ' ktsttestimonial'),19 'search_items' => __('Search Testimonial', ' ktsttestimonial'),20 'not_found' => __('No Testimonials found.', ' ktsttestimonial'),21 'not_found_in_trash' => __('No Testimonials found.', ' ktsttestimonial'),10 'name' => _x('Testimonials', 'Post type general name', 'super-testimonial'), 11 'singular_name' => _x('Testimonials', 'Post type singular name', 'super-testimonial'), 12 'add_new' => _x('Add New', 'Testimonial Item', 'super-testimonial'), 13 'add_new_item' => __('Add New', 'super-testimonial'), 14 'edit_item' => __('Edit testimonial', 'super-testimonial'), 15 'update_item' => __('Update Testimonial', 'super-testimonial' ), 16 'view_item' => __('View Testimonial', 'super-testimonial' ), 17 'new_item' => __('Add New', 'super-testimonial'), 18 'all_items' => __('All Testimonials', 'super-testimonial'), 19 'search_items' => __('Search Testimonial', 'super-testimonial'), 20 'not_found' => __('No Testimonials found.', 'super-testimonial'), 21 'not_found_in_trash' => __('No Testimonials found.', 'super-testimonial'), 22 22 'parent_item_colon' => '', 23 'menu_name' => _x('Super Testimonial', 'admin menu', ' ktsttestimonial'),24 'name_admin_bar' => __('Super Testimonial', ' ktsttestimonial'),23 'menu_name' => _x('Super Testimonial', 'admin menu', 'super-testimonial'), 24 'name_admin_bar' => __('Super Testimonial', 'super-testimonial'), 25 25 ); 26 26 $args = array( … … 42 42 43 43 // register taxonomy 44 register_taxonomy("ktspcategory", array("ktsprotype"), array("hierarchical" => true, "label" => __('Categories', ' ktsttestimonial'), "singular_label" => __('Category', 'ktsttestimonial'), "rewrite" => false, "slug" => 'ktspcategory',"show_in_nav_menus"=>false));44 register_taxonomy("ktspcategory", array("ktsprotype"), array("hierarchical" => true, "label" => __('Categories', 'super-testimonial'), "singular_label" => __('Category', 'super-testimonial'), "rewrite" => false, "slug" => 'ktspcategory',"show_in_nav_menus"=>false)); 45 45 } 46 46 add_action('init', 'tps_super_testimonials_init'); … … 59 59 $custom_columns = array( 60 60 "cb" => "<input type=\"checkbox\" />", 61 "thumbnail" => __('Image', ' ktsttestimonial'),62 "title" => __('Name', ' ktsttestimonial'),63 "main_title" => __('Title', ' ktsttestimonial'),64 "description" => __('Testimonial Description', ' ktsttestimonial'),65 "clientratings" => __('Rating', ' ktsttestimonial'),66 "position" => __('Position', ' ktsttestimonial'),67 "ktstcategories" => __('Categories', ' ktsttestimonial'),68 "date" => __('Date', ' ktsttestimonial'),61 "thumbnail" => __('Image', 'super-testimonial'), 62 "title" => __('Name', 'super-testimonial'), 63 "main_title" => __('Title', 'super-testimonial'), 64 "description" => __('Testimonial Description', 'super-testimonial'), 65 "clientratings" => __('Rating', 'super-testimonial'), 66 "position" => __('Position', 'super-testimonial'), 67 "ktstcategories" => __('Categories', 'super-testimonial'), 68 "date" => __('Date', 'super-testimonial'), 69 69 ); 70 70 … … 88 88 echo get_the_post_thumbnail($post_id, array($width, $height)); 89 89 } else { 90 esc_html_e('None', ' ktsttestimonial');90 esc_html_e('None', 'super-testimonial'); 91 91 } 92 92 break; … … 105 105 break; 106 106 107 case 'clientratings': 108 $column_rating = (float) get_post_meta($post_id, 'company_rating_target', true); 109 for ($i = 0; $i < 5; $i++) { 110 $icon_class = ($i < $column_rating) ? 'fa fa-star' : 'fa fa-star-o'; 111 echo "<i class=\"$icon_class\"></i>"; 112 } 113 break; 114 115 case 'ktstcategories': 116 $terms = get_the_terms($post_id, 'ktspcategory'); 117 if (!empty($terms) && !is_wp_error($terms)) { 118 $term_links = array_map(function ($term) { 119 return '<a href="' . esc_url(admin_url('edit.php?post_type=ktsprotype&ktspcategory=' . $term->slug)) . '">' . esc_html($term->name) . '</a>'; 120 }, $terms); 121 echo implode(', ', $term_links); 122 } else { 123 esc_html_e('No Categories', 'ktsttestimonial'); 124 } 125 break; 107 case 'clientratings': 108 $column_rating = (float) get_post_meta( $post_id, 'company_rating_target', true ); 109 for ( $i = 0; $i < 5; $i++ ) { 110 $icon_class = ( $i < $column_rating ) ? 'fa fa-star' : 'fa fa-star-o'; 111 echo '<i class="' . esc_attr( $icon_class ) . '"></i>'; 112 } 113 break; 114 115 case 'ktstcategories': 116 $terms = get_the_terms( $post_id, 'ktspcategory' ); 117 118 if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) { 119 $term_links = array_map( function ( $term ) { 120 return '<a href="' . esc_url( admin_url( 'edit.php?post_type=ktsprotype&ktspcategory=' . $term->slug ) ) . '">' . esc_html( $term->name ) . '</a>'; 121 }, $terms ); 122 123 // Escape the final HTML output safely 124 echo wp_kses( implode( ', ', $term_links ), array( 125 'a' => array( 126 'href' => array(), 127 ), 128 ) ); 129 } else { 130 esc_html_e( 'No Categories', 'super-testimonial' ); 131 } 132 break; 126 133 127 134 default: … … 169 176 $testimonial_text = get_post_meta($post->ID, 'testimonial_text', true); 170 177 178 // Add nonce field for security 179 wp_nonce_field( 'tps_super_testimonials_meta_save', 'tps_super_testimonials_meta_nonce' ); 180 171 181 ?> 172 182 173 183 <!-- Name --> 174 <p><label for="main_title"><strong><?php esc_html_e('Title:', ' ktsttestimonial'); ?></strong></label></p>184 <p><label for="main_title"><strong><?php esc_html_e('Title:', 'super-testimonial'); ?></strong></label></p> 175 185 176 186 <input type="text" name="main_title" id="main_title" class="regular-text code" value="<?php echo esc_attr( $main_title ); ?>" placeholder="Headline for your testimonial" /> … … 179 189 180 190 <!-- Name --> 181 <p><label for="title"><strong><?php esc_html_e('Full Name:', ' ktsttestimonial'); ?></strong></label></p>191 <p><label for="title"><strong><?php esc_html_e('Full Name:', 'super-testimonial'); ?></strong></label></p> 182 192 183 193 <input type="text" name="post_title" id="title" class="regular-text code" value="<?php echo esc_attr( $post_title ); ?>" placeholder="What is your full name?" /> … … 186 196 187 197 <!-- Position --> 188 <p><label for="position_input"><strong><?php esc_html_e('Position:', ' ktsttestimonial'); ?></strong></label></p>198 <p><label for="position_input"><strong><?php esc_html_e('Position:', 'super-testimonial'); ?></strong></label></p> 189 199 190 200 <input type="text" name="position_input" id="position_input" class="regular-text code" value="<?php echo esc_attr( $position_input ); ?>" placeholder="What is your designation?" /> … … 193 203 194 204 <!-- E-Mail Address --> 195 <p><label for="email_address"><strong><?php esc_html_e('Email Address:', ' ktsttestimonial'); ?></strong></label></p>205 <p><label for="email_address"><strong><?php esc_html_e('Email Address:', 'super-testimonial'); ?></strong></label></p> 196 206 197 207 <input type="email" name="email_address" id="email_address" class="regular-text code" value="<?php echo esc_attr( $email_address ); ?>" placeholder="What is your e-mail address?" /> … … 200 210 201 211 <!-- Company Name --> 202 <p><label for="company_input"><strong><?php esc_html_e('Company Name:', ' ktsttestimonial'); ?></strong></label></p>212 <p><label for="company_input"><strong><?php esc_html_e('Company Name:', 'super-testimonial'); ?></strong></label></p> 203 213 204 214 <input type="text" name="company_input" id="company_input" class="regular-text code" value="<?php echo esc_attr( $company_input ); ?>" placeholder="What is your company name?" /> … … 207 217 208 218 <!-- Company Website --> 209 <p><label for="company_website_input"><strong><?php esc_html_e('Company URL:', ' ktsttestimonial'); ?></strong></label></p>219 <p><label for="company_website_input"><strong><?php esc_html_e('Company URL:', 'super-testimonial'); ?></strong></label></p> 210 220 211 221 <input type="text" name="company_website_input" id="company_website_input" class="regular-text code" value="<?php echo esc_url( $company_website ); ?>" placeholder="What is your company URL?" /> 212 213 <p><span class="description"><?php esc_html_e('Example: (www.example.com)', 'ktsttestimonial'); ?></span></p> 222 <p><span class="description"><?php esc_html_e('Example: (www.example.com)', 'super-testimonial'); ?></span></p> 214 223 215 224 <hr class="horizontalRuler"/> … … 217 226 <!-- Rating --> 218 227 219 <p><label for="company_rating_target_list"><strong><?php esc_html_e('Rating:', ' ktsttestimonial'); ?></strong></label></p>228 <p><label for="company_rating_target_list"><strong><?php esc_html_e('Rating:', 'super-testimonial'); ?></strong></label></p> 220 229 221 230 <div class="tp-star-rating"> … … 232 241 233 242 <!-- Testimonial Text --> 234 235 <p><label for="testimonial_text_input"><strong><?php esc_html_e('Testimonial Text:', 'ktsttestimonial'); ?></strong></label></p> 243 <p><label for="testimonial_text_input"><strong><?php esc_html_e('Testimonial Text:', 'super-testimonial'); ?></strong></label></p> 236 244 237 245 <textarea type="text" name="testimonial_text_input" id="testimonial_text_input" class="regular-text code" rows="5" cols="100" placeholder="What do you think about us?"><?php echo esc_textarea( $testimonial_text ); ?></textarea> … … 246 254 function tps_super_testimonials_save_meta_box($post_id){ 247 255 248 // If this is an autosave, our form has not been submitted, so we don't want to do anything. 249 if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) { 256 // Verify nonce 257 if ( ! isset( $_POST['tps_super_testimonials_meta_nonce'] ) || 258 ! wp_verify_nonce( $_POST['tps_super_testimonials_meta_nonce'], 'tps_super_testimonials_meta_save' ) ) { 259 return; 260 } 261 262 // Doing autosave then return. 263 if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { 250 264 return; 251 265 } … … 321 335 global $post, $post_id; 322 336 $messages['ktsprotype'] = array( 323 1 => __('Super Testimonial updated.', ' ktsttestimonial'),337 1 => __('Super Testimonial updated.', 'super-testimonial'), 324 338 2 => $messages['post'][2], 325 339 3 => $messages['post'][3], 326 4 => __('Super Testimonial updated.', ' ktsttestimonial'),327 5 => isset($_GET['revision']) ? sprintf( __('Testimonial restored to revision from %s', ' ktsttestimonial'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,328 6 => __('Super Testimonial published.', ' ktsttestimonial'),329 7 => __('Super Testimonial saved.', ' ktsttestimonial'),330 8 => __('Super Testimonial submitted.', ' ktsttestimonial'),331 9 => sprintf( __('Super Testimonial scheduled for: <strong>%1$s</strong>.', ' ktsttestimonial'), date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) )),332 10 => __('Super Testimonial draft updated.', ' ktsttestimonial'),340 4 => __('Super Testimonial updated.', 'super-testimonial'), 341 5 => isset($_GET['revision']) ? sprintf( __('Testimonial restored to revision from %s', 'super-testimonial'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, 342 6 => __('Super Testimonial published.', 'super-testimonial'), 343 7 => __('Super Testimonial saved.', 'super-testimonial'), 344 8 => __('Super Testimonial submitted.', 'super-testimonial'), 345 9 => sprintf( __('Super Testimonial scheduled for: <strong>%1$s</strong>.', 'super-testimonial'), date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) )), 346 10 => __('Super Testimonial draft updated.', 'super-testimonial'), 333 347 ); 334 348 return $messages; … … 381 395 esc_html__( 382 396 'Hey! You\'ve been using this plugin for more than 7 days. May we ask you to give it a %s on WordPress?', 383 ' ktsttestimonial'397 'super-testimonial' 384 398 ), 385 '<strong>' . esc_html__('5-star rating', ' ktsttestimonial') . '</strong>'399 '<strong>' . esc_html__('5-star rating', 'super-testimonial') . '</strong>' 386 400 ); 387 401 ?> 388 <a href="https://wordpress.org/support/plugin/super-testimonial/reviews/#new-post" target="_blank"><?php echo esc_html__('Click here to leave a review', ' ktsttestimonial'); ?></a>. <?php echo esc_html__('Thank you!', 'ktsttestimonial'); ?>402 <a href="https://wordpress.org/support/plugin/super-testimonial/reviews/#new-post" target="_blank"><?php echo esc_html__('Click here to leave a review', 'super-testimonial'); ?></a>. <?php echo esc_html__('Thank you!', 'super-testimonial'); ?> 389 403 </p> 390 404 <p> 391 <button class="button-primary" id="tps-super-testimonials-ok-you-deserved-it"><?php echo esc_html__('Ok, you deserved it', ' ktsttestimonial'); ?></button>392 <button class="button-secondary" id="tps-super-testimonials-remind-later"><?php echo esc_html__('Remind me later', ' ktsttestimonial'); ?></button>393 <button class="button-secondary" id="tps-super-testimonials-dismiss-forever"><?php echo esc_html__('Dismiss forever', ' ktsttestimonial'); ?></button>405 <button class="button-primary" id="tps-super-testimonials-ok-you-deserved-it"><?php echo esc_html__('Ok, you deserved it', 'super-testimonial'); ?></button> 406 <button class="button-secondary" id="tps-super-testimonials-remind-later"><?php echo esc_html__('Remind me later', 'super-testimonial'); ?></button> 407 <button class="button-secondary" id="tps-super-testimonials-dismiss-forever"><?php echo esc_html__('Dismiss forever', 'super-testimonial'); ?></button> 394 408 </p> 395 409 </div> -
super-testimonial/trunk/includes/admin/frontend-form-post.php
r3328073 r3424470 9 9 // Set UI labels for Custom Post Type 10 10 $labels = array( 11 'name' => _x( 'Testimonials', 'Post Type General Name', ' ktsttestimonial' ),12 'singular_name' => _x( 'Testimonial', 'Post Type Singular Name', ' ktsttestimonial' ),13 'menu_name' => __( 'Testimonials', ' ktsttestimonial' ),14 'parent_item_colon' => __( 'Parent Form', ' ktsttestimonial' ),15 'all_items' => __( 'Testimonial Form', ' ktsttestimonial' ),16 'view_item' => __( 'View Form', ' ktsttestimonial' ),17 'edit_item' => __( 'Edit Form', ' ktsttestimonial' ),18 'update_item' => __( 'Update Form', ' ktsttestimonial' ),19 'search_items' => __( 'Search Form', ' ktsttestimonial' ),20 'not_found' => __( 'Form Not Found', ' ktsttestimonial' ),21 'not_found_in_trash' => __( 'Form Not Found in Trash', ' ktsttestimonial' ),11 'name' => _x( 'Testimonials', 'Post Type General Name', 'super-testimonial' ), 12 'singular_name' => _x( 'Testimonial', 'Post Type Singular Name', 'super-testimonial' ), 13 'menu_name' => __( 'Testimonials', 'super-testimonial' ), 14 'parent_item_colon' => __( 'Parent Form', 'super-testimonial' ), 15 'all_items' => __( 'Testimonial Form', 'super-testimonial' ), 16 'view_item' => __( 'View Form', 'super-testimonial' ), 17 'edit_item' => __( 'Edit Form', 'super-testimonial' ), 18 'update_item' => __( 'Update Form', 'super-testimonial' ), 19 'search_items' => __( 'Search Form', 'super-testimonial' ), 20 'not_found' => __( 'Form Not Found', 'super-testimonial' ), 21 'not_found_in_trash' => __( 'Form Not Found in Trash', 'super-testimonial' ), 22 22 ); 23 23 … … 31 31 // Hide "Add New" if a form exists 32 32 if (empty($existing_forms)) { 33 $labels['add_new_item'] = __( 'Testimonial Form', ' ktsttestimonial' );34 $labels['add_new'] = __( 'Add New', ' ktsttestimonial' );33 $labels['add_new_item'] = __( 'Testimonial Form', 'super-testimonial' ); 34 $labels['add_new'] = __( 'Add New', 'super-testimonial' ); 35 35 } 36 36 37 37 $args = array( 38 'label' => __( 'Testimonial Form', ' ktsttestimonial' ),39 'description' => __( 'Form news and reviews', ' ktsttestimonial' ),38 'label' => __( 'Testimonial Form', 'super-testimonial' ), 39 'description' => __( 'Form news and reviews', 'super-testimonial' ), 40 40 'labels' => $labels, 41 41 'supports' => array( 'title' ), // Only title is needed … … 109 109 return array( 110 110 'cb' => '<input type="checkbox" />', 111 'title' => __( 'Form Title', ' ktsttestimonial' ),112 'formshortcode' => __( 'Shortcode', ' ktsttestimonial' ),113 'date' => __( 'Date', ' ktsttestimonial' ),111 'title' => __( 'Form Title', 'super-testimonial' ), 112 'formshortcode' => __( 'Shortcode', 'super-testimonial' ), 113 'date' => __( 'Date', 'super-testimonial' ), 114 114 ); 115 115 } … … 129 129 add_meta_box( 130 130 'tps_testimonial_form_settings', 131 __('Testimonial Form Settings', ' ktsttestimonial'),131 __('Testimonial Form Settings', 'super-testimonial'), 132 132 'tps_render_testimonial_form_metabox', 133 133 'tp_testimonial_form', … … 260 260 $secret_key = get_post_meta($post->ID, 'custom_recaptcha_secret_key', true) ?: ''; 261 261 $nav_value = get_post_meta($post->ID, 'nav_value', true ); 262 262 if ( empty( $nav_value ) ) { 263 $nav_value = 1; 264 } 263 265 $fields = tp_testimonial_form_settings(); 264 266 $settings = get_post_meta($post->ID, 'tp_testimonial_form_settings', true); … … 304 306 <!-- <div class="wrap"> --> 305 307 <ul class="tab-nav"> 306 <li nav="1" class="nav1 <?php if ( $nav_value == 1 ) { echo "active"; } ?>"><?php esc_html_e( 'FORM EDITOR',' ktsttestimonial' ); ?></li>307 <li nav="2" class="nav2 <?php if ( $nav_value == 2 ) { echo "active"; } ?>"><?php esc_html_e( 'FORM STYLE',' ktsttestimonial' ); ?></li>308 <li nav="3" class="nav3 <?php if ( $nav_value == 3 ) { echo "active"; } ?>"><?php esc_html_e( 'FORM SETTINGS',' ktsttestimonial' ); ?></li>309 <li nav="4" class="nav4 <?php if ( $nav_value == 4 ) { echo "active"; } ?>"><?php esc_html_e( 'LABELS & MESSAGES',' ktsttestimonial' ); ?></li>310 <li nav="5" class="nav5 <?php if ( $nav_value == 5 ) { echo "active"; } ?>"><?php esc_html_e( 'NOTIFICATIONS',' ktsttestimonial' ); ?></li>308 <li nav="1" class="nav1 <?php if ( $nav_value == 1 ) { echo "active"; } ?>"><?php esc_html_e( 'FORM EDITOR','super-testimonial' ); ?></li> 309 <li nav="2" class="nav2 <?php if ( $nav_value == 2 ) { echo "active"; } ?>"><?php esc_html_e( 'FORM STYLE','super-testimonial' ); ?></li> 310 <li nav="3" class="nav3 <?php if ( $nav_value == 3 ) { echo "active"; } ?>"><?php esc_html_e( 'FORM SETTINGS','super-testimonial' ); ?></li> 311 <li nav="4" class="nav4 <?php if ( $nav_value == 4 ) { echo "active"; } ?>"><?php esc_html_e( 'LABELS & MESSAGES','super-testimonial' ); ?></li> 312 <li nav="5" class="nav5 <?php if ( $nav_value == 5 ) { echo "active"; } ?>"><?php esc_html_e( 'NOTIFICATIONS','super-testimonial' ); ?></li> 311 313 </ul> <!-- tab-nav end --> 312 314 … … 321 323 <li style="<?php if ( $nav_value == 1 ) { echo "display: block;"; } else { echo "display: none;"; } ?>" class="box1 tab-box <?php if ( $nav_value == 1 ) { echo "active"; } ?>"> 322 324 <div class="option-box"> 323 <p class="option-title"><?php esc_html_e( 'Form Editor',' ktsttestimonial' ); ?><a href="https://themepoints.com/testimonials" target="_blank"> - <?php _e( 'Unlock all upgrades with Pro!', 'ktsttestimonial' ); ?></a></p>325 <p class="option-title"><?php esc_html_e( 'Form Editor','super-testimonial' ); ?><a href="https://themepoints.com/testimonials" target="_blank"> - <?php esc_html_e( 'Unlock all upgrades with Pro!', 'super-testimonial' ); ?></a></p> 324 326 325 327 <ul id="testimonial-form-fields"> … … 335 337 <div class="field-header"><span class="dashicons dashicons-fullscreen-alt"></span><?php echo esc_html($label); ?></div> 336 338 <div class="field-lables"> 337 <?php esc_html_e('Label', ' ktsttestimonial'); ?>: <input type="text" name="tp_testimonial_settings[<?php echo esc_attr($key); ?>][label]" value="<?php echo esc_attr($label); ?>">339 <?php esc_html_e('Label', 'super-testimonial'); ?>: <input type="text" name="tp_testimonial_settings[<?php echo esc_attr($key); ?>][label]" value="<?php echo esc_attr($label); ?>"> 338 340 </div> 339 341 … … 343 345 ?> 344 346 <div class="field-header-fields"> 345 <?php esc_html_e('Placeholder', ' ktsttestimonial'); ?>: <input type="text" name="tp_testimonial_settings[<?php echo esc_attr($key); ?>][placeholder]" value="<?php echo esc_attr($placeholder); ?>">347 <?php esc_html_e('Placeholder', 'super-testimonial'); ?>: <input type="text" name="tp_testimonial_settings[<?php echo esc_attr($key); ?>][placeholder]" value="<?php echo esc_attr($placeholder); ?>"> 346 348 </div> 347 349 <?php } ?> 348 350 349 351 <div class="field-header-required"> 350 <input type="checkbox" name="tp_testimonial_settings[<?php echo esc_attr($key); ?>][required]" value="1" <?php checked($required, true); ?>> <?php esc_html_e('Required', ' ktsttestimonial'); ?>352 <input type="checkbox" name="tp_testimonial_settings[<?php echo esc_attr($key); ?>][required]" value="1" <?php checked($required, true); ?>> <?php esc_html_e('Required', 'super-testimonial'); ?> 351 353 </div> 352 354 353 355 <div class="field-header-enable"> 354 <input type="checkbox" name="tp_testimonial_settings[<?php echo esc_attr($key); ?>][enabled]" value="1" <?php checked($enabled, true); ?>> <?php esc_html_e('Enable', ' ktsttestimonial'); ?>356 <input type="checkbox" name="tp_testimonial_settings[<?php echo esc_attr($key); ?>][enabled]" value="1" <?php checked($enabled, true); ?>> <?php esc_html_e('Enable', 'super-testimonial'); ?> 355 357 </div> 356 358 … … 363 365 <tr valign="top"> 364 366 <th scope="row"> 365 <label for="tp_form_submitbtn"><?php esc_html_e( 'Submit Testimonial', ' ktsttestimonial' ); ?></label>366 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set Testimonial Button Text.', ' ktsttestimonial'); ?></span>367 <label for="tp_form_submitbtn"><?php esc_html_e( 'Submit Testimonial', 'super-testimonial' ); ?></label> 368 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set Testimonial Button Text.', 'super-testimonial'); ?></span> 367 369 </th> 368 370 <td style="vertical-align: middle;"> … … 378 380 <div class="wrap"> 379 381 <div class="option-box"> 380 <p class="option-title"><?php esc_html_e( 'Form Style',' ktsttestimonial' ); ?> <a href="https://themepoints.com/testimonials" target="_blank"> - <?php _e( 'Unlock all upgrades with Pro!', 'ktsttestimonial' ); ?></a></p>382 <p class="option-title"><?php esc_html_e( 'Form Style','super-testimonial' ); ?> <a href="https://themepoints.com/testimonials" target="_blank"> - <?php esc_html_e( 'Unlock all upgrades with Pro!', 'super-testimonial' ); ?></a></p> 381 383 <table class="form-table"> 382 384 383 385 <tr valign="top"> 384 386 <th scope="row"> 385 <label for="tp_form_width"><?php esc_html_e( 'Form Width', ' ktsttestimonial' ); ?></label>386 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set a custom width for the testimonial form.', ' ktsttestimonial'); ?></span>387 </th> 388 <td style="vertical-align: middle;"> 389 <input type="number" name="tp_form_width" id="tp_form_width" class="timezone_string" required value="<?php if($tp_form_width !=''){echo $tp_form_width; }else{ echo '650';} ?>"><?php esc_html_e( 'Px', 'ktsttestimonial' ); ?><br />387 <label for="tp_form_width"><?php esc_html_e( 'Form Width', 'super-testimonial' ); ?></label> 388 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set a custom width for the testimonial form.', 'super-testimonial'); ?></span> 389 </th> 390 <td style="vertical-align: middle;"> 391 <input type="number" name="tp_form_width" id="tp_form_width" class="timezone_string" required value="<?php if($tp_form_width !=''){echo esc_attr($tp_form_width); }else{ echo '650';} ?>"><?php esc_html_e( 'Px', 'super-testimonial' ); ?><br /> 390 392 </td> 391 393 </tr><!-- End tp_form_width --> … … 393 395 <tr valign="top"> 394 396 <th scope="row"> 395 <label for="tp_fptop_width"><?php esc_html_e( 'Form Padding', ' ktsttestimonial' ); ?></label>396 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set padding for the testimonial form.', ' ktsttestimonial' ); ?></span>397 <label for="tp_fptop_width"><?php esc_html_e( 'Form Padding', 'super-testimonial' ); ?></label> 398 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set padding for the testimonial form.', 'super-testimonial' ); ?></span> 397 399 </th> 398 400 <td style="vertical-align: middle;"> 399 401 <div style="display: flex; gap: 20px; align-items: center;"> 400 402 <div style="display: grid;"> 401 <label for="tp_fptop_width"><?php esc_html_e('Top (px)', ' ktsttestimonial'); ?></label>403 <label for="tp_fptop_width"><?php esc_html_e('Top (px)', 'super-testimonial'); ?></label> 402 404 <input type="number" id="tp_fptop_width" name="tp_fptop_width" value="<?php echo esc_attr($tp_fptop_width); ?>" style="width: 60px;"> 403 405 </div> 404 406 <div style="display: grid;"> 405 <label for="tp_fpright_width"><?php esc_html_e('Right (px)', ' ktsttestimonial'); ?></label>407 <label for="tp_fpright_width"><?php esc_html_e('Right (px)', 'super-testimonial'); ?></label> 406 408 <input type="number" id="tp_fpright_width" name="tp_fpright_width" value="<?php echo esc_attr($tp_fpright_width); ?>" style="width: 60px;"> 407 409 </div> 408 410 <div style="display: grid;"> 409 <label for="tp_fpbottom_width"><?php esc_html_e('Bottom (px)', ' ktsttestimonial'); ?></label>411 <label for="tp_fpbottom_width"><?php esc_html_e('Bottom (px)', 'super-testimonial'); ?></label> 410 412 <input type="number" id="tp_fpbottom_width" name="tp_fpbottom_width" value="<?php echo esc_attr($tp_fpbottom_width); ?>" style="width: 60px;"> 411 413 </div> 412 414 <div style="display: grid;"> 413 <label for="tp_fpleft_width"><?php esc_html_e('Left (px)', ' ktsttestimonial'); ?></label>415 <label for="tp_fpleft_width"><?php esc_html_e('Left (px)', 'super-testimonial'); ?></label> 414 416 <input type="number" id="tp_fpleft_width" name="tp_fpleft_width" value="<?php echo esc_attr($tp_fpleft_width); ?>" style="width: 60px;"> 415 417 </div> … … 421 423 <tr valign="top"> 422 424 <th scope="row"> 423 <label for="tp_form_bgcolor"><?php esc_html_e( 'Form Background', ' ktsttestimonial' ); ?></label>424 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for the testimonial form.', ' ktsttestimonial' ); ?></span>425 <label for="tp_form_bgcolor"><?php esc_html_e( 'Form Background', 'super-testimonial' ); ?></label> 426 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for the testimonial form.', 'super-testimonial' ); ?></span> 425 427 </th> 426 428 <td style="vertical-align: middle;"> … … 432 434 <tr valign="top"> 433 435 <th scope="row"> 434 <label for="tp_border_width"><?php esc_html_e( 'Form Border', ' ktsttestimonial' ); ?></label>435 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set border for the testimonial form.', ' ktsttestimonial' ); ?></span>436 <label for="tp_border_width"><?php esc_html_e( 'Form Border', 'super-testimonial' ); ?></label> 437 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set border for the testimonial form.', 'super-testimonial' ); ?></span> 436 438 </th> 437 439 <td style="vertical-align: middle;"> 438 440 <div style="display: flex; gap: 20px; align-items: center;"> 439 441 <div style="display: grid;"> 440 <label for="tp_border_width"><?php esc_html_e('Width (px)', ' ktsttestimonial'); ?></label>441 <input type="number" name="tp_border_width" id="tp_border_width" style="width: 60px;" value="<?php if ( $tp_border_width !='' ) { echo $tp_border_width; } else { echo '1'; } ?>">442 <label for="tp_border_width"><?php esc_html_e('Width (px)', 'super-testimonial'); ?></label> 443 <input type="number" name="tp_border_width" id="tp_border_width" style="width: 60px;" value="<?php if ( $tp_border_width !='' ) { echo esc_attr($tp_border_width); } else { echo '1'; } ?>"> 442 444 </div> 443 445 <div style="display: grid;"> 444 <label for="tp_border_style"><?php esc_html_e('Style', ' ktsttestimonial'); ?></label>446 <label for="tp_border_style"><?php esc_html_e('Style', 'super-testimonial'); ?></label> 445 447 <select id="tp_border_style" name="tp_border_style"> 446 <option value="solid" <?php selected($tp_border_style, 'solid'); ?>><?php esc_html_e( 'Solid', ' ktsttestimonial' ); ?></option>447 <option value="dashed" <?php selected($tp_border_style, 'dashed'); ?>><?php esc_html_e( 'Dashed', ' ktsttestimonial' ); ?></option>448 <option value="dotted" <?php selected($tp_border_style, 'dotted'); ?>><?php esc_html_e( 'Dotted', ' ktsttestimonial' ); ?></option>448 <option value="solid" <?php selected($tp_border_style, 'solid'); ?>><?php esc_html_e( 'Solid', 'super-testimonial' ); ?></option> 449 <option value="dashed" <?php selected($tp_border_style, 'dashed'); ?>><?php esc_html_e( 'Dashed', 'super-testimonial' ); ?></option> 450 <option value="dotted" <?php selected($tp_border_style, 'dotted'); ?>><?php esc_html_e( 'Dotted', 'super-testimonial' ); ?></option> 449 451 </select> 450 452 </div> 451 453 <div style="display: grid;"> 452 <label for="tp_border_color"><?php esc_html_e('Color', ' ktsttestimonial'); ?></label>454 <label for="tp_border_color"><?php esc_html_e('Color', 'super-testimonial'); ?></label> 453 455 <input type="color" id="tp_border_color" name="tp_border_color" value="<?php echo esc_attr($tp_border_color); ?>"> 454 456 </div> 455 457 <div style="display: grid;"> 456 <label for="tp_border_radius"><?php esc_html_e('Radius (px)', ' ktsttestimonial'); ?></label>457 <input type="number" name="tp_border_radius" id="tp_border_radius" style="width: 60px;" value="<?php if ( $tp_border_radius !='' ) { echo $tp_border_radius; } else { echo '6'; } ?>">458 <label for="tp_border_radius"><?php esc_html_e('Radius (px)', 'super-testimonial'); ?></label> 459 <input type="number" name="tp_border_radius" id="tp_border_radius" style="width: 60px;" value="<?php if ( $tp_border_radius !='' ) { echo esc_attr($tp_border_radius); } else { echo '6'; } ?>"> 458 460 </div> 459 461 </div> … … 464 466 <tr valign="top"> 465 467 <th scope="row"> 466 <label for="tp_form_label_color"><?php esc_html_e( 'Input Label Color', ' ktsttestimonial' ); ?></label>467 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for the testimonial form label.', ' ktsttestimonial' ); ?></span>468 <label for="tp_form_label_color"><?php esc_html_e( 'Input Label Color', 'super-testimonial' ); ?></label> 469 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for the testimonial form label.', 'super-testimonial' ); ?></span> 468 470 </th> 469 471 <td style="vertical-align: middle;"> … … 475 477 <tr valign="top"> 476 478 <th scope="row"> 477 <label for="tp_label_width"><?php esc_html_e( 'Input Field ', ' ktsttestimonial' ); ?></label>478 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set input field style for the testimonial form.', ' ktsttestimonial' ); ?></span>479 <label for="tp_label_width"><?php esc_html_e( 'Input Field ', 'super-testimonial' ); ?></label> 480 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set input field style for the testimonial form.', 'super-testimonial' ); ?></span> 479 481 </th> 480 482 <td style="vertical-align: middle;"> 481 483 <div style="display: flex; gap: 20px; align-items: center;"> 482 484 <div style="display: grid;"> 483 <label for="tp_label_width"><?php esc_html_e('Width (px)', ' ktsttestimonial'); ?></label>485 <label for="tp_label_width"><?php esc_html_e('Width (px)', 'super-testimonial'); ?></label> 484 486 <input type="number" id="tp_label_width" name="tp_label_width" value="<?php echo esc_attr($tp_label_width); ?>" style="width: 60px;"> 485 487 </div> 486 488 <div style="display: grid;"> 487 <label for="tp_label_style"><?php esc_html_e('Style', ' ktsttestimonial'); ?></label>489 <label for="tp_label_style"><?php esc_html_e('Style', 'super-testimonial'); ?></label> 488 490 <select id="tp_label_style" name="tp_label_style"> 489 <option value="solid" <?php selected($tp_label_style, 'solid'); ?>><?php esc_html_e( 'Solid', ' ktsttestimonial' ); ?></option>490 <option value="dashed" <?php selected($tp_label_style, 'dashed'); ?>><?php esc_html_e( 'Dashed', ' ktsttestimonial' ); ?></option>491 <option value="dotted" <?php selected($tp_label_style, 'dotted'); ?>><?php esc_html_e( 'Dotted', ' ktsttestimonial' ); ?></option>491 <option value="solid" <?php selected($tp_label_style, 'solid'); ?>><?php esc_html_e( 'Solid', 'super-testimonial' ); ?></option> 492 <option value="dashed" <?php selected($tp_label_style, 'dashed'); ?>><?php esc_html_e( 'Dashed', 'super-testimonial' ); ?></option> 493 <option value="dotted" <?php selected($tp_label_style, 'dotted'); ?>><?php esc_html_e( 'Dotted', 'super-testimonial' ); ?></option> 492 494 </select> 493 495 </div> 494 496 <div style="display: grid;"> 495 <label for="tp_lable_border_color"><?php esc_html_e('Color', ' ktsttestimonial'); ?></label>497 <label for="tp_lable_border_color"><?php esc_html_e('Color', 'super-testimonial'); ?></label> 496 498 <input type="color" id="tp_lable_border_color" name="tp_lable_border_color" value="<?php echo esc_attr($tp_lable_border_color); ?>"> 497 499 </div> 498 500 <div style="display: grid;"> 499 <label for="tp_lable_bg_color"><?php esc_html_e('BG Color', ' ktsttestimonial'); ?></label>501 <label for="tp_lable_bg_color"><?php esc_html_e('BG Color', 'super-testimonial'); ?></label> 500 502 <input type="color" id="tp_lable_bg_color" name="tp_lable_bg_color" value="<?php echo esc_attr($tp_lable_bg_color); ?>"> 501 503 </div> 502 504 <div style="display: grid;"> 503 <label for="tp_label_border_radius"><?php esc_html_e('Radius (px)', ' ktsttestimonial'); ?></label>504 <input type="number" name="tp_label_border_radius" id="tp_label_border_radius" style="width: 60px;" value="<?php if ( $tp_label_border_radius !='' ) { echo $tp_label_border_radius; } else { echo '6'; } ?>">505 <label for="tp_label_border_radius"><?php esc_html_e('Radius (px)', 'super-testimonial'); ?></label> 506 <input type="number" name="tp_label_border_radius" id="tp_label_border_radius" style="width: 60px;" value="<?php if ( $tp_label_border_radius !='' ) { echo esc_attr($tp_label_border_radius); } else { echo '6'; } ?>"> 505 507 </div> 506 508 </div> … … 511 513 <tr valign="top"> 512 514 <th scope="row"> 513 <label for="tp_form_placeholder_color"><?php esc_html_e( 'Input Placeholder Color', ' ktsttestimonial' ); ?></label>514 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial Input Placeholder.', ' ktsttestimonial' ); ?></span>515 <label for="tp_form_placeholder_color"><?php esc_html_e( 'Input Placeholder Color', 'super-testimonial' ); ?></label> 516 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial Input Placeholder.', 'super-testimonial' ); ?></span> 515 517 </th> 516 518 <td style="vertical-align: middle;"> … … 522 524 <tr valign="top"> 523 525 <th scope="row"> 524 <label for="tp_form_rating_color"><?php esc_html_e( 'Rating Color', ' ktsttestimonial' ); ?></label>525 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for the testimonial form rating.', ' ktsttestimonial' ); ?></span>526 <label for="tp_form_rating_color"><?php esc_html_e( 'Rating Color', 'super-testimonial' ); ?></label> 527 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for the testimonial form rating.', 'super-testimonial' ); ?></span> 526 528 </th> 527 529 <td style="vertical-align: middle;"> … … 533 535 <tr valign="top"> 534 536 <th scope="row"> 535 <label for="tp_form_rating_hover_color"><?php _e( 'Rating Hover Color', 'ktsttestimonial' ); ?></label>536 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial form rating hover.', ' ktsttestimonial' ); ?></span>537 <label for="tp_form_rating_hover_color"><?php esc_html_e( 'Rating Hover Color', 'super-testimonial' ); ?></label> 538 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial form rating hover.', 'super-testimonial' ); ?></span> 537 539 </th> 538 540 <td style="vertical-align: middle;"> … … 544 546 <tr valign="top"> 545 547 <th scope="row"> 546 <label for="tp_rating_style"><?php _e( 'Rating Style', 'ktsttestimonial' ); ?></label>547 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set testimonial form rating style.', ' ktsttestimonial' ); ?></span>548 <label for="tp_rating_style"><?php esc_html_e( 'Rating Style', 'super-testimonial' ); ?></label> 549 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set testimonial form rating style.', 'super-testimonial' ); ?></span> 548 550 </th> 549 551 <td style="vertical-align: middle;"> … … 580 582 <tr valign="top"> 581 583 <th scope="row"> 582 <label for="tp_form_btn_color"><?php esc_html_e( 'Submit Button Color', ' ktsttestimonial' ); ?></label>583 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial submit button.', ' ktsttestimonial' ); ?></span>584 <label for="tp_form_btn_color"><?php esc_html_e( 'Submit Button Color', 'super-testimonial' ); ?></label> 585 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial submit button.', 'super-testimonial' ); ?></span> 584 586 </th> 585 587 <td style="vertical-align: middle;"> … … 591 593 <tr valign="top"> 592 594 <th scope="row"> 593 <label for="tp_form_btn_hover_color"><?php esc_html_e( 'Submit Button Hover Color', ' ktsttestimonial' ); ?></label>594 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial submit button hover color.', ' ktsttestimonial' ); ?></span>595 <label for="tp_form_btn_hover_color"><?php esc_html_e( 'Submit Button Hover Color', 'super-testimonial' ); ?></label> 596 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial submit button hover color.', 'super-testimonial' ); ?></span> 595 597 </th> 596 598 <td style="vertical-align: middle;"> … … 602 604 <tr valign="top"> 603 605 <th scope="row"> 604 <label for="tp_form_btn_bg_color"><?php esc_html_e( 'Submit Button BG Color', ' ktsttestimonial' ); ?></label>605 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial submit button background color.', ' ktsttestimonial' ); ?></span>606 <label for="tp_form_btn_bg_color"><?php esc_html_e( 'Submit Button BG Color', 'super-testimonial' ); ?></label> 607 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial submit button background color.', 'super-testimonial' ); ?></span> 606 608 </th> 607 609 <td style="vertical-align: middle;"> … … 613 615 <tr valign="top"> 614 616 <th scope="row"> 615 <label for="tp_form_btn_bg_hover_color"><?php esc_html_e( 'Submit Button Hover Bg Color', ' ktsttestimonial' ); ?></label>616 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial submit button hover bg color.', ' ktsttestimonial' ); ?></span>617 <label for="tp_form_btn_bg_hover_color"><?php esc_html_e( 'Submit Button Hover Bg Color', 'super-testimonial' ); ?></label> 618 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial submit button hover bg color.', 'super-testimonial' ); ?></span> 617 619 </th> 618 620 <td style="vertical-align: middle;"> … … 631 633 <div class="wrap"> 632 634 <div class="option-box"> 633 <p class="option-title"><?php esc_html_e( 'General Settings',' ktsttestimonial' ); ?> <a href="https://themepoints.com/testimonials" target="_blank"> - <?php _e( 'Unlock all upgrades with Pro!', 'ktsttestimonial' ); ?></a></p>635 <p class="option-title"><?php esc_html_e( 'General Settings','super-testimonial' ); ?> <a href="https://themepoints.com/testimonials" target="_blank"> - <?php esc_html_e( 'Unlock all upgrades with Pro!', 'super-testimonial' ); ?></a></p> 634 636 <table class="form-table"> 635 637 636 638 <tr> 637 639 <th> 638 <label for="custom_post_status"><?php esc_html_e('Post Status', ' ktsttestimonial'); ?></label>640 <label for="custom_post_status"><?php esc_html_e('Post Status', 'super-testimonial'); ?></label> 639 641 </th> 640 642 <td> 641 643 <select name="custom_post_status" id="custom_post_status"> 642 <option value="pending" <?php selected($post_status, 'pending'); ?>><?php esc_html_e('Pending', ' ktsttestimonial'); ?></option>643 <option value="publish" <?php selected($post_status, 'publish'); ?>><?php esc_html_e('Publish', ' ktsttestimonial'); ?></option>644 <option value="draft" <?php selected($post_status, 'draft'); ?>><?php esc_html_e('Draft', ' ktsttestimonial'); ?></option>644 <option value="pending" <?php selected($post_status, 'pending'); ?>><?php esc_html_e('Pending', 'super-testimonial'); ?></option> 645 <option value="publish" <?php selected($post_status, 'publish'); ?>><?php esc_html_e('Publish', 'super-testimonial'); ?></option> 646 <option value="draft" <?php selected($post_status, 'draft'); ?>><?php esc_html_e('Draft', 'super-testimonial'); ?></option> 645 647 </select> 646 648 </td> … … 649 651 <tr> 650 652 <th> 651 <label for="custom_header_status"><?php esc_html_e('reCAPTCHA', ' ktsttestimonial'); ?></label>653 <label for="custom_header_status"><?php esc_html_e('reCAPTCHA', 'super-testimonial'); ?></label> 652 654 </th> 653 655 <td> 654 <p><?php esc_html_e('reCAPTCHA is a free aniti-spam service provided by Google designed to protect websites from spam and abuse.', ' ktsttestimonial'); ?></p>656 <p><?php esc_html_e('reCAPTCHA is a free aniti-spam service provided by Google designed to protect websites from spam and abuse.', 'super-testimonial'); ?></p> 655 657 </td> 656 658 </tr> … … 658 660 <tr> 659 661 <th> 660 <label for="enable_recaptcha"><?php esc_html_e('Enable reCAPTCHA', ' ktsttestimonial'); ?></label>662 <label for="enable_recaptcha"><?php esc_html_e('Enable reCAPTCHA', 'super-testimonial'); ?></label> 661 663 </th> 662 664 <td> 663 665 <label for="enable_recaptcha"> 664 666 <input type="checkbox" name="enable_recaptcha" id="enable_recaptcha" value="1" <?php checked($enable_recaptcha, '1'); ?>> 665 <?php esc_html_e('Enable reCAPTCHA', ' ktsttestimonial'); ?>667 <?php esc_html_e('Enable reCAPTCHA', 'super-testimonial'); ?> 666 668 </label> 667 669 </td> … … 670 672 <tr> 671 673 <th> 672 <label for="custom_recaptcha_type"><?php esc_html_e('reCAPTCHA Type', ' ktsttestimonial'); ?></label>674 <label for="custom_recaptcha_type"><?php esc_html_e('reCAPTCHA Type', 'super-testimonial'); ?></label> 673 675 </th> 674 676 <td> 675 677 <select name="custom_recaptcha_type" id="custom_recaptcha_type"> 676 <option value="none" <?php selected($recaptcha_type, 'none'); ?>><?php esc_html_e('None', ' ktsttestimonial'); ?></option>677 <option value="google" <?php selected($recaptcha_type, 'google'); ?>><?php esc_html_e('Google reCAPTCHA', ' ktsttestimonial'); ?></option>678 <option value="none" <?php selected($recaptcha_type, 'none'); ?>><?php esc_html_e('None', 'super-testimonial'); ?></option> 679 <option value="google" <?php selected($recaptcha_type, 'google'); ?>><?php esc_html_e('Google reCAPTCHA', 'super-testimonial'); ?></option> 678 680 </select> 679 681 </td> … … 682 684 <tr class="recaptcha-settings" style="display: <?php echo ($recaptcha_type === 'google') ? 'table-row' : 'none'; ?>;"> 683 685 <th> 684 <label><?php esc_html_e('reCAPTCHA Version', ' ktsttestimonial'); ?></label>686 <label><?php esc_html_e('reCAPTCHA Version', 'super-testimonial'); ?></label> 685 687 </th> 686 688 <td> 687 689 <label> 688 690 <input type="radio" name="custom_recaptcha_version" value="v2" <?php checked($recaptcha_version, 'v2'); ?>> 689 <?php esc_html_e('v2', ' ktsttestimonial'); ?>691 <?php esc_html_e('v2', 'super-testimonial'); ?> 690 692 </label> 691 693 <label> 692 694 <input type="radio" name="custom_recaptcha_version" value="v3" <?php checked($recaptcha_version, 'v3'); ?>> 693 <?php esc_html_e('v3', ' ktsttestimonial'); ?>695 <?php esc_html_e('v3', 'super-testimonial'); ?> 694 696 </label> 695 697 </td> … … 698 700 <tr class="recaptcha-settings" style="display: <?php echo ($recaptcha_type === 'google') ? 'table-row' : 'none'; ?>;"> 699 701 <th> 700 <label for="custom_recaptcha_site_key"><?php esc_html_e('Site Key', ' ktsttestimonial'); ?></label>702 <label for="custom_recaptcha_site_key"><?php esc_html_e('Site Key', 'super-testimonial'); ?></label> 701 703 </th> 702 704 <td> … … 707 709 <tr class="recaptcha-settings" style="display: <?php echo ($recaptcha_type === 'google') ? 'table-row' : 'none'; ?>;"> 708 710 <th> 709 <label for="custom_recaptcha_secret_key"><?php esc_html_e('Secret Key', ' ktsttestimonial'); ?></label>711 <label for="custom_recaptcha_secret_key"><?php esc_html_e('Secret Key', 'super-testimonial'); ?></label> 710 712 </th> 711 713 <td> … … 734 736 <div class="wrap"> 735 737 <div class="option-box"> 736 <p class="option-title"><?php esc_html_e( 'Labels & Messages',' ktsttestimonial' ); ?> <a href="https://themepoints.com/testimonials" target="_blank"> - <?php _e( 'Unlock all upgrades with Pro!', 'ktsttestimonial' ); ?></a></p>738 <p class="option-title"><?php esc_html_e( 'Labels & Messages','super-testimonial' ); ?> <a href="https://themepoints.com/testimonials" target="_blank"> - <?php esc_html_e( 'Unlock all upgrades with Pro!', 'super-testimonial' ); ?></a></p> 737 739 <table class="form-table"> 738 740 739 741 <tr valign="top"> 740 742 <th scope="row"> 741 <label for="tp_required_show_hide"><?php esc_html_e( 'Required Notice', ' ktsttestimonial' ); ?></label>743 <label for="tp_required_show_hide"><?php esc_html_e( 'Required Notice', 'super-testimonial' ); ?></label> 742 744 <span class="tpstestimonial_manager_hint toss"> 743 <?php esc_html_e( 'Display required notice at top of the form.', ' ktsttestimonial' ); ?>745 <?php esc_html_e( 'Display required notice at top of the form.', 'super-testimonial' ); ?> 744 746 </span> 745 747 </th> … … 747 749 <div class="switch-field"> 748 750 <input type="radio" id="tp_required_show" name="tp_required_show_hide" value="1" <?php if ( $tp_required_show_hide == 1 || $tp_required_show_hide == '' ) echo 'checked'; ?>/> 749 <label for="tp_required_show"><?php esc_html_e( 'Show', ' ktsttestimonial' ); ?></label>751 <label for="tp_required_show"><?php esc_html_e( 'Show', 'super-testimonial' ); ?></label> 750 752 <input type="radio" id="tp_required_hide" name="tp_required_show_hide" value="2" <?php if ( $tp_required_show_hide == 2 ) echo 'checked'; ?>/> 751 <label for="tp_required_hide"><?php esc_html_e( 'Hide', ' ktsttestimonial' ); ?></label>753 <label for="tp_required_hide"><?php esc_html_e( 'Hide', 'super-testimonial' ); ?></label> 752 754 </div> 753 755 </td> … … 756 758 <tr valign="top"> 757 759 <th scope="row"> 758 <label for="tp_required_notice_text"><?php esc_html_e('Notice Label', ' ktsttestimonial'); ?></label>760 <label for="tp_required_notice_text"><?php esc_html_e('Notice Label', 'super-testimonial'); ?></label> 759 761 <span class="tpstestimonial_manager_hint toss"> 760 <?php esc_html_e('Set a label for the required notice.', ' ktsttestimonial'); ?>762 <?php esc_html_e('Set a label for the required notice.', 'super-testimonial'); ?> 761 763 </span> 762 764 </th> … … 768 770 <tr valign="top"> 769 771 <th scope="row"> 770 <label for="tp_form_asterisk_color"><?php esc_html_e( 'Asterisk Color', ' ktsttestimonial' ); ?></label>771 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial form asterisk.', ' ktsttestimonial' ); ?></span>772 <label for="tp_form_asterisk_color"><?php esc_html_e( 'Asterisk Color', 'super-testimonial' ); ?></label> 773 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial form asterisk.', 'super-testimonial' ); ?></span> 772 774 </th> 773 775 <td style="vertical-align: middle;"> … … 779 781 <tr valign="top"> 780 782 <th scope="row"> 781 <label for="tp_success_message"><?php esc_html_e('Successful Message', ' ktsttestimonial'); ?></label>783 <label for="tp_success_message"><?php esc_html_e('Successful Message', 'super-testimonial'); ?></label> 782 784 <span class="tpstestimonial_manager_hint toss"> 783 <?php esc_html_e('Set a submission success message.', ' ktsttestimonial'); ?>785 <?php esc_html_e('Set a submission success message.', 'super-testimonial'); ?> 784 786 </span> 785 787 </th> … … 791 793 <tr valign="top"> 792 794 <th scope="row"> 793 <label for="tp_form_success_color"><?php esc_html_e( 'Successful Text Color', ' ktsttestimonial' ); ?></label>794 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial form successful message.', ' ktsttestimonial' ); ?></span>795 <label for="tp_form_success_color"><?php esc_html_e( 'Successful Text Color', 'super-testimonial' ); ?></label> 796 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial form successful message.', 'super-testimonial' ); ?></span> 795 797 </th> 796 798 <td style="vertical-align: middle;"> … … 802 804 <tr valign="top"> 803 805 <th scope="row"> 804 <label for="tp_error_message"><?php esc_html_e('Error Message', ' ktsttestimonial'); ?></label>806 <label for="tp_error_message"><?php esc_html_e('Error Message', 'super-testimonial'); ?></label> 805 807 <span class="tpstestimonial_manager_hint toss"> 806 <?php esc_html_e('Set a submission error message.', ' ktsttestimonial'); ?>808 <?php esc_html_e('Set a submission error message.', 'super-testimonial'); ?> 807 809 </span> 808 810 </th> … … 814 816 <tr valign="top"> 815 817 <th scope="row"> 816 <label for="tp_form_error_color"><?php esc_html_e( 'Error Text Color', ' ktsttestimonial' ); ?></label>817 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial form error message.', ' ktsttestimonial' ); ?></span>818 <label for="tp_form_error_color"><?php esc_html_e( 'Error Text Color', 'super-testimonial' ); ?></label> 819 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for the testimonial form error message.', 'super-testimonial' ); ?></span> 818 820 </th> 819 821 <td style="vertical-align: middle;"> … … 832 834 <div class="wrap"> 833 835 <div class="option-box"> 834 <p class="option-title"><?php esc_html_e( 'Notifications',' ktsttestimonial' ); ?> <a href="https://themepoints.com/testimonials" target="_blank"> - <?php _e( 'Unlock all upgrades with Pro!', 'ktsttestimonial' ); ?></a></p>836 <p class="option-title"><?php esc_html_e( 'Notifications','super-testimonial' ); ?> <a href="https://themepoints.com/testimonials" target="_blank"> - <?php esc_html_e( 'Unlock all upgrades with Pro!', 'super-testimonial' ); ?></a></p> 835 837 <table class="form-table"> 836 838 837 839 <tr valign="top"> 838 840 <th scope="row"> 839 <label for="notification_enabled"><?php esc_html_e( 'Admin Notification', ' ktsttestimonial' ); ?></label>840 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Enable/Dsiable testimonial admin notice.', ' ktsttestimonial' ); ?></span>841 <label for="notification_enabled"><?php esc_html_e( 'Admin Notification', 'super-testimonial' ); ?></label> 842 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Enable/Dsiable testimonial admin notice.', 'super-testimonial' ); ?></span> 841 843 </th> 842 844 <td style="vertical-align: middle;"> … … 848 850 <tr valign="top"> 849 851 <th scope="row"> 850 <label for="notification_to"><?php esc_html_e( 'To', ' ktsttestimonial' ); ?></label>852 <label for="notification_to"><?php esc_html_e( 'To', 'super-testimonial' ); ?></label> 851 853 </th> 852 854 <td style="vertical-align: middle;"> … … 858 860 <tr valign="top"> 859 861 <th scope="row"> 860 <label for="notification_from"><?php esc_html_e( 'From', ' ktsttestimonial' ); ?></label>862 <label for="notification_from"><?php esc_html_e( 'From', 'super-testimonial' ); ?></label> 861 863 </th> 862 864 <td style="vertical-align: middle;"> … … 868 870 <tr valign="top"> 869 871 <th scope="row"> 870 <label for="notification_subject"><?php esc_html_e( 'Subject', ' ktsttestimonial' ); ?></label>872 <label for="notification_subject"><?php esc_html_e( 'Subject', 'super-testimonial' ); ?></label> 871 873 </th> 872 874 <td style="vertical-align: middle;"> … … 881 883 <tr valign="top"> 882 884 <th scope="row"> 883 <label for="notification_body"><?php esc_html_e( 'Message Body', ' ktsttestimonial' ); ?></label>885 <label for="notification_body"><?php esc_html_e( 'Message Body', 'super-testimonial' ); ?></label> 884 886 </th> 885 887 <td style="vertical-align: middle;"> … … 1238 1240 function tps_sidebar_render_shortcode_metabox($post) { 1239 1241 ?> 1240 <p><?php esc_html_e('To display the Testimonial Form, copy and paste this shortcode into your post, page, custom post, block editor, or page builder.', ' ktsttestimonial'); ?></p>1242 <p><?php esc_html_e('To display the Testimonial Form, copy and paste this shortcode into your post, page, custom post, block editor, or page builder.', 'super-testimonial'); ?></p> 1241 1243 <input type="text" id="shortcode_<?php echo esc_attr($post->ID); ?>" 1242 1244 onclick="copyShortcode('<?php echo esc_attr($post->ID); ?>')" … … 1247 1249 <p id="copy-message-<?php echo esc_attr($post->ID); ?>" 1248 1250 style="color: green; font-size: 14px; display: none; margin-top: 5px;margin-bottom: 0px"> 1249 <?php esc_html_e('Shortcode copied!', ' ktsttestimonial'); ?>1251 <?php esc_html_e('Shortcode copied!', 'super-testimonial'); ?> 1250 1252 </p> 1251 1253 -
super-testimonial/trunk/includes/metabox/tp-testimonials-metabox.php
r3354338 r3424470 9 9 // Set UI labels for Custom Post Type 10 10 $labels = array( 11 'name' => _x( 'Testimonials', 'Post Type General Name', ' ktsttestimonial' ),12 'singular_name' => _x( 'Testimonial', 'Post Type Singular Name', ' ktsttestimonial' ),13 'menu_name' => __( 'Testimonials', ' ktsttestimonial' ),14 'parent_item_colon' => __( 'Parent Shortcode', ' ktsttestimonial' ),15 'all_items' => __( 'Manage Shortcode', ' ktsttestimonial' ),16 'view_item' => __( 'View Shortcode', ' ktsttestimonial' ),17 'add_new_item' => __( 'Generate Shortcode', ' ktsttestimonial' ),18 'add_new' => __( 'Generate New Shortcode', ' ktsttestimonial' ),19 'edit_item' => __( 'Edit Testimonial', ' ktsttestimonial' ),20 'update_item' => __( 'Update Testimonial', ' ktsttestimonial' ),21 'search_items' => __( 'Search Testimonial', ' ktsttestimonial' ),22 'not_found' => __( 'Shortcode Not Found', ' ktsttestimonial' ),23 'not_found_in_trash' => __( 'Shortcode Not found in Trash', ' ktsttestimonial' ),11 'name' => _x( 'Testimonials', 'Post Type General Name', 'super-testimonial' ), 12 'singular_name' => _x( 'Testimonial', 'Post Type Singular Name', 'super-testimonial' ), 13 'menu_name' => __( 'Testimonials', 'super-testimonial' ), 14 'parent_item_colon' => __( 'Parent Shortcode', 'super-testimonial' ), 15 'all_items' => __( 'Manage Shortcode', 'super-testimonial' ), 16 'view_item' => __( 'View Shortcode', 'super-testimonial' ), 17 'add_new_item' => __( 'Generate Shortcode', 'super-testimonial' ), 18 'add_new' => __( 'Generate New Shortcode', 'super-testimonial' ), 19 'edit_item' => __( 'Edit Testimonial', 'super-testimonial' ), 20 'update_item' => __( 'Update Testimonial', 'super-testimonial' ), 21 'search_items' => __( 'Search Testimonial', 'super-testimonial' ), 22 'not_found' => __( 'Shortcode Not Found', 'super-testimonial' ), 23 'not_found_in_trash' => __( 'Shortcode Not found in Trash', 'super-testimonial' ), 24 24 ); 25 25 26 26 // Set other options for Custom Post Type 27 27 $args = array( 28 'label' => __( 'Testimonial Shortcode', ' ktsttestimonial' ),29 'description' => __( 'Shortcode news and reviews', ' ktsttestimonial' ),28 'label' => __( 'Testimonial Shortcode', 'super-testimonial' ), 29 'description' => __( 'Shortcode news and reviews', 'super-testimonial' ), 30 30 'labels' => $labels, 31 31 'supports' => array( 'title' ), // Only title is needed … … 53 53 return array( 54 54 'cb' => '<input type="checkbox" />', 55 'title' => __( 'Title', ' ktsttestimonial' ),56 'shortcode' => __( 'Shortcode', ' ktsttestimonial' ),57 'doshortcode' => __( 'Template Shortcode', ' ktsttestimonial' ),58 'date' => __( 'Date', ' ktsttestimonial' ),55 'title' => __( 'Title', 'super-testimonial' ), 56 'shortcode' => __( 'Shortcode', 'super-testimonial' ), 57 'doshortcode' => __( 'Template Shortcode', 'super-testimonial' ), 58 'date' => __( 'Date', 'super-testimonial' ), 59 59 ); 60 60 } … … 81 81 add_meta_box( 82 82 'custom_meta_box_id', // Meta box ID 83 __( 'Testimonial Settings', ' ktsttestimonial' ), // Meta box title83 __( 'Testimonial Settings', 'super-testimonial' ), // Meta box title 84 84 'tp_testimonials_display_post_type_func', // Callback function that displays the meta box content 85 85 $attend, // The post types for which the meta box is added … … 175 175 $pagination_style = get_post_meta( $post->ID, 'pagination_style', true ); 176 176 $nav_value = get_post_meta( $post->ID, 'nav_value', true ); 177 if ( empty( $nav_value ) ) { 178 $nav_value = 1; 179 } 180 177 181 $tp_testimonial_theme_style = ($tp_testimonial_theme_style) ? $tp_testimonial_theme_style : 1; 178 182 $filter_menu_styles = ($filter_menu_styles) ? $filter_menu_styles : 1; … … 190 194 $pagination_style = ($pagination_style) ? $pagination_style : '0'; 191 195 $testimonial_filter_menu_text = ($testimonial_filter_menu_text) ? $testimonial_filter_menu_text : 'All'; 196 197 // Add nonce field for security 198 wp_nonce_field( 'tp_testimonials_meta_save', 'tp_testimonials_meta_nonce' ); 192 199 ?> 193 200 … … 195 202 <!-- <div class="wrap"> --> 196 203 <ul class="tab-nav"> 197 <li nav="1" class="nav1 <?php if ( $nav_value == 1 ) { echo "active"; } ?>"><?php _e( 'Testimonial Query ','ktsttestimonial' ); ?></li>198 <li nav="2" class="nav2 <?php if ( $nav_value == 2 ) { echo "active"; } ?>"><?php _e( 'General Settings ','ktsttestimonial' ); ?></li>199 <li nav="3" class="nav3 <?php if ( $nav_value == 3 ) { echo "active"; } ?>"><?php _e( 'Slider Settings','ktsttestimonial' ); ?></li>200 <li nav="4" class="nav4 <?php if ( $nav_value == 4 ) { echo "active"; } ?>"><?php _e( 'Grid Settings','ktsttestimonial' ); ?></li>204 <li nav="1" class="nav1 <?php if ( $nav_value == 1 ) { echo "active"; } ?>"><?php esc_html_e( 'Testimonial Query ','super-testimonial' ); ?></li> 205 <li nav="2" class="nav2 <?php if ( $nav_value == 2 ) { echo "active"; } ?>"><?php esc_html_e( 'General Settings ','super-testimonial' ); ?></li> 206 <li nav="3" class="nav3 <?php if ( $nav_value == 3 ) { echo "active"; } ?>"><?php esc_html_e( 'Slider Settings','super-testimonial' ); ?></li> 207 <li nav="4" class="nav4 <?php if ( $nav_value == 4 ) { echo "active"; } ?>"><?php esc_html_e( 'Grid Settings','super-testimonial' ); ?></li> 201 208 </ul> <!-- tab-nav end --> 202 209 … … 212 219 <div class="wrap"> 213 220 <div class="option-box"> 214 <p class="option-title"><?php _e( 'Testimonial Query','ktsttestimonial' ); ?></p>221 <p class="option-title"><?php esc_html_e( 'Testimonial Query','super-testimonial' ); ?></p> 215 222 <table class="form-table"> 216 223 <tr valign="top"> 217 224 <th scope="row"> 218 <label for="testimonial_cat_name"><?php _e( 'Select Categories', 'ktsttestimonial' ); ?></label>219 <span class="tpstestimonial_manager_hint toss"><?php e cho __('The category names will only be visible when testimonials are published within specific categories.', 'ktsttestimonial' ); ?></span>225 <label for="testimonial_cat_name"><?php esc_html_e( 'Select Categories', 'super-testimonial' ); ?></label> 226 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('The category names will only be visible when testimonials are published within specific categories.', 'super-testimonial' ); ?></span> 220 227 </th> 221 228 <td style="vertical-align: middle;"> … … 232 239 $allthecats = get_categories( $args ); 233 240 234 foreach( $allthecats as $category ): 235 $cat_id = $category->cat_ID; 236 $checked = ( in_array( $cat_id,( array )$testimonial_cat_name ) ? ' checked="checked"' : "" ); 237 echo'<li id="cat-'.$cat_id.'"><input type="checkbox" name="testimonial_cat_name[]" id="'.$cat_id.'" value="'.$cat_id.'"'.$checked.'> <label for="'.$cat_id.'">'.__( $category->cat_name, 'ktsttestimonial' ).'</label></li>'; 241 foreach ( $allthecats as $category ) : 242 $cat_id = $category->cat_ID; 243 $checked = in_array( $cat_id, (array) $testimonial_cat_name ) ? 'checked' : ''; 244 245 echo '<li id="cat-' . esc_attr( $cat_id ) . '"> 246 <input type="checkbox" name="testimonial_cat_name[]" id="' . esc_attr( $cat_id ) . '" value="' . esc_attr( $cat_id ) . '" ' . ( $checked ? 'checked="checked"' : '' ) . '> 247 <label for="' . esc_attr( $cat_id ) . '">' . esc_html( $category->cat_name ) . '</label> 248 </li>'; 238 249 endforeach; 250 239 251 ?> 240 252 </ul> 241 <span class="tpstestimonial_manager_hint"><?php e cho __('Choose multiple categories for each testimonial.', 'ktsttestimonial' ); ?></span>253 <span class="tpstestimonial_manager_hint"><?php esc_html_e('Choose multiple categories for each testimonial.', 'super-testimonial' ); ?></span> 242 254 </td> 243 255 </tr><!-- End Testimonial Categories --> … … 245 257 <tr valign="top"> 246 258 <th scope="row"> 247 <label for="tp_testimonial_themes"><?php _e( 'Select Theme', 'ktsttestimonial' ); ?></label>248 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Select a theme which you want to display.', 'ktsttestimonial' ); ?></span>259 <label for="tp_testimonial_themes"><?php esc_html_e( 'Select Theme', 'super-testimonial' ); ?></label> 260 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Select a theme which you want to display.', 'super-testimonial' ); ?></span> 249 261 </th> 250 262 <td style="vertical-align: middle;"> 251 263 <select name="tp_testimonial_themes" id="tp_testimonial_themes" class="timezone_string"> 252 <option value="1" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '1' ); ?>><?php _e( 'Theme 1', 'ktsttestimonial' ); ?></option>253 <option value="2" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '2' ); ?>><?php _e( 'Theme 2', 'ktsttestimonial' ); ?></option>254 <option value="3" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '3' ); ?>><?php _e( 'Theme 3', 'ktsttestimonial' ); ?></option>255 <option value="4" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '4' ); ?>><?php _e( 'Theme 4', 'ktsttestimonial' ); ?></option>256 <option value="5" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '5' ); ?>><?php _e( 'Theme 5', 'ktsttestimonial' ); ?></option>257 <option value="20" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '20' ); ?>><?php _e( 'Theme 20(List - Free)', 'ktsttestimonial' ); ?></option>258 <option value="6" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '6' ); ?>><?php _e( 'Theme 6 (Pro)', 'ktsttestimonial' ); ?></option>259 <option value="7" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '7' ); ?>><?php _e( 'Theme 7 (Pro)', 'ktsttestimonial' ); ?></option>260 <option value="8" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '8' ); ?>><?php _e( 'Theme 8 (Pro)', 'ktsttestimonial' ); ?></option>261 <option value="9" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '9' ); ?>><?php _e( 'Theme 9 (Pro)', 'ktsttestimonial' ); ?></option>262 <option value="10" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '10' ); ?>><?php _e( 'Theme 10 (Pro)', 'ktsttestimonial' ); ?></option>263 <option value="11" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '11' ); ?>><?php _e( 'Theme 11 (Pro)', 'ktsttestimonial' ); ?></option>264 <option value="12" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '12' ); ?>><?php _e( 'Theme 12 (Pro)', 'ktsttestimonial' ); ?></option>265 <option value="13" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '13' ); ?>><?php _e( 'Theme 13 (Pro)', 'ktsttestimonial' ); ?></option>266 <option value="14" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '14' ); ?>><?php _e( 'Theme 14 (Pro)', 'ktsttestimonial' ); ?></option>267 <option value="15" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '15' ); ?>><?php _e( 'Theme 15 (Pro)', 'ktsttestimonial' ); ?></option>268 <option value="16" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '16' ); ?>><?php _e( 'Theme 16 (Pro)', 'ktsttestimonial' ); ?></option>269 <option value="17" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '17' ); ?>><?php _e( 'Theme 17 (Pro)', 'ktsttestimonial' ); ?></option>270 <option value="18" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '18' ); ?>><?php _e( 'Theme 18 (Pro)', 'ktsttestimonial' ); ?></option>271 <option value="19" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '19' ); ?>><?php _e( 'Theme 19 (Pro)', 'ktsttestimonial' ); ?></option>272 <option value="21" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '21' ); ?>><?php _e( 'Theme 21(List - Pro)', 'ktsttestimonial' ); ?></option>273 <option value="22" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '22' ); ?>><?php _e( 'Theme 22(List - Pro)', 'ktsttestimonial' ); ?></option>274 <option value="23" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '23' ); ?>><?php _e( 'Theme 23(List - Pro)', 'ktsttestimonial' ); ?></option>275 <option value="24" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '24' ); ?>><?php _e( 'Theme 24(List - Pro)', 'ktsttestimonial' ); ?></option>276 <option value="25" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '25' ); ?>><?php _e( 'Theme 25(List - Pro)', 'ktsttestimonial' ); ?></option>277 <option value="26" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '26' ); ?>><?php _e( 'Theme 26(List - Pro)', 'ktsttestimonial' ); ?></option>278 <option value="27" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '27' ); ?>><?php _e( 'Theme 27(List - Pro)', 'ktsttestimonial' ); ?></option>279 <option value="28" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '28' ); ?>><?php _e( 'Theme 28(List - Pro)', 'ktsttestimonial' ); ?></option>280 <option value="29" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '29' ); ?>><?php _e( 'Theme 29(List - Pro)', 'ktsttestimonial' ); ?></option>281 <option value="30" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '30' ); ?>><?php _e( 'Theme 30(List - Pro)', 'ktsttestimonial' ); ?></option>264 <option value="1" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '1' ); ?>><?php esc_html_e( 'Theme 1', 'super-testimonial' ); ?></option> 265 <option value="2" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '2' ); ?>><?php esc_html_e( 'Theme 2', 'super-testimonial' ); ?></option> 266 <option value="3" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '3' ); ?>><?php esc_html_e( 'Theme 3', 'super-testimonial' ); ?></option> 267 <option value="4" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '4' ); ?>><?php esc_html_e( 'Theme 4', 'super-testimonial' ); ?></option> 268 <option value="5" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '5' ); ?>><?php esc_html_e( 'Theme 5', 'super-testimonial' ); ?></option> 269 <option value="20" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '20' ); ?>><?php esc_html_e( 'Theme 20(List - Free)', 'super-testimonial' ); ?></option> 270 <option value="6" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '6' ); ?>><?php esc_html_e( 'Theme 6 (Pro)', 'super-testimonial' ); ?></option> 271 <option value="7" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '7' ); ?>><?php esc_html_e( 'Theme 7 (Pro)', 'super-testimonial' ); ?></option> 272 <option value="8" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '8' ); ?>><?php esc_html_e( 'Theme 8 (Pro)', 'super-testimonial' ); ?></option> 273 <option value="9" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '9' ); ?>><?php esc_html_e( 'Theme 9 (Pro)', 'super-testimonial' ); ?></option> 274 <option value="10" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '10' ); ?>><?php esc_html_e( 'Theme 10 (Pro)', 'super-testimonial' ); ?></option> 275 <option value="11" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '11' ); ?>><?php esc_html_e( 'Theme 11 (Pro)', 'super-testimonial' ); ?></option> 276 <option value="12" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '12' ); ?>><?php esc_html_e( 'Theme 12 (Pro)', 'super-testimonial' ); ?></option> 277 <option value="13" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '13' ); ?>><?php esc_html_e( 'Theme 13 (Pro)', 'super-testimonial' ); ?></option> 278 <option value="14" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '14' ); ?>><?php esc_html_e( 'Theme 14 (Pro)', 'super-testimonial' ); ?></option> 279 <option value="15" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '15' ); ?>><?php esc_html_e( 'Theme 15 (Pro)', 'super-testimonial' ); ?></option> 280 <option value="16" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '16' ); ?>><?php esc_html_e( 'Theme 16 (Pro)', 'super-testimonial' ); ?></option> 281 <option value="17" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '17' ); ?>><?php esc_html_e( 'Theme 17 (Pro)', 'super-testimonial' ); ?></option> 282 <option value="18" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '18' ); ?>><?php esc_html_e( 'Theme 18 (Pro)', 'super-testimonial' ); ?></option> 283 <option value="19" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '19' ); ?>><?php esc_html_e( 'Theme 19 (Pro)', 'super-testimonial' ); ?></option> 284 <option value="21" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '21' ); ?>><?php esc_html_e( 'Theme 21(List - Pro)', 'super-testimonial' ); ?></option> 285 <option value="22" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '22' ); ?>><?php esc_html_e( 'Theme 22(List - Pro)', 'super-testimonial' ); ?></option> 286 <option value="23" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '23' ); ?>><?php esc_html_e( 'Theme 23(List - Pro)', 'super-testimonial' ); ?></option> 287 <option value="24" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '24' ); ?>><?php esc_html_e( 'Theme 24(List - Pro)', 'super-testimonial' ); ?></option> 288 <option value="25" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '25' ); ?>><?php esc_html_e( 'Theme 25(List - Pro)', 'super-testimonial' ); ?></option> 289 <option value="26" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '26' ); ?>><?php esc_html_e( 'Theme 26(List - Pro)', 'super-testimonial' ); ?></option> 290 <option value="27" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '27' ); ?>><?php esc_html_e( 'Theme 27(List - Pro)', 'super-testimonial' ); ?></option> 291 <option value="28" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '28' ); ?>><?php esc_html_e( 'Theme 28(List - Pro)', 'super-testimonial' ); ?></option> 292 <option value="29" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '29' ); ?>><?php esc_html_e( 'Theme 29(List - Pro)', 'super-testimonial' ); ?></option> 293 <option value="30" <?php if ( isset ( $tp_testimonial_themes ) ) selected( $tp_testimonial_themes, '30' ); ?>><?php esc_html_e( 'Theme 30(List - Pro)', 'super-testimonial' ); ?></option> 282 294 </select> 283 <span class="tpstestimonial_manager_hint"> <a href="https://themepoints.com/testimonials" target="_blank"><?php _e( 'Unlock all Themes upgrades with Pro!', 'ktsttestimonial' ); ?></a></span>295 <span class="tpstestimonial_manager_hint"> <a href="https://themepoints.com/testimonials" target="_blank"><?php esc_html_e( 'Unlock all Themes upgrades with Pro!', 'super-testimonial' ); ?></a></span> 284 296 </td> 285 297 </tr><!-- End Testimonial Themes --> … … 287 299 <tr valign="top"> 288 300 <th scope="row"> 289 <label for="tp_testimonial_theme_style"><?php _e( 'Select Layout', 'ktsttestimonial' ); ?></label>290 <span class="tpstestimonial_manager_hint toss"><?php _e( 'Select a layout to display the testimonials.', 'ktsttestimonial' ); ?></span>301 <label for="tp_testimonial_theme_style"><?php esc_html_e( 'Select Layout', 'super-testimonial' ); ?></label> 302 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Select a layout to display the testimonials.', 'super-testimonial' ); ?></span> 291 303 </th> 292 304 <td style="vertical-align: middle;"> 293 305 <select name="tp_testimonial_theme_style" id="tp_testimonial_theme_style" class="timezone_string"> 294 <option value="1" <?php if ( isset ( $tp_testimonial_theme_style ) ) selected( $tp_testimonial_theme_style, '1' ); ?>><?php _e( 'Slider', 'ktsttestimonial' ); ?></option>295 <option value="2" <?php if ( isset ( $tp_testimonial_theme_style ) ) selected( $tp_testimonial_theme_style, '2' ); ?>><?php _e( 'Normal Grid ( Pro )', 'ktsttestimonial' ); ?></option>296 <option value="3" <?php if ( isset ( $tp_testimonial_theme_style ) ) selected( $tp_testimonial_theme_style, '3' ); ?>><?php _e( 'Filter Grid ( Pro )', 'ktsttestimonial' ); ?></option>306 <option value="1" <?php if ( isset ( $tp_testimonial_theme_style ) ) selected( $tp_testimonial_theme_style, '1' ); ?>><?php esc_html_e( 'Slider', 'super-testimonial' ); ?></option> 307 <option value="2" <?php if ( isset ( $tp_testimonial_theme_style ) ) selected( $tp_testimonial_theme_style, '2' ); ?>><?php esc_html_e( 'Normal Grid ( Pro )', 'super-testimonial' ); ?></option> 308 <option value="3" <?php if ( isset ( $tp_testimonial_theme_style ) ) selected( $tp_testimonial_theme_style, '3' ); ?>><?php esc_html_e( 'Filter Grid ( Pro )', 'super-testimonial' ); ?></option> 297 309 </select> 298 <span class="tpstestimonial_manager_hint"> <a href="https://themepoints.com/testimonials" target="_blank"><?php _e( 'Unlock all Layouts upgrades with Pro!', 'ktsttestimonial' ); ?></a>.</span>310 <span class="tpstestimonial_manager_hint"> <a href="https://themepoints.com/testimonials" target="_blank"><?php esc_html_e( 'Unlock all Layouts upgrades with Pro!', 'super-testimonial' ); ?></a>.</span> 299 311 </td> 300 312 </tr> … … 302 314 <tr valign="top"> 303 315 <th scope="row"> 304 <label for="dpstotoal_items"><?php _e( 'Limit Items', 'ktsttestimonial' ); ?></label>305 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Limit number of testimonials to show.', 'ktsttestimonial' ); ?></span>306 </th> 307 <td style="vertical-align: middle;"> 308 <input type="number" name="dpstotoal_items" id="dpstotoal_items" maxlength="4" class="timezone_string" value="<?php if ( $dpstotoal_items !='' ) { echo $dpstotoal_items; } else { echo '12'; } ?>">316 <label for="dpstotoal_items"><?php esc_html_e( 'Limit Items', 'super-testimonial' ); ?></label> 317 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Limit number of testimonials to show.', 'super-testimonial' ); ?></span> 318 </th> 319 <td style="vertical-align: middle;"> 320 <input type="number" name="dpstotoal_items" id="dpstotoal_items" maxlength="4" class="timezone_string" value="<?php if ( $dpstotoal_items !='' ) { echo esc_attr($dpstotoal_items); } else { echo '12'; } ?>"> 309 321 </td> 310 322 </tr><!-- End Order By --> … … 312 324 <tr valign="top"> 313 325 <th scope="row"> 314 <label for="tp_order_by_option"><?php _e( 'Order By', 'ktsttestimonial' ); ?></label>315 <span class="tpstestimonial_manager_hint toss"><?php echo esc_html__( 'Select an order by option.', ' ktsttestimonial' ); ?></span>326 <label for="tp_order_by_option"><?php esc_html_e( 'Order By', 'super-testimonial' ); ?></label> 327 <span class="tpstestimonial_manager_hint toss"><?php echo esc_html__( 'Select an order by option.', 'super-testimonial' ); ?></span> 316 328 </th> 317 329 <td style="vertical-align: middle;"> 318 330 <select name="tp_order_by_option" id="tp_order_by_option" class="timezone_string"> 319 <option value="date" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'date' ); ?>><?php _e('Publish Date', 'ktsttestimonial'); ?></option>320 <option value="title" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'title' ); ?>><?php _e('Title', 'ktsttestimonial'); ?></option>321 <option value="modified" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'modified' ); ?>><?php _e('Modified', 'ktsttestimonial'); ?></option>322 <option value="ID" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'ID' ); ?>><?php _e('ID', 'ktsttestimonial'); ?></option>323 <option value="author" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'author' ); ?>><?php _e('Author', 'ktsttestimonial'); ?></option>324 <option value="name" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'name' ); ?>><?php _e('Name', 'ktsttestimonial'); ?></option>325 <option value="menu_order" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'menu_order' ); ?>><?php _e('Menu Order', 'ktsttestimonial'); ?></option>326 <option value="rand" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'rand' ); ?>><?php _e('Random', 'ktsttestimonial'); ?></option>331 <option value="date" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'date' ); ?>><?php esc_html_e('Publish Date', 'super-testimonial'); ?></option> 332 <option value="title" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'title' ); ?>><?php esc_html_e('Title', 'super-testimonial'); ?></option> 333 <option value="modified" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'modified' ); ?>><?php esc_html_e('Modified', 'super-testimonial'); ?></option> 334 <option value="ID" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'ID' ); ?>><?php esc_html_e('ID', 'super-testimonial'); ?></option> 335 <option value="author" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'author' ); ?>><?php esc_html_e('Author', 'super-testimonial'); ?></option> 336 <option value="name" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'name' ); ?>><?php esc_html_e('Name', 'super-testimonial'); ?></option> 337 <option value="menu_order" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'menu_order' ); ?>><?php esc_html_e('Menu Order', 'super-testimonial'); ?></option> 338 <option value="rand" <?php if ( isset ( $tp_order_by_option ) ) selected( $tp_order_by_option, 'rand' ); ?>><?php esc_html_e('Random', 'super-testimonial'); ?></option> 327 339 </select><br /> 328 340 </td> … … 331 343 <tr valign="top"> 332 344 <th scope="row"> 333 <label for="tp_order_option"><?php _e( 'Order Type', 'ktsttestimonial' ); ?></label>334 <span class="tpstestimonial_manager_hint toss"><?php echo esc_html__( 'Select an order option.', ' ktsttestimonial' ); ?></span>345 <label for="tp_order_option"><?php esc_html_e( 'Order Type', 'super-testimonial' ); ?></label> 346 <span class="tpstestimonial_manager_hint toss"><?php echo esc_html__( 'Select an order option.', 'super-testimonial' ); ?></span> 335 347 </th> 336 348 <td style="vertical-align: middle;"> 337 349 <select name="tp_order_option" id="tp_order_option" class="timezone_string"> 338 <option value="DESC" <?php if ( isset ( $tp_order_option ) ) selected( $tp_order_option, 'DESC' ); ?>><?php _e( 'Descending (Z-A)', 'ktsttestimonial' ); ?></option>339 <option value="ASC" <?php if ( isset ( $tp_order_option ) ) selected( $tp_order_option, 'ASC' ); ?>><?php _e( 'Ascending (A-Z)', 'ktsttestimonial' ); ?></option>350 <option value="DESC" <?php if ( isset ( $tp_order_option ) ) selected( $tp_order_option, 'DESC' ); ?>><?php esc_html_e( 'Descending (Z-A)', 'super-testimonial' ); ?></option> 351 <option value="ASC" <?php if ( isset ( $tp_order_option ) ) selected( $tp_order_option, 'ASC' ); ?>><?php esc_html_e( 'Ascending (A-Z)', 'super-testimonial' ); ?></option> 340 352 </select> 341 353 </td> … … 344 356 <tr> 345 357 <th> 346 <label for="tp_image_sizes"><?php _e( 'Image Sizes', 'ktsttestimonial' ); ?></label>347 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Choose an image size to display perfectly', 'ktsttestimonial' ); ?></span>358 <label for="tp_image_sizes"><?php esc_html_e( 'Image Sizes', 'super-testimonial' ); ?></label> 359 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Choose an image size to display perfectly', 'super-testimonial' ); ?></span> 348 360 </th> 349 361 <td style="vertical-align: middle;"> 350 362 <select name="tp_image_sizes" id="tp_image_sizes" class="tp_image_sizes"> 351 <option value="thumbnail" <?php if ( isset ( $tp_image_sizes ) ) selected( $tp_image_sizes, 'thumbnail' ); ?>><?php _e( 'Thumbnail', 'ktsttestimonial' ); ?></option>352 <option value="medium" <?php if ( isset ( $tp_image_sizes ) ) selected( $tp_image_sizes, 'medium' ); ?>><?php _e( 'Medium', 'ktsttestimonial' ); ?></option>353 <option value="medium_large" <?php if ( isset ( $tp_image_sizes ) ) selected( $tp_image_sizes, 'medium_large' ); ?>><?php _e( 'Medium large', 'ktsttestimonial' ); ?></option>354 <option value="large" <?php if ( isset ( $tp_image_sizes ) ) selected( $tp_image_sizes, 'large' ); ?>><?php _e( 'Large', 'ktsttestimonial' ); ?></option>355 <option value="full" <?php if ( isset ( $tp_image_sizes ) ) selected( $tp_image_sizes, 'full' ); ?>><?php _e( 'Full', 'ktsttestimonial' ); ?></option>363 <option value="thumbnail" <?php if ( isset ( $tp_image_sizes ) ) selected( $tp_image_sizes, 'thumbnail' ); ?>><?php esc_html_e( 'Thumbnail', 'super-testimonial' ); ?></option> 364 <option value="medium" <?php if ( isset ( $tp_image_sizes ) ) selected( $tp_image_sizes, 'medium' ); ?>><?php esc_html_e( 'Medium', 'super-testimonial' ); ?></option> 365 <option value="medium_large" <?php if ( isset ( $tp_image_sizes ) ) selected( $tp_image_sizes, 'medium_large' ); ?>><?php esc_html_e( 'Medium large', 'super-testimonial' ); ?></option> 366 <option value="large" <?php if ( isset ( $tp_image_sizes ) ) selected( $tp_image_sizes, 'large' ); ?>><?php esc_html_e( 'Large', 'super-testimonial' ); ?></option> 367 <option value="full" <?php if ( isset ( $tp_image_sizes ) ) selected( $tp_image_sizes, 'full' ); ?>><?php esc_html_e( 'Full', 'super-testimonial' ); ?></option> 356 368 </select> 357 369 </td> … … 367 379 <div class="wrap"> 368 380 <div class="option-box"> 369 <p class="option-title"><?php _e( 'General Settings','ktsttestimonial' ); ?></p>381 <p class="option-title"><?php esc_html_e( 'General Settings','super-testimonial' ); ?></p> 370 382 <table class="form-table"> 371 383 <tr valign="top"> 372 384 <th scope="row"> 373 <label for="tp_testimonial_textalign"><?php _e( 'Text Align', 'ktsttestimonial' ); ?></label>374 <span class="tpstestimonial_manager_hint toss"><?php echo esc_html__( 'Set alignment for the testimonial content.', ' ktsttestimonial' ); ?></span>385 <label for="tp_testimonial_textalign"><?php esc_html_e( 'Text Align', 'super-testimonial' ); ?></label> 386 <span class="tpstestimonial_manager_hint toss"><?php echo esc_html__( 'Set alignment for the testimonial content.', 'super-testimonial' ); ?></span> 375 387 </th> 376 388 <td style="vertical-align: middle;"> 377 389 <div class="switch-field"> 378 390 <input type="radio" id="radio-three" name="tp_testimonial_textalign" value="left" <?php if ( $tp_testimonial_textalign == 'left' ) echo 'checked'; ?>/> 379 <label for="radio-three"><?php _e( 'Left', 'ktsttestimonial' ); ?><span class="mark"><?php _e( 'Pro', 'ktsttestimonial' ); ?></span></label>391 <label for="radio-three"><?php esc_html_e( 'Left', 'super-testimonial' ); ?><span class="mark"><?php esc_html_e( 'Pro', 'super-testimonial' ); ?></span></label> 380 392 <input type="radio" id="radio-four" name="tp_testimonial_textalign" value="center" <?php if ( $tp_testimonial_textalign == 'center' || $tp_testimonial_textalign == '' ) echo 'checked'; ?>/> 381 <label for="radio-four"><?php _e( 'Center', 'ktsttestimonial' ); ?></label>393 <label for="radio-four"><?php esc_html_e( 'Center', 'super-testimonial' ); ?></label> 382 394 <input type="radio" id="radio-five" name="tp_testimonial_textalign" value="right" <?php if ( $tp_testimonial_textalign == 'right' ) echo 'checked'; ?>/> 383 <label for="radio-five"><?php _e( 'Right', 'ktsttestimonial' ); ?><span class="mark"><?php _e( 'Pro', 'ktsttestimonial' ); ?></span></label>395 <label for="radio-five"><?php esc_html_e( 'Right', 'super-testimonial' ); ?><span class="mark"><?php esc_html_e( 'Pro', 'super-testimonial' ); ?></span></label> 384 396 </div> 385 397 </td> … … 388 400 <tr valign="top"> 389 401 <th scope="row"> 390 <label for="tp_img_show_hide"><?php _e( 'Image', 'ktsttestimonial' ); ?></label>391 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Show/Hide Testimonial Image.', 'ktsttestimonial' ); ?></span>402 <label for="tp_img_show_hide"><?php esc_html_e( 'Image', 'super-testimonial' ); ?></label> 403 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Show/Hide Testimonial Image.', 'super-testimonial' ); ?></span> 392 404 </th> 393 405 <td style="vertical-align: middle;"> 394 406 <div class="switch-field"> 395 407 <input type="radio" id="tp_img_show" name="tp_img_show_hide" value="1" <?php if ( $tp_img_show_hide == 1 || $tp_img_show_hide == '' ) echo 'checked'; ?>/> 396 <label for="tp_img_show"><?php _e( 'Show', 'ktsttestimonial' ); ?></label>408 <label for="tp_img_show"><?php esc_html_e( 'Show', 'super-testimonial' ); ?></label> 397 409 <input type="radio" id="tp_img_hide" name="tp_img_show_hide" value="2" <?php if ( $tp_img_show_hide == 2 ) echo 'checked'; ?>/> 398 <label for="tp_img_hide"><?php _e( 'Hide', 'ktsttestimonial' ); ?><span class="mark"><?php _e( 'Pro', 'ktsttestimonial' ); ?></span></label>410 <label for="tp_img_hide"><?php esc_html_e( 'Hide', 'super-testimonial' ); ?><span class="mark"><?php esc_html_e( 'Pro', 'super-testimonial' ); ?></span></label> 399 411 </div> 400 412 </td> … … 403 415 <tr valign="top" id="imgBorderController" style="<?php if ( $tp_img_show_hide == 2) { echo "display:none;"; }?>"> 404 416 <th scope="row"> 405 <label for="tp_imgborder_width_option"><?php _e( 'Image Border Width', 'ktsttestimonial' ); ?></label>406 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set image border Width.', 'ktsttestimonial' ); ?></span>417 <label for="tp_imgborder_width_option"><?php esc_html_e( 'Image Border Width', 'super-testimonial' ); ?></label> 418 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set image border Width.', 'super-testimonial' ); ?></span> 407 419 </th> 408 420 <td> 409 <input type="number" name="tp_imgborder_width_option" min="0" max="10" value="<?php if ( $tp_imgborder_width_option !='' ) {echo $tp_imgborder_width_option; }else{echo 0; } ?>">421 <input type="number" name="tp_imgborder_width_option" min="0" max="10" value="<?php if ( $tp_imgborder_width_option !='' ) {echo esc_attr($tp_imgborder_width_option); }else{echo 0; } ?>"> 410 422 </td> 411 423 </tr> <!-- End of image border width --> … … 413 425 <tr valign="top" id="imgColor_controller" style="<?php if ( $tp_img_show_hide == 2) { echo "display:none;"; }?>"> 414 426 <th scope="row"> 415 <label for="tp_imgborder_color_option"><?php _e( 'Image Border Color', 'ktsttestimonial' ); ?></label>416 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set color for image border.', 'ktsttestimonial' ); ?></span>417 </th> 418 <td style="vertical-align: middle;"> 419 <input type="text" id="tp_imgborder_color_option" name="tp_imgborder_color_option" value="<?php if ( $tp_imgborder_color_option !='' ) {echo $tp_imgborder_color_option; }else{echo "#f5f5f5"; } ?>" class="timezone_string">427 <label for="tp_imgborder_color_option"><?php esc_html_e( 'Image Border Color', 'super-testimonial' ); ?></label> 428 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for image border.', 'super-testimonial' ); ?></span> 429 </th> 430 <td style="vertical-align: middle;"> 431 <input type="text" id="tp_imgborder_color_option" name="tp_imgborder_color_option" value="<?php if ( $tp_imgborder_color_option !='' ) {echo esc_attr($tp_imgborder_color_option); }else{echo "#f5f5f5"; } ?>" class="timezone_string"> 420 432 </td> 421 433 </tr><!-- End Name Color --> … … 423 435 <tr valign="top" id="imgRadius_controller" style="<?php if ( $tp_img_show_hide == 2 ) { echo "display:none;"; } ?>"> 424 436 <th scope="row"> 425 <label for="tp_testimonial_textalign"><?php _e( 'Image Border Radius', 'ktsttestimonial' ); ?></label>426 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Select an option for border radius of the images.', 'ktsttestimonial' ); ?></span>437 <label for="tp_testimonial_textalign"><?php esc_html_e( 'Image Border Radius', 'super-testimonial' ); ?></label> 438 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Select an option for border radius of the images.', 'super-testimonial' ); ?></span> 427 439 </th> 428 440 <td style="vertical-align: middle;"> 429 441 <select name="tp_img_border_radius" id="tp_img_border_radius" class="timezone_string"> 430 <option value="0%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '0%' ); ?>><?php _e( 'Default', 'ktsttestimonial' ); ?></option>431 <option value="10%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '10%' ); ?>><?php _e( '10%', 'ktsttestimonial' ); ?></option>432 <option value="15%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '15%' ); ?>><?php _e( '15%', 'ktsttestimonial' ); ?></option>433 <option value="20%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '20%' ); ?>><?php _e( '20%', 'ktsttestimonial' ); ?></option>434 <option value="25%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '25%' ); ?>><?php _e( '25%', 'ktsttestimonial' ); ?></option>435 <option value="30%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '30%' ); ?>><?php _e( '30%', 'ktsttestimonial' ); ?></option>436 <option value="40%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '40%' ); ?>><?php _e( '40%', 'ktsttestimonial' ); ?></option>437 <option value="50%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '50%' ); ?>><?php _e( '50%', 'ktsttestimonial' ); ?></option>442 <option value="0%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '0%' ); ?>><?php esc_html_e( 'Default', 'super-testimonial' ); ?></option> 443 <option value="10%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '10%' ); ?>><?php esc_html_e( '10%', 'super-testimonial' ); ?></option> 444 <option value="15%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '15%' ); ?>><?php esc_html_e( '15%', 'super-testimonial' ); ?></option> 445 <option value="20%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '20%' ); ?>><?php esc_html_e( '20%', 'super-testimonial' ); ?></option> 446 <option value="25%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '25%' ); ?>><?php esc_html_e( '25%', 'super-testimonial' ); ?></option> 447 <option value="30%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '30%' ); ?>><?php esc_html_e( '30%', 'super-testimonial' ); ?></option> 448 <option value="40%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '40%' ); ?>><?php esc_html_e( '40%', 'super-testimonial' ); ?></option> 449 <option value="50%" <?php if ( isset ( $tp_img_border_radius ) ) selected( $tp_img_border_radius, '50%' ); ?>><?php esc_html_e( '50%', 'super-testimonial' ); ?></option> 438 450 </select> 439 451 </td> … … 442 454 <tr valign="top"> 443 455 <th scope="row"> 444 <label for="tp_maintitle_show_hide"><?php _e( 'Title', 'ktsttestimonial' ); ?></label>445 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Show/Hide Testimonial Title.', 'ktsttestimonial' ); ?></span>456 <label for="tp_maintitle_show_hide"><?php esc_html_e( 'Title', 'super-testimonial' ); ?></label> 457 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Show/Hide Testimonial Title.', 'super-testimonial' ); ?></span> 446 458 </th> 447 459 <td style="vertical-align: middle;"> 448 460 <div class="switch-field"> 449 461 <input type="radio" id="tp_maintitle_show" name="tp_maintitle_show_hide" value="1" <?php if ( $tp_maintitle_show_hide == 1 || $tp_maintitle_show_hide == '' ) echo 'checked'; ?>/> 450 <label for="tp_maintitle_show"><?php _e( 'Show', 'ktsttestimonial' ); ?></label>462 <label for="tp_maintitle_show"><?php esc_html_e( 'Show', 'super-testimonial' ); ?></label> 451 463 <input type="radio" id="tp_maintitle_hide" name="tp_maintitle_show_hide" value="2" <?php if ( $tp_maintitle_show_hide == 2 ) echo 'checked'; ?>/> 452 <label for="tp_maintitle_hide" class="tp_maintitle_hide"><?php _e( 'Hide', 'ktsttestimonial' ); ?></label>464 <label for="tp_maintitle_hide" class="tp_maintitle_hide"><?php esc_html_e( 'Hide', 'super-testimonial' ); ?></label> 453 465 </div> 454 466 </td> … … 457 469 <tr valign="top"> 458 470 <th scope="row"> 459 <label for="tp_title_color_option"><?php _e( 'Title Font Color', 'ktsttestimonial' ); ?></label>460 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set Testimonial Title Color.', 'ktsttestimonial' ); ?></span>461 </th> 462 <td style="vertical-align: middle;"> 463 <input type="text" id="tp_title_color_option" name="tp_title_color_option" value="<?php if ( $tp_title_color_option !='' ) {echo $tp_title_color_option; }else{echo "#000000"; } ?>" class="timezone_string">471 <label for="tp_title_color_option"><?php esc_html_e( 'Title Font Color', 'super-testimonial' ); ?></label> 472 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set Testimonial Title Color.', 'super-testimonial' ); ?></span> 473 </th> 474 <td style="vertical-align: middle;"> 475 <input type="text" id="tp_title_color_option" name="tp_title_color_option" value="<?php if ( $tp_title_color_option !='' ) {echo esc_attr($tp_title_color_option); }else{echo "#000000"; } ?>" class="timezone_string"> 464 476 </td> 465 477 </tr><!-- End Title Color --> … … 467 479 <tr valign="top"> 468 480 <th scope="row"> 469 <label for="tp_title_fontsize_option"><?php _e( 'Title Font Size', 'ktsttestimonial' ); ?></label>470 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Set Testimonial Title Font Size.', 'ktsttestimonial'); ?></span>471 </th> 472 <td style="vertical-align: middle;"> 473 <input type="number" name="tp_title_fontsize_option" id="tp_title_fontsize_option" min="10" max="45" class="timezone_string" required value="<?php if($tp_title_fontsize_option !=''){echo $tp_title_fontsize_option; }else{ echo '20';} ?>"> <br />481 <label for="tp_title_fontsize_option"><?php esc_html_e( 'Title Font Size', 'super-testimonial' ); ?></label> 482 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set Testimonial Title Font Size.', 'super-testimonial'); ?></span> 483 </th> 484 <td style="vertical-align: middle;"> 485 <input type="number" name="tp_title_fontsize_option" id="tp_title_fontsize_option" min="10" max="45" class="timezone_string" required value="<?php if($tp_title_fontsize_option !=''){echo esc_attr($tp_title_fontsize_option); }else{ echo '20';} ?>"> <br /> 474 486 </td> 475 487 </tr><!-- End Title Font Size--> … … 477 489 <tr valign="top"> 478 490 <th scope="row"> 479 <label for="tp_title_font_case"><?php _e('Title Text Transform', 'ktsttestimonial'); ?></label>480 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Set Testimonial Title Text Transform', 'ktsttestimonial'); ?></span>491 <label for="tp_title_font_case"><?php esc_html_e('Title Text Transform', 'super-testimonial'); ?></label> 492 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set Testimonial Title Text Transform', 'super-testimonial'); ?></span> 481 493 </th> 482 494 <td style="vertical-align: middle;"> 483 495 <select name="tp_title_font_case" id="tp_title_font_case" class="timezone_string"> 484 <option value="none" <?php if ( isset ( $tp_title_font_case ) ) selected( $tp_title_font_case, 'none' ); ?>><?php _e('Default', 'ktsttestimonial'); ?></option>485 <option value="capitalize" <?php if ( isset ( $tp_title_font_case ) ) selected( $tp_title_font_case, 'capitalize' ); ?>><?php _e('Capitalize', 'ktsttestimonial'); ?></option>486 <option value="lowercase" <?php if ( isset ( $tp_title_font_case ) ) selected( $tp_title_font_case, 'lowercase' ); ?>><?php _e('Lowercase', 'ktsttestimonial'); ?></option>487 <option value="uppercase" <?php if ( isset ( $tp_title_font_case ) ) selected( $tp_title_font_case, 'uppercase' ); ?>><?php _e('Uppercase', 'ktsttestimonial'); ?></option>496 <option value="none" <?php if ( isset ( $tp_title_font_case ) ) selected( $tp_title_font_case, 'none' ); ?>><?php esc_html_e('Default', 'super-testimonial'); ?></option> 497 <option value="capitalize" <?php if ( isset ( $tp_title_font_case ) ) selected( $tp_title_font_case, 'capitalize' ); ?>><?php esc_html_e('Capitalize', 'super-testimonial'); ?></option> 498 <option value="lowercase" <?php if ( isset ( $tp_title_font_case ) ) selected( $tp_title_font_case, 'lowercase' ); ?>><?php esc_html_e('Lowercase', 'super-testimonial'); ?></option> 499 <option value="uppercase" <?php if ( isset ( $tp_title_font_case ) ) selected( $tp_title_font_case, 'uppercase' ); ?>><?php esc_html_e('Uppercase', 'super-testimonial'); ?></option> 488 500 </select><br> 489 501 </td> … … 492 504 <tr valign="top"> 493 505 <th scope="row"> 494 <label for="tp_title_font_style"><?php _e('Title Text Style', 'ktsttestimonial'); ?></label>495 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Set Testimonial Title Text Style', 'ktsttestimonial'); ?></span>506 <label for="tp_title_font_style"><?php esc_html_e('Title Text Style', 'super-testimonial'); ?></label> 507 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set Testimonial Title Text Style', 'super-testimonial'); ?></span> 496 508 </th> 497 509 <td style="vertical-align: middle;"> 498 510 <select name="tp_title_font_style" id="tp_title_font_style" class="timezone_string"> 499 <option value="normal" <?php if ( isset ( $tp_title_font_style ) ) selected( $tp_title_font_style, 'normal' ); ?>><?php _e('Default', 'ktsttestimonial'); ?></option>500 <option value="italic" <?php if ( isset ( $tp_title_font_style ) ) selected( $tp_title_font_style, 'italic' ); ?>><?php _e('Italic', 'ktsttestimonial'); ?></option>511 <option value="normal" <?php if ( isset ( $tp_title_font_style ) ) selected( $tp_title_font_style, 'normal' ); ?>><?php esc_html_e('Default', 'super-testimonial'); ?></option> 512 <option value="italic" <?php if ( isset ( $tp_title_font_style ) ) selected( $tp_title_font_style, 'italic' ); ?>><?php esc_html_e('Italic', 'super-testimonial'); ?></option> 501 513 </select><br> 502 514 </td> … … 505 517 <tr valign="top"> 506 518 <th scope="row"> 507 <label for="tp_name_color_option"><?php _e( 'Name Font Color', 'ktsttestimonial' ); ?></label>508 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set color for testimonial givers name.', 'ktsttestimonial' ); ?></span>509 </th> 510 <td style="vertical-align: middle;"> 511 <input type="text" id="tp_name_color_option" name="tp_name_color_option" value="<?php if ( $tp_name_color_option !='' ) {echo $tp_name_color_option; }else{echo "#020202"; } ?>" class="timezone_string">519 <label for="tp_name_color_option"><?php esc_html_e( 'Name Font Color', 'super-testimonial' ); ?></label> 520 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for testimonial givers name.', 'super-testimonial' ); ?></span> 521 </th> 522 <td style="vertical-align: middle;"> 523 <input type="text" id="tp_name_color_option" name="tp_name_color_option" value="<?php if ( $tp_name_color_option !='' ) {echo esc_attr($tp_name_color_option); }else{echo "#020202"; } ?>" class="timezone_string"> 512 524 </td> 513 525 </tr><!-- End Name Color --> … … 515 527 <tr valign="top"> 516 528 <th scope="row"> 517 <label for="tp_name_fontsize_option"><?php _e( 'Name Font Size', 'ktsttestimonial' ); ?></label>518 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Choose a font size for testimonial name.', 'ktsttestimonial'); ?></span>519 </th> 520 <td style="vertical-align: middle;"> 521 <input type="number" name="tp_name_fontsize_option" id="tp_name_fontsize_option" min="10" max="45" class="timezone_string" required value="<?php if($tp_name_fontsize_option !=''){echo $tp_name_fontsize_option; }else{ echo '18';} ?>"> <br />529 <label for="tp_name_fontsize_option"><?php esc_html_e( 'Name Font Size', 'super-testimonial' ); ?></label> 530 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Choose a font size for testimonial name.', 'super-testimonial'); ?></span> 531 </th> 532 <td style="vertical-align: middle;"> 533 <input type="number" name="tp_name_fontsize_option" id="tp_name_fontsize_option" min="10" max="45" class="timezone_string" required value="<?php if($tp_name_fontsize_option !=''){echo esc_attr($tp_name_fontsize_option); }else{ echo '18';} ?>"> <br /> 522 534 </td> 523 535 </tr><!-- End Name Font Size--> … … 525 537 <tr valign="top"> 526 538 <th scope="row"> 527 <label for="tp_name_font_case"><?php _e('Name Text Transform', 'ktsttestimonial'); ?></label>528 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Select Name Text Transform', 'ktsttestimonial'); ?></span>539 <label for="tp_name_font_case"><?php esc_html_e('Name Text Transform', 'super-testimonial'); ?></label> 540 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Select Name Text Transform', 'super-testimonial'); ?></span> 529 541 </th> 530 542 <td style="vertical-align: middle;"> 531 543 <select name="tp_name_font_case" id="tp_name_font_case" class="timezone_string"> 532 <option value="none" <?php if ( isset ( $tp_name_font_case ) ) selected( $tp_name_font_case, 'none' ); ?>><?php _e('Default', 'ktsttestimonial'); ?></option>533 <option value="capitalize" <?php if ( isset ( $tp_name_font_case ) ) selected( $tp_name_font_case, 'capitalize' ); ?>><?php _e('Capitalize', 'ktsttestimonial'); ?></option>534 <option value="lowercase" <?php if ( isset ( $tp_name_font_case ) ) selected( $tp_name_font_case, 'lowercase' ); ?>><?php _e('Lowercase', 'ktsttestimonial'); ?></option>535 <option value="uppercase" <?php if ( isset ( $tp_name_font_case ) ) selected( $tp_name_font_case, 'uppercase' ); ?>><?php _e('Uppercase', 'ktsttestimonial'); ?></option>544 <option value="none" <?php if ( isset ( $tp_name_font_case ) ) selected( $tp_name_font_case, 'none' ); ?>><?php esc_html_e('Default', 'super-testimonial'); ?></option> 545 <option value="capitalize" <?php if ( isset ( $tp_name_font_case ) ) selected( $tp_name_font_case, 'capitalize' ); ?>><?php esc_html_e('Capitalize', 'super-testimonial'); ?></option> 546 <option value="lowercase" <?php if ( isset ( $tp_name_font_case ) ) selected( $tp_name_font_case, 'lowercase' ); ?>><?php esc_html_e('Lowercase', 'super-testimonial'); ?></option> 547 <option value="uppercase" <?php if ( isset ( $tp_name_font_case ) ) selected( $tp_name_font_case, 'uppercase' ); ?>><?php esc_html_e('Uppercase', 'super-testimonial'); ?></option> 536 548 </select><br> 537 549 </td> … … 540 552 <tr valign="top"> 541 553 <th scope="row"> 542 <label for="tp_name_font_style"><?php _e('Name Text Style', 'ktsttestimonial'); ?></label>543 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Select Name Text style', 'ktsttestimonial'); ?></span>554 <label for="tp_name_font_style"><?php esc_html_e('Name Text Style', 'super-testimonial'); ?></label> 555 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Select Name Text style', 'super-testimonial'); ?></span> 544 556 </th> 545 557 <td style="vertical-align: middle;"> 546 558 <select name="tp_name_font_style" id="tp_name_font_style" class="timezone_string"> 547 <option value="normal" <?php if ( isset ( $tp_name_font_style ) ) selected( $tp_name_font_style, 'normal' ); ?>><?php _e('Default', 'ktsttestimonial'); ?></option>548 <option value="italic" <?php if ( isset ( $tp_name_font_style ) ) selected( $tp_name_font_style, 'italic' ); ?>><?php _e('Italic', 'ktsttestimonial'); ?></option>559 <option value="normal" <?php if ( isset ( $tp_name_font_style ) ) selected( $tp_name_font_style, 'normal' ); ?>><?php esc_html_e('Default', 'super-testimonial'); ?></option> 560 <option value="italic" <?php if ( isset ( $tp_name_font_style ) ) selected( $tp_name_font_style, 'italic' ); ?>><?php esc_html_e('Italic', 'super-testimonial'); ?></option> 549 561 </select><br> 550 562 </td> … … 553 565 <tr valign="top"> 554 566 <th scope="row"> 555 <label for="tp_designation_show_hide"><?php _e( 'Designation', 'ktsttestimonial' ); ?></label>556 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Show/Hide Testimonial Designation.', 'ktsttestimonial' ); ?></span>567 <label for="tp_designation_show_hide"><?php esc_html_e( 'Designation', 'super-testimonial' ); ?></label> 568 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Show/Hide Testimonial Designation.', 'super-testimonial' ); ?></span> 557 569 </th> 558 570 <td style="vertical-align: middle;"> 559 571 <div class="switch-field"> 560 572 <input type="radio" id="tp_designation_show" name="tp_designation_show_hide" value="1" <?php if ( $tp_designation_show_hide == 1 || $tp_designation_show_hide == '' ) echo 'checked'; ?>/> 561 <label for="tp_designation_show"><?php _e( 'Show', 'ktsttestimonial' ); ?></label>573 <label for="tp_designation_show"><?php esc_html_e( 'Show', 'super-testimonial' ); ?></label> 562 574 <input type="radio" id="tp_designation_hide" name="tp_designation_show_hide" value="2" <?php if ( $tp_designation_show_hide == 2 ) echo 'checked'; ?>/> 563 <label for="tp_designation_hide"><?php _e( 'Hide', 'ktsttestimonial' ); ?><span class="mark"><?php _e( 'Pro', 'ktsttestimonial' ); ?></span></label>575 <label for="tp_designation_hide"><?php esc_html_e( 'Hide', 'super-testimonial' ); ?><span class="mark"><?php esc_html_e( 'Pro', 'super-testimonial' ); ?></span></label> 564 576 </div> 565 577 </td> … … 568 580 <tr valign="top"> 569 581 <th scope="row"> 570 <label for="tp_desig_fontsize_option"><?php _e( 'Designation Font Size', 'ktsttestimonial' ); ?></label>571 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Set Designation Font Size.', 'ktsttestimonial'); ?></span>572 </th> 573 <td style="vertical-align: middle;"> 574 <input type="number" name="tp_desig_fontsize_option" id="tp_desig_fontsize_option" min="10" max="45" class="timezone_string" required value="<?php if($tp_desig_fontsize_option !=''){echo $tp_desig_fontsize_option; }else{ echo '15';} ?>"> <br />582 <label for="tp_desig_fontsize_option"><?php esc_html_e( 'Designation Font Size', 'super-testimonial' ); ?></label> 583 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set Designation Font Size.', 'super-testimonial'); ?></span> 584 </th> 585 <td style="vertical-align: middle;"> 586 <input type="number" name="tp_desig_fontsize_option" id="tp_desig_fontsize_option" min="10" max="45" class="timezone_string" required value="<?php if($tp_desig_fontsize_option !=''){echo esc_attr($tp_desig_fontsize_option); }else{ echo '15';} ?>"> <br /> 575 587 </td> 576 588 </tr><!-- End Designation Font Size--> … … 578 590 <tr valign="top"> 579 591 <th scope="row"> 580 <label for="tp_designation_color_option"><?php _e( 'Designation Font Color', 'ktsttestimonial' ); ?></label>581 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set Designation Font Color.', 'ktsttestimonial' ); ?></span>582 </th> 583 <td style="vertical-align: middle;"> 584 <input type="text" id="tp_designation_color_option" name="tp_designation_color_option" value="<?php if ( $tp_designation_color_option !='' ) {echo $tp_designation_color_option; }else{echo "#666666"; } ?>" class="timezone_string">592 <label for="tp_designation_color_option"><?php esc_html_e( 'Designation Font Color', 'super-testimonial' ); ?></label> 593 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set Designation Font Color.', 'super-testimonial' ); ?></span> 594 </th> 595 <td style="vertical-align: middle;"> 596 <input type="text" id="tp_designation_color_option" name="tp_designation_color_option" value="<?php if ( $tp_designation_color_option !='' ) {echo esc_attr($tp_designation_color_option); }else{echo "#666666"; } ?>" class="timezone_string"> 585 597 </td> 586 598 </tr><!-- End Designation Font Color --> … … 588 600 <tr valign="top"> 589 601 <th scope="row"> 590 <label for="tp_designation_case"><?php _e('Designation Text Transform', 'ktsttestimonial'); ?></label>591 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Set Designation Text Transform', 'ktsttestimonial'); ?></span>602 <label for="tp_designation_case"><?php esc_html_e('Designation Text Transform', 'super-testimonial'); ?></label> 603 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set Designation Text Transform', 'super-testimonial'); ?></span> 592 604 </th> 593 605 <td style="vertical-align: middle;"> 594 606 <select name="tp_designation_case" id="tp_designation_case" class="timezone_string"> 595 <option value="none" <?php if ( isset ( $tp_designation_case ) ) selected( $tp_designation_case, 'none' ); ?>><?php _e('Default', 'ktsttestimonial'); ?></option>596 <option value="capitalize" <?php if ( isset ( $tp_designation_case ) ) selected( $tp_designation_case, 'capitalize' ); ?>><?php _e('Capitalize', 'ktsttestimonial'); ?></option>597 <option value="lowercase" <?php if ( isset ( $tp_designation_case ) ) selected( $tp_designation_case, 'lowercase' ); ?>><?php _e('Lowercase', 'ktsttestimonial'); ?></option>598 <option value="uppercase" <?php if ( isset ( $tp_designation_case ) ) selected( $tp_designation_case, 'uppercase' ); ?>><?php _e('Uppercase', 'ktsttestimonial'); ?></option>607 <option value="none" <?php if ( isset ( $tp_designation_case ) ) selected( $tp_designation_case, 'none' ); ?>><?php esc_html_e('Default', 'super-testimonial'); ?></option> 608 <option value="capitalize" <?php if ( isset ( $tp_designation_case ) ) selected( $tp_designation_case, 'capitalize' ); ?>><?php esc_html_e('Capitalize', 'super-testimonial'); ?></option> 609 <option value="lowercase" <?php if ( isset ( $tp_designation_case ) ) selected( $tp_designation_case, 'lowercase' ); ?>><?php esc_html_e('Lowercase', 'super-testimonial'); ?></option> 610 <option value="uppercase" <?php if ( isset ( $tp_designation_case ) ) selected( $tp_designation_case, 'uppercase' ); ?>><?php esc_html_e('Uppercase', 'super-testimonial'); ?></option> 599 611 </select><br> 600 612 </td> … … 603 615 <tr valign="top"> 604 616 <th scope="row"> 605 <label for="tp_designation_font_style"><?php _e('Designation Text Style', 'ktsttestimonial'); ?></label>606 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Set Designation Text style', 'ktsttestimonial'); ?></span>617 <label for="tp_designation_font_style"><?php esc_html_e('Designation Text Style', 'super-testimonial'); ?></label> 618 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set Designation Text style', 'super-testimonial'); ?></span> 607 619 </th> 608 620 <td style="vertical-align: middle;"> 609 621 <select name="tp_designation_font_style" id="tp_designation_font_style" class="timezone_string"> 610 <option value="normal" <?php if ( isset ( $tp_designation_font_style ) ) selected( $tp_designation_font_style, 'normal' ); ?>><?php _e('Default', 'ktsttestimonial'); ?></option>611 <option value="italic" <?php if ( isset ( $tp_designation_font_style ) ) selected( $tp_designation_font_style, 'italic' ); ?>><?php _e('Italic', 'ktsttestimonial'); ?></option>622 <option value="normal" <?php if ( isset ( $tp_designation_font_style ) ) selected( $tp_designation_font_style, 'normal' ); ?>><?php esc_html_e('Default', 'super-testimonial'); ?></option> 623 <option value="italic" <?php if ( isset ( $tp_designation_font_style ) ) selected( $tp_designation_font_style, 'italic' ); ?>><?php esc_html_e('Italic', 'super-testimonial'); ?></option> 612 624 </select><br> 613 625 </td> … … 616 628 <tr valign="top"> 617 629 <th scope="row"> 618 <label for="tp_company_show_hide"><?php _e( 'Company URL', 'ktsttestimonial' ); ?></label>619 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Show/Hide Company URL.', 'ktsttestimonial' ); ?></span>630 <label for="tp_company_show_hide"><?php esc_html_e( 'Company URL', 'super-testimonial' ); ?></label> 631 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Show/Hide Company URL.', 'super-testimonial' ); ?></span> 620 632 </th> 621 633 <td style="vertical-align: middle;"> 622 634 <div class="switch-field"> 623 635 <input type="radio" id="tp_company_show" name="tp_company_show_hide" value="1" <?php if ( $tp_company_show_hide == 1 || $tp_company_show_hide == '' ) echo 'checked'; ?>/> 624 <label for="tp_company_show"><?php _e( 'Show', 'ktsttestimonial' ); ?></label>636 <label for="tp_company_show"><?php esc_html_e( 'Show', 'super-testimonial' ); ?></label> 625 637 <input type="radio" id="tp_company_hide" name="tp_company_show_hide" value="2" <?php if ( $tp_company_show_hide == 2 ) echo 'checked'; ?>/> 626 <label for="tp_company_hide"><?php _e( 'Hide', 'ktsttestimonial' ); ?><span class="mark"><?php _e( 'Pro', 'ktsttestimonial' ); ?></span></label>638 <label for="tp_company_hide"><?php esc_html_e( 'Hide', 'super-testimonial' ); ?><span class="mark"><?php esc_html_e( 'Pro', 'super-testimonial' ); ?></span></label> 627 639 </div> 628 640 </td> … … 631 643 <tr valign="top"> 632 644 <th scope="row"> 633 <label for="tp_company_url_color"><?php _e( 'Company URL Color', 'ktsttestimonial' ); ?></label>634 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set color for testimonial givers company name.', 'ktsttestimonial' ); ?></span>635 </th> 636 <td style="vertical-align: middle;"> 637 <input type="text" id="tp_company_url_color" name="tp_company_url_color" value="<?php if ( $tp_company_url_color !='' ) {echo $tp_company_url_color; }else{echo "#666666"; } ?>" class="timezone_string">645 <label for="tp_company_url_color"><?php esc_html_e( 'Company URL Color', 'super-testimonial' ); ?></label> 646 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for testimonial givers company name.', 'super-testimonial' ); ?></span> 647 </th> 648 <td style="vertical-align: middle;"> 649 <input type="text" id="tp_company_url_color" name="tp_company_url_color" value="<?php if ( $tp_company_url_color !='' ) {echo esc_attr($tp_company_url_color); }else{echo "#666666"; } ?>" class="timezone_string"> 638 650 </td> 639 651 </tr><!-- End Url Color --> … … 641 653 <tr valign="top"> 642 654 <th scope="row"> 643 <label for="tp_content_color"><?php _e( 'Content Color', 'ktsttestimonial' ); ?></label>644 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set color for testimonial message.', 'ktsttestimonial' ); ?></span>645 </th> 646 <td style="vertical-align: middle;"> 647 <input type="text" id="tp_content_color" name="tp_content_color" value="<?php if ( $tp_content_color !='' ) {echo $tp_content_color; } else{ echo "#666666"; } ?>" class="timezone_string">655 <label for="tp_content_color"><?php esc_html_e( 'Content Color', 'super-testimonial' ); ?></label> 656 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set color for testimonial message.', 'super-testimonial' ); ?></span> 657 </th> 658 <td style="vertical-align: middle;"> 659 <input type="text" id="tp_content_color" name="tp_content_color" value="<?php if ( $tp_content_color !='' ) {echo esc_attr($tp_content_color); } else{ echo "#666666"; } ?>" class="timezone_string"> 648 660 </td> 649 661 </tr><!-- End Content Color --> … … 651 663 <tr valign="top"> 652 664 <th scope="row"> 653 <label for="tp_content_fontsize_option"><?php _e( 'Content Font Size', 'ktsttestimonial' ); ?></label>654 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Set font size for testimonial message.', 'ktsttestimonial'); ?></span>655 </th> 656 <td style="vertical-align: middle;"> 657 <input type="number" name="tp_content_fontsize_option" id="tp_content_fontsize_option" min="10" max="45" class="timezone_string" required value="<?php if($tp_content_fontsize_option !=''){echo $tp_content_fontsize_option; }else{ echo '15';} ?>"> <br />665 <label for="tp_content_fontsize_option"><?php esc_html_e( 'Content Font Size', 'super-testimonial' ); ?></label> 666 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set font size for testimonial message.', 'super-testimonial'); ?></span> 667 </th> 668 <td style="vertical-align: middle;"> 669 <input type="number" name="tp_content_fontsize_option" id="tp_content_fontsize_option" min="10" max="45" class="timezone_string" required value="<?php if($tp_content_fontsize_option !=''){echo esc_attr($tp_content_fontsize_option); }else{ echo '15';} ?>"> <br /> 658 670 </td> 659 671 </tr><!-- End Content Font Size--> … … 661 673 <tr valign="top"> 662 674 <th scope="row"> 663 <label for="tp_content_bg_color"><?php _e( 'Content Background Color', 'ktsttestimonial' ); ?></label>664 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set Testimonial Content Background Color.', 'ktsttestimonial' ); ?></span>665 </th> 666 <td style="vertical-align: middle;"> 667 <input type="text" id="tp_content_bg_color" name="tp_content_bg_color" value="<?php if ( $tp_content_bg_color !='' ) {echo $tp_content_bg_color; } else{ echo "#ffffff"; } ?>" class="timezone_string">675 <label for="tp_content_bg_color"><?php esc_html_e( 'Content Background Color', 'super-testimonial' ); ?></label> 676 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set Testimonial Content Background Color.', 'super-testimonial' ); ?></span> 677 </th> 678 <td style="vertical-align: middle;"> 679 <input type="text" id="tp_content_bg_color" name="tp_content_bg_color" value="<?php if ( $tp_content_bg_color !='' ) {echo esc_attr($tp_content_bg_color); } else{ echo "#ffffff"; } ?>" class="timezone_string"> 668 680 </td> 669 681 </tr><!-- End Content Background Color --> … … 671 683 <tr valign="top"> 672 684 <th scope="row"> 673 <label for="testimonial_word_limit"><?php _e( 'Word Limit:', 'ktsttestimonial' ); ?></label>674 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Set a word limit for the testimonial message.', 'ktsttestimonial'); ?></span>685 <label for="testimonial_word_limit"><?php esc_html_e( 'Word Limit:', 'super-testimonial' ); ?></label> 686 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set a word limit for the testimonial message.', 'super-testimonial'); ?></span> 675 687 </th> 676 688 <td style="vertical-align: middle;"> … … 681 693 <tr valign="top"> 682 694 <th scope="row"> 683 <label for="testimonial_read_more_text"><?php _e( 'Read More Text:', 'ktsttestimonial' ); ?></label>684 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Set Read More Text.', 'ktsttestimonial'); ?></span>695 <label for="testimonial_read_more_text"><?php esc_html_e( 'Read More Text:', 'super-testimonial' ); ?></label> 696 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set Read More Text.', 'super-testimonial'); ?></span> 685 697 </th> 686 698 <td style="vertical-align: middle;"> … … 691 703 <tr valign="top"> 692 704 <th scope="row"> 693 <label for="testimonial_read_more_color"><?php _e( 'Read More Text Color', 'ktsttestimonial' ); ?></label>694 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set Read More Text Color.', 'ktsttestimonial' ); ?></span>695 </th> 696 <td style="vertical-align: middle;"> 697 <input type="text" id="testimonial_read_more_color" name="testimonial_read_more_color" value="<?php if ( $testimonial_read_more_color !='' ) {echo $testimonial_read_more_color; } else{ echo "#000000"; } ?>" class="timezone_string">705 <label for="testimonial_read_more_color"><?php esc_html_e( 'Read More Text Color', 'super-testimonial' ); ?></label> 706 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set Read More Text Color.', 'super-testimonial' ); ?></span> 707 </th> 708 <td style="vertical-align: middle;"> 709 <input type="text" id="testimonial_read_more_color" name="testimonial_read_more_color" value="<?php if ( $testimonial_read_more_color !='' ) {echo esc_attr($testimonial_read_more_color); } else{ echo "#000000"; } ?>" class="timezone_string"> 698 710 </td> 699 711 </tr><!-- End Read More Text Color --> … … 701 713 <tr valign="top"> 702 714 <th scope="row"> 703 <label for="tp_show_rating_option"><?php _e( 'Rating', 'ktsttestimonial' ); ?></label>704 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Show/Hide Testimonial Rating.', 'ktsttestimonial' ); ?></span>715 <label for="tp_show_rating_option"><?php esc_html_e( 'Rating', 'super-testimonial' ); ?></label> 716 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Show/Hide Testimonial Rating.', 'super-testimonial' ); ?></span> 705 717 </th> 706 718 <td style="vertical-align: middle;"> 707 719 <div class="switch-field"> 708 720 <input type="radio" id="tp_show_rating_option" name="tp_show_rating_option" value="1" <?php if ( $tp_show_rating_option == 1 || $tp_show_rating_option == '' ) echo 'checked'; ?>/> 709 <label for="tp_show_rating_option"><?php _e( 'Show', 'ktsttestimonial' ); ?></label>721 <label for="tp_show_rating_option"><?php esc_html_e( 'Show', 'super-testimonial' ); ?></label> 710 722 <input type="radio" id="tp_hide_rating_option" name="tp_show_rating_option" value="2" <?php if ( $tp_show_rating_option == 2 ) echo 'checked'; ?>/> 711 <label for="tp_hide_rating_option"><?php _e( 'Hide', 'ktsttestimonial' ); ?><span class="mark"><?php _e( 'Pro', 'ktsttestimonial' ); ?></span></label>723 <label for="tp_hide_rating_option"><?php esc_html_e( 'Hide', 'super-testimonial' ); ?><span class="mark"><?php esc_html_e( 'Pro', 'super-testimonial' ); ?></span></label> 712 724 </div> 713 725 </td> … … 716 728 <tr valign="top"> 717 729 <th scope="row"> 718 <label for="tp_rating_style"><?php _e( 'Rating Style', 'ktsttestimonial' ); ?></label>719 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set testimonial form rating style.', ' ktsttestimonial' ); ?></span>730 <label for="tp_rating_style"><?php esc_html_e( 'Rating Style', 'super-testimonial' ); ?></label> 731 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set testimonial form rating style.', 'super-testimonial' ); ?></span> 720 732 </th> 721 733 <td style="vertical-align: middle;"> … … 744 756 <tr valign="top"> 745 757 <th scope="row"> 746 <label for="tp_rating_color"><?php _e( 'Rating Icon Color', 'ktsttestimonial' ); ?></label>747 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set Rating Icon Color.', 'ktsttestimonial' ); ?></span>748 </th> 749 <td style="vertical-align: middle;"> 750 <input type="text" id="tp_rating_color" name="tp_rating_color" value="<?php if ( $tp_rating_color !='' ) {echo $tp_rating_color; } else{ echo "#ffa900"; } ?>" class="timezone_string">758 <label for="tp_rating_color"><?php esc_html_e( 'Rating Icon Color', 'super-testimonial' ); ?></label> 759 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set Rating Icon Color.', 'super-testimonial' ); ?></span> 760 </th> 761 <td style="vertical-align: middle;"> 762 <input type="text" id="tp_rating_color" name="tp_rating_color" value="<?php if ( $tp_rating_color !='' ) {echo esc_attr($tp_rating_color); } else{ echo "#ffa900"; } ?>" class="timezone_string"> 751 763 </td> 752 764 </tr><!-- End Rating Color --> … … 754 766 <tr valign="top"> 755 767 <th scope="row"> 756 <label for="tp_rating_fontsize_option"><?php _e( 'Rating Font Size', 'ktsttestimonial' ); ?></label>757 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Set Rating Font Size.', 'ktsttestimonial'); ?></span>758 </th> 759 <td style="vertical-align: middle;"> 760 <input type="number" name="tp_rating_fontsize_option" id="tp_rating_fontsize_option" min="10" max="45" class="timezone_string" required value="<?php if($tp_rating_fontsize_option !=''){echo $tp_rating_fontsize_option; }else{ echo '15';} ?>"> <br />768 <label for="tp_rating_fontsize_option"><?php esc_html_e( 'Rating Font Size', 'super-testimonial' ); ?></label> 769 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set Rating Font Size.', 'super-testimonial'); ?></span> 770 </th> 771 <td style="vertical-align: middle;"> 772 <input type="number" name="tp_rating_fontsize_option" id="tp_rating_fontsize_option" min="10" max="45" class="timezone_string" required value="<?php if($tp_rating_fontsize_option !=''){echo esc_attr($tp_rating_fontsize_option); }else{ echo '15';} ?>"> <br /> 761 773 </td> 762 774 </tr><!-- End Content Font Size--> … … 764 776 <tr valign="top"> 765 777 <th scope="row"> 766 <label for="tp_show_item_bg_option"><?php _e( 'Item Background', 'ktsttestimonial' ); ?></label>767 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Show/Hide Testimonial Item Background Color.', 'ktsttestimonial' ); ?></span>778 <label for="tp_show_item_bg_option"><?php esc_html_e( 'Item Background', 'super-testimonial' ); ?></label> 779 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Show/Hide Testimonial Item Background Color.', 'super-testimonial' ); ?></span> 768 780 </th> 769 781 <td style="vertical-align: middle;"> 770 782 <div class="switch-field"> 771 783 <input type="radio" id="tp_show_item_bg_option" name="tp_show_item_bg_option" value="1" <?php if ( $tp_show_item_bg_option == 1 ) echo 'checked'; ?>/> 772 <label for="tp_show_item_bg_option"><?php _e( 'Show', 'ktsttestimonial' ); ?></label>784 <label for="tp_show_item_bg_option"><?php esc_html_e( 'Show', 'super-testimonial' ); ?></label> 773 785 <input type="radio" id="tp_hide_item_bg_option" name="tp_show_item_bg_option" value="2" <?php if ( $tp_show_item_bg_option == 2 || $tp_show_item_bg_option == '' ) echo 'checked'; ?>/> 774 <label for="tp_hide_item_bg_option"><?php _e( 'Hide', 'ktsttestimonial' ); ?></label>786 <label for="tp_hide_item_bg_option"><?php esc_html_e( 'Hide', 'super-testimonial' ); ?></label> 775 787 </div> 776 788 </td> … … 779 791 <tr valign="top"> 780 792 <th scope="row"> 781 <label for="tp_item_bg_color"><?php _e( 'Background Color', 'ktsttestimonial' ); ?></label>782 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set background color for item.', 'ktsttestimonial' ); ?></span>783 </th> 784 <td style="vertical-align: middle;"> 785 <input type="text" id="tp_item_bg_color" name="tp_item_bg_color" value="<?php if ( $tp_item_bg_color !='' ) {echo $tp_item_bg_color; } else{ echo "transparent"; } ?>" class="timezone_string">793 <label for="tp_item_bg_color"><?php esc_html_e( 'Background Color', 'super-testimonial' ); ?></label> 794 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set background color for item.', 'super-testimonial' ); ?></span> 795 </th> 796 <td style="vertical-align: middle;"> 797 <input type="text" id="tp_item_bg_color" name="tp_item_bg_color" value="<?php if ( $tp_item_bg_color !='' ) {echo esc_attr($tp_item_bg_color); } else{ echo "transparent"; } ?>" class="timezone_string"> 786 798 </td> 787 799 </tr><!-- End Item Background Color --> … … 789 801 <tr valign="top"> 790 802 <th scope="row"> 791 <label for="tp_item_padding"><?php _e( 'Item Padding', 'ktsttestimonial' ); ?></label>792 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Select Padding for items.', 'ktsttestimonial' ); ?></span>793 </th> 794 <td style="vertical-align: middle;"> 795 <input size="5" type="number" name="tp_item_padding" id="tp_item_padding" maxlength="3" class="timezone_string" value="<?php if ( $tp_item_padding != '' ) { echo $tp_item_padding; } else { echo '20'; } ?>">803 <label for="tp_item_padding"><?php esc_html_e( 'Item Padding', 'super-testimonial' ); ?></label> 804 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Select Padding for items.', 'super-testimonial' ); ?></span> 805 </th> 806 <td style="vertical-align: middle;"> 807 <input size="5" type="number" name="tp_item_padding" id="tp_item_padding" maxlength="3" class="timezone_string" value="<?php if ( $tp_item_padding != '' ) { echo esc_attr($tp_item_padding); } else { echo '20'; } ?>"> 796 808 </td> 797 809 </tr> <!-- End Item Padding --> … … 806 818 <div class="wrap"> 807 819 <div class="option-box"> 808 <p class="option-title"><?php _e( 'Slider Settings','ktsttestimonial' ); ?></p>820 <p class="option-title"><?php esc_html_e( 'Slider Settings','super-testimonial' ); ?></p> 809 821 <table class="form-table"> 810 822 <tr valign="top"> 811 823 <th scope="row"> 812 <label for="autoplay"><?php _e( 'Autoplay', 'ktsttestimonial' ); ?></label>813 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Choose an option whether you want the slider autoplay or not.', 'ktsttestimonial' ); ?></span>824 <label for="autoplay"><?php esc_html_e( 'Autoplay', 'super-testimonial' ); ?></label> 825 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Choose an option whether you want the slider autoplay or not.', 'super-testimonial' ); ?></span> 814 826 </th> 815 827 <td style="vertical-align: middle;"> 816 828 <div class="switch-field"> 817 829 <input type="radio" id="autoplay_true" name="autoplay" value="true" <?php if ( $autoplay == 'true' || $autoplay == '' ) echo 'checked'; ?>/> 818 <label for="autoplay_true"><?php _e( 'Yes', 'ktsttestimonial' ); ?></label>830 <label for="autoplay_true"><?php esc_html_e( 'Yes', 'super-testimonial' ); ?></label> 819 831 <input type="radio" id="autoplay_false" name="autoplay" value="false" <?php if ( $autoplay == 'false' ) echo 'checked'; ?>/> 820 <label for="autoplay_false"><?php _e( 'No', 'ktsttestimonial' ); ?></label>832 <label for="autoplay_false"><?php esc_html_e( 'No', 'super-testimonial' ); ?></label> 821 833 </div> 822 834 </td> … … 825 837 <tr valign="top"> 826 838 <th scope="row"> 827 <label for="autoplay_speed"><?php _e( 'Slide Delay', 'ktsttestimonial' ); ?></label>828 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Select a value for sliding speed.', 'ktsttestimonial' ); ?></span>839 <label for="autoplay_speed"><?php esc_html_e( 'Slide Delay', 'super-testimonial' ); ?></label> 840 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Select a value for sliding speed.', 'super-testimonial' ); ?></span> 829 841 </th> 830 842 <td style="vertical-align: middle;" class="auto_play"> 831 843 832 <input type="range" step="100" min="100" max="5000" value="<?php if ( $autoplay_speed !='' ) { echo $autoplay_speed; } else{ echo '700'; } ?>" class="slider" id="myRange"><br>833 <input size="5" type="text" name="autoplay_speed" id="autoplay_speed" maxlength="4" class="timezone_string" readonly value="<?php if ( $autoplay_speed !='' ) {echo $autoplay_speed; }else{ echo '700'; } ?>">844 <input type="range" step="100" min="100" max="5000" value="<?php if ( $autoplay_speed !='' ) { echo esc_attr($autoplay_speed); } else{ echo '700'; } ?>" class="slider" id="myRange"><br> 845 <input size="5" type="text" name="autoplay_speed" id="autoplay_speed" maxlength="4" class="timezone_string" readonly value="<?php if ( $autoplay_speed !='' ) {echo esc_attr($autoplay_speed); }else{ echo '700'; } ?>"> 834 846 </td> 835 847 </tr> <!-- End Slide Delay --> … … 837 849 <tr valign="top"> 838 850 <th scope="row"> 839 <label for="stop_hover"><?php _e( 'Stop Hover', 'ktsttestimonial' ); ?></label>840 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Select an option whether you want to pause sliding on mouse hover.', 'ktsttestimonial' ); ?></span>851 <label for="stop_hover"><?php esc_html_e( 'Stop Hover', 'super-testimonial' ); ?></label> 852 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Select an option whether you want to pause sliding on mouse hover.', 'super-testimonial' ); ?></span> 841 853 </th> 842 854 <td style="vertical-align: middle;"> 843 855 <div class="switch-field"> 844 856 <input type="radio" id="stop_hover_true" name="stop_hover" value="true" <?php if ( $stop_hover == 'true' || $stop_hover == '' ) echo 'checked'; ?>/> 845 <label for="stop_hover_true"><?php _e( 'Yes', 'ktsttestimonial' ); ?></label>857 <label for="stop_hover_true"><?php esc_html_e( 'Yes', 'super-testimonial' ); ?></label> 846 858 <input type="radio" id="stop_hover_false" name="stop_hover" value="false" <?php if ( $stop_hover == 'false' ) echo 'checked'; ?>/> 847 <label for="stop_hover_false"><?php _e( 'No', 'ktsttestimonial' ); ?></label>859 <label for="stop_hover_false"><?php esc_html_e( 'No', 'super-testimonial' ); ?></label> 848 860 </div> 849 861 </td> … … 852 864 <tr valign="top"> 853 865 <th scope="row"> 854 <label for="autoplaytimeout"><?php _e( 'Autoplay Time Out (Sec)', 'ktsttestimonial' ); ?></label>855 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Select an option for autoplay time out.', 'ktsttestimonial' ); ?></span>866 <label for="autoplaytimeout"><?php esc_html_e( 'Autoplay Time Out (Sec)', 'super-testimonial' ); ?></label> 867 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Select an option for autoplay time out.', 'super-testimonial' ); ?></span> 856 868 </th> 857 869 <td style="vertical-align: middle;"> 858 870 <select name="autoplaytimeout" id="autoplaytimeout" class="timezone_string"> 859 <option value="3000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '3000' ); ?>><?php _e( '3', 'ktsttestimonial' ); ?></option>860 <option value="1000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '1000' ); ?>><?php _e( '1', 'ktsttestimonial' ); ?></option>861 <option value="2000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '2000' ); ?>><?php _e( '2', 'ktsttestimonial' ); ?></option>862 <option value="4000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '4000' ); ?>><?php _e( '4', 'ktsttestimonial' ); ?></option>863 <option value="5000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '5000' ); ?>><?php _e( '5', 'ktsttestimonial' ); ?></option>864 <option value="6000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '6000' ); ?>><?php _e( '6', 'ktsttestimonial' ); ?></option>865 <option value="7000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '7000' ); ?>><?php _e( '7', 'ktsttestimonial' ); ?></option>866 <option value="8000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '8000' ); ?>><?php _e( '8', 'ktsttestimonial' ); ?></option>867 <option value="9000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '9000' ); ?>><?php _e( '9', 'ktsttestimonial' ); ?></option>868 <option value="10000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '10000' ); ?>><?php _e( '10', 'ktsttestimonial' ); ?></option>871 <option value="3000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '3000' ); ?>><?php esc_html_e( '3', 'super-testimonial' ); ?></option> 872 <option value="1000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '1000' ); ?>><?php esc_html_e( '1', 'super-testimonial' ); ?></option> 873 <option value="2000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '2000' ); ?>><?php esc_html_e( '2', 'super-testimonial' ); ?></option> 874 <option value="4000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '4000' ); ?>><?php esc_html_e( '4', 'super-testimonial' ); ?></option> 875 <option value="5000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '5000' ); ?>><?php esc_html_e( '5', 'super-testimonial' ); ?></option> 876 <option value="6000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '6000' ); ?>><?php esc_html_e( '6', 'super-testimonial' ); ?></option> 877 <option value="7000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '7000' ); ?>><?php esc_html_e( '7', 'super-testimonial' ); ?></option> 878 <option value="8000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '8000' ); ?>><?php esc_html_e( '8', 'super-testimonial' ); ?></option> 879 <option value="9000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '9000' ); ?>><?php esc_html_e( '9', 'super-testimonial' ); ?></option> 880 <option value="10000" <?php if ( isset ( $autoplaytimeout ) ) selected( $autoplaytimeout, '10000' ); ?>><?php esc_html_e( '10', 'super-testimonial' ); ?></option> 869 881 </select> 870 882 </td> … … 873 885 <tr valign="top"> 874 886 <th scope="row"> 875 <label for="item_no"><?php e cho __('Testimonial Per Slide', 'ktsttestimonial'); ?></label>876 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Set testimonial per slide at a time.', 'ktsttestimonial'); ?></span>887 <label for="item_no"><?php esc_html_e('Testimonial Per Slide', 'super-testimonial'); ?></label> 888 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set testimonial per slide at a time.', 'super-testimonial'); ?></span> 877 889 </th> 878 890 <td style="vertical-align:middle;"> … … 882 894 <div class="tp-device-header"> 883 895 <span class="dashicons dashicons-desktop"></span> 884 <span><?php e cho __('Desktop', 'ktsttestimonial'); ?></span>896 <span><?php esc_html_e('Desktop', 'super-testimonial'); ?></span> 885 897 </div> 886 898 <input type="number" name="item_no" id="item_no" value="<?php echo esc_attr($item_no); ?>" min="1" max="10"> … … 891 903 <div class="tp-device-header"> 892 904 <span class="dashicons dashicons-laptop"></span> 893 <span><?php e cho __('Laptop', 'ktsttestimonial'); ?></span>905 <span><?php esc_html_e('Laptop', 'super-testimonial'); ?></span> 894 906 </div> 895 907 <input type="number" name="itemsdesktop" id="itemsdesktop" value="<?php echo esc_attr($itemsdesktop); ?>" min="1" max="10"> … … 900 912 <div class="tp-device-header"> 901 913 <span class="dashicons dashicons-tablet"></span> 902 <span><?php e cho __('Tablet', 'ktsttestimonial'); ?></span>914 <span><?php esc_html_e('Tablet', 'super-testimonial'); ?></span> 903 915 </div> 904 916 <input type="number" name="itemsdesktopsmall" id="itemsdesktopsmall" value="<?php echo esc_attr($itemsdesktopsmall); ?>" min="1" max="10"> … … 909 921 <div class="tp-device-header"> 910 922 <span class="dashicons dashicons-smartphone"></span> 911 <span><?php e cho __('Mobile', 'ktsttestimonial'); ?></span>923 <span><?php esc_html_e('Mobile', 'super-testimonial'); ?></span> 912 924 </div> 913 925 <input type="number" name="itemsmobile" id="itemsmobile" value="<?php echo esc_attr($itemsmobile); ?>" min="1" max="10"> … … 920 932 <tr valign="top"> 921 933 <th scope="row"> 922 <label for="loop"><?php _e( 'Loop', 'ktsttestimonial' ); ?></label>923 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Choose an option whether you want to loop the sliders.', 'ktsttestimonial' ); ?></span>934 <label for="loop"><?php esc_html_e( 'Loop', 'super-testimonial' ); ?></label> 935 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Choose an option whether you want to loop the sliders.', 'super-testimonial' ); ?></span> 924 936 </th> 925 937 <td style="vertical-align: middle;"> 926 938 <div class="switch-field"> 927 939 <input type="radio" id="loop_true" name="loop" value="true" <?php if ( $loop == 'true' || $loop == '' ) echo 'checked'; ?>/> 928 <label for="loop_true"><?php _e( 'Yes', 'ktsttestimonial' ); ?></label>940 <label for="loop_true"><?php esc_html_e( 'Yes', 'super-testimonial' ); ?></label> 929 941 <input type="radio" id="loop_false" name="loop" value="false" <?php if ( $loop == 'false' ) echo 'checked'; ?>/> 930 <label for="loop_false"><?php _e( 'No', 'ktsttestimonial' ); ?></label>942 <label for="loop_false"><?php esc_html_e( 'No', 'super-testimonial' ); ?></label> 931 943 </div> 932 944 </td> … … 936 948 <tr valign="top"> 937 949 <th scope="row"> 938 <label for="margin"><?php _e( 'Margin', 'ktsttestimonial' ); ?></label>939 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Select margin for a slider item.', 'ktsttestimonial' ); ?></span>940 </th> 941 <td style="vertical-align: middle;"> 942 <input size="5" type="number" name="margin" id="margin_top" maxlength="3" class="timezone_string" value="<?php if ( $margin != '' ) { echo $margin; } else { echo '15'; } ?>">950 <label for="margin"><?php esc_html_e( 'Margin', 'super-testimonial' ); ?></label> 951 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Select margin for a slider item.', 'super-testimonial' ); ?></span> 952 </th> 953 <td style="vertical-align: middle;"> 954 <input size="5" type="number" name="margin" id="margin_top" maxlength="3" class="timezone_string" value="<?php if ( $margin != '' ) { echo esc_attr($margin); } else { echo '15'; } ?>"> 943 955 </td> 944 956 </tr> … … 947 959 <tr valign="top"> 948 960 <th scope="row"> 949 <label for="navigation"><?php _e( 'Navigation', 'ktsttestimonial' ); ?></label>950 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Choose an option whether you want navigation option or not.', 'ktsttestimonial' ); ?></span>961 <label for="navigation"><?php esc_html_e( 'Navigation', 'super-testimonial' ); ?></label> 962 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Choose an option whether you want navigation option or not.', 'super-testimonial' ); ?></span> 951 963 </th> 952 964 <td style="vertical-align: middle;"> 953 965 <div class="switch-field"> 954 966 <input type="radio" id="navigation_true" name="navigation" value="true" <?php if ( $navigation == 'true' || $navigation == '' ) echo 'checked'; ?>/> 955 <label for="navigation_true"><?php _e( 'Yes', 'ktsttestimonial' ); ?></label>967 <label for="navigation_true"><?php esc_html_e( 'Yes', 'super-testimonial' ); ?></label> 956 968 <input type="radio" id="navigation_false" name="navigation" value="false" <?php if ( $navigation == 'false' ) echo 'checked'; ?>/> 957 <label for="navigation_false"><?php _e( 'No', 'ktsttestimonial' ); ?><span class="mark"><?php _e( 'Pro', 'ktsttestimonial' ); ?></span></label>969 <label for="navigation_false"><?php esc_html_e( 'No', 'super-testimonial' ); ?><span class="mark"><?php esc_html_e( 'Pro', 'super-testimonial' ); ?></span></label> 958 970 </div> 959 971 </td> … … 963 975 <tr valign="top" id="navi_align_controller" style="<?php if ( $navigation == 'false') { echo "display:none;"; }?>"> 964 976 <th scope="row"> 965 <label for="navigation_align"><?php _e( 'Navigation Align', 'ktsttestimonial' ); ?></label>966 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set the alignment of the navigation tool.' ); ?></span>977 <label for="navigation_align"><?php esc_html_e( 'Navigation Align', 'super-testimonial' ); ?></label> 978 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set the alignment of the navigation tool.', 'super-testimonial' ); ?></span> 967 979 </th> 968 980 <td style="vertical-align: middle;"> 969 981 <div class="switch-field"> 970 982 <input type="radio" id="navigation_align_left" name="navigation_align" value="left" <?php if ( $navigation_align == 'left' ) echo 'checked'; ?>/> 971 <label for="navigation_align_left"><?php _e( 'Top Left', 'ktsttestimonial' ); ?></label>983 <label for="navigation_align_left"><?php esc_html_e( 'Top Left', 'super-testimonial' ); ?></label> 972 984 <input type="radio" id="navigation_align_center" name="navigation_align" value="center" <?php if ( $navigation_align == 'center' ) echo 'checked'; ?>/> 973 <label for="navigation_align_center"><?php _e( 'Center', 'ktsttestimonial' ); ?></label>985 <label for="navigation_align_center"><?php esc_html_e( 'Center', 'super-testimonial' ); ?></label> 974 986 <input type="radio" id="navigation_align_right" name="navigation_align" value="right" <?php if ( $navigation_align == 'right' || $navigation_align == '' ) echo 'checked'; ?>/> 975 <label for="navigation_align_right"><?php _e( 'Top Right', 'ktsttestimonial' ); ?></label>987 <label for="navigation_align_right"><?php esc_html_e( 'Top Right', 'super-testimonial' ); ?></label> 976 988 </div> 977 989 </td> … … 981 993 <tr valign="top" id="navi_style_controller" style="<?php if ( $navigation == 'false') { echo "display:none;"; }?>"> 982 994 <th scope="row"> 983 <label for="navigation_style"><?php _e( 'Navigation Style', 'ktsttestimonial' ); ?></label>984 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set the style of navigation tool.' ); ?></span>995 <label for="navigation_style"><?php esc_html_e( 'Navigation Style', 'super-testimonial' ); ?></label> 996 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set the style of navigation tool.', 'super-testimonial' ); ?></span> 985 997 </th> 986 998 <td style="vertical-align: middle;"> 987 999 <div class="switch-field"> 988 1000 <input type="radio" id="navigation_style_left" name="navigation_style" value="0" <?php if ( $navigation_style == '0' ) echo 'checked'; ?>/> 989 <label for="navigation_style_left"><?php _e( 'Default', 'ktsttestimonial' ); ?></label>1001 <label for="navigation_style_left"><?php esc_html_e( 'Default', 'super-testimonial' ); ?></label> 990 1002 <input type="radio" id="navigation_style_center" name="navigation_style" value="50" <?php if ( $navigation_style == '50' || $navigation_style == '' ) echo 'checked'; ?>/> 991 <label for="navigation_style_center"><?php _e( 'Round', 'ktsttestimonial' ); ?><span class="mark"><?php _e( 'Pro', 'ktsttestimonial' ); ?></span></label>1003 <label for="navigation_style_center"><?php esc_html_e( 'Round', 'super-testimonial' ); ?><span class="mark"><?php esc_html_e( 'Pro', 'super-testimonial' ); ?></span></label> 992 1004 </div> 993 1005 </td> … … 997 1009 <tr valign="top" id="navi_color_controller" style="<?php if ( $navigation == 'false') { echo "display:none;"; }?>"> 998 1010 <th scope="row"> 999 <label for="nav_text_color"><?php _e( 'Navigation Color', 'ktsttestimonial' ); ?></label>1000 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Pick a color for navigation tool.', 'ktsttestimonial' ); ?></span>1001 </th> 1002 <td style="vertical-align: middle;"> 1003 <input type="text" id="nav_text_color" size="5" type="text" name="nav_text_color" value="<?php if ( $nav_text_color != '' ) {echo $nav_text_color; } else{ echo "#020202"; } ?>" class="timezone_string">1011 <label for="nav_text_color"><?php esc_html_e( 'Navigation Color', 'super-testimonial' ); ?></label> 1012 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for navigation tool.', 'super-testimonial' ); ?></span> 1013 </th> 1014 <td style="vertical-align: middle;"> 1015 <input type="text" id="nav_text_color" size="5" type="text" name="nav_text_color" value="<?php if ( $nav_text_color != '' ) {echo esc_attr($nav_text_color); } else{ echo "#020202"; } ?>" class="timezone_string"> 1004 1016 </td> 1005 1017 </tr> … … 1008 1020 <tr valign="top" id="navi_bgcolor_controller" style="<?php if ( $navigation == 'false') { echo "display:none;"; }?>"> 1009 1021 <th scope="row"> 1010 <label for="nav_bg_color"><?php _e( 'Navigation Background', 'ktsttestimonial' ); ?></label>1011 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Pick a color for background of navigation tool.', 'ktsttestimonial' ); ?></span>1012 </th> 1013 <td style="vertical-align: middle;"> 1014 <input id="nav_bg_color" type="text" name="nav_bg_color" value="<?php if ( $nav_bg_color !='' ) {echo $nav_bg_color; } else{ echo "#f5f5f5"; } ?>" class="timezone_string">1022 <label for="nav_bg_color"><?php esc_html_e( 'Navigation Background', 'super-testimonial' ); ?></label> 1023 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for background of navigation tool.', 'super-testimonial' ); ?></span> 1024 </th> 1025 <td style="vertical-align: middle;"> 1026 <input id="nav_bg_color" type="text" name="nav_bg_color" value="<?php if ( $nav_bg_color !='' ) {echo esc_attr($nav_bg_color); } else{ echo "#f5f5f5"; } ?>" class="timezone_string"> 1015 1027 </td> 1016 1028 </tr> … … 1019 1031 <tr valign="top" id="navi_color_hover_controller" style="<?php if ( $navigation == 'false') { echo "display:none;"; }?>"> 1020 1032 <th scope="row"> 1021 <label for="nav_text_color_hover"><?php _e( 'Navigation Color(Hover)', 'ktsttestimonial' ); ?></label>1022 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Pick a color for navigation tool on mouse hover.', 'ktsttestimonial' ); ?></span>1023 </th> 1024 <td style="vertical-align: middle;"> 1025 <input id="nav_text_color_hover" type="text" name="nav_text_color_hover" value="<?php if ( $nav_text_color_hover != '' ) {echo $nav_text_color_hover; } else{ echo "#020202"; } ?>" class="timezone_string">1033 <label for="nav_text_color_hover"><?php esc_html_e( 'Navigation Color(Hover)', 'super-testimonial' ); ?></label> 1034 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for navigation tool on mouse hover.', 'super-testimonial' ); ?></span> 1035 </th> 1036 <td style="vertical-align: middle;"> 1037 <input id="nav_text_color_hover" type="text" name="nav_text_color_hover" value="<?php if ( $nav_text_color_hover != '' ) {echo esc_attr($nav_text_color_hover); } else{ echo "#020202"; } ?>" class="timezone_string"> 1026 1038 </td> 1027 1039 </tr> … … 1030 1042 <tr valign="top" id="navi_bgcolor_hover_controller" style="<?php if ( $navigation == 'false') { echo "display:none;"; }?>"> 1031 1043 <th scope="row"> 1032 <label for="nav_bg_color_hover"><?php _e( 'Navigation Background(Hover)', 'ktsttestimonial' ); ?></label>1033 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Pick a color for background of navigation tool on mouse hover.', 'ktsttestimonial' ); ?></span>1034 </th> 1035 <td style="vertical-align: middle;"> 1036 <input id="nav_bg_color_hover" type="text" name="nav_bg_color_hover" value="<?php if ( $nav_bg_color_hover !='' ) {echo $nav_bg_color_hover; } else{ echo "#000000"; } ?>" class="timezone_string">1044 <label for="nav_bg_color_hover"><?php esc_html_e( 'Navigation Background(Hover)', 'super-testimonial' ); ?></label> 1045 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for background of navigation tool on mouse hover.', 'super-testimonial' ); ?></span> 1046 </th> 1047 <td style="vertical-align: middle;"> 1048 <input id="nav_bg_color_hover" type="text" name="nav_bg_color_hover" value="<?php if ( $nav_bg_color_hover !='' ) {echo esc_attr($nav_bg_color_hover); } else{ echo "#000000"; } ?>" class="timezone_string"> 1037 1049 </td> 1038 1050 </tr> … … 1041 1053 <tr valign="top"> 1042 1054 <th scope="row"> 1043 <label for="pagination"><?php _e( 'Pagination', 'ktsttestimonial' ); ?></label>1044 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Choose an option whether you want pagination option or not.', 'ktsttestimonial' ); ?></span>1055 <label for="pagination"><?php esc_html_e( 'Pagination', 'super-testimonial' ); ?></label> 1056 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Choose an option whether you want pagination option or not.', 'super-testimonial' ); ?></span> 1045 1057 </th> 1046 1058 <td style="vertical-align: middle;"> 1047 1059 <div class="switch-field"> 1048 1060 <input type="radio" id="pagination_true" name="pagination" value="true" <?php if ( $pagination == 'true' || $pagination == '' ) echo 'checked'; ?>/> 1049 <label for="pagination_true"><?php _e( 'Yes', 'ktsttestimonial' ); ?></label>1061 <label for="pagination_true"><?php esc_html_e( 'Yes', 'super-testimonial' ); ?></label> 1050 1062 <input type="radio" id="pagination_false" name="pagination" value="false" <?php if ( $pagination == 'false' ) echo 'checked'; ?>/> 1051 <label for="pagination_false"><?php _e( 'No', 'ktsttestimonial' ); ?><span class="mark"><?php _e( 'Pro', 'ktsttestimonial' ); ?></span></label>1063 <label for="pagination_false"><?php esc_html_e( 'No', 'super-testimonial' ); ?><span class="mark"><?php esc_html_e( 'Pro', 'super-testimonial' ); ?></span></label> 1052 1064 </div> 1053 1065 </td> … … 1057 1069 <tr valign="top" id="pagi_align_controller" style="<?php if ( $pagination == 'false') { echo "display:none;"; }?>"> 1058 1070 <th scope="row"> 1059 <label for="pagination_align"><?php _e( 'Pagination Align', 'ktsttestimonial' ); ?></label>1060 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set the alignment of pagination.', 'ktsttestimonial' ); ?></span>1071 <label for="pagination_align"><?php esc_html_e( 'Pagination Align', 'super-testimonial' ); ?></label> 1072 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set the alignment of pagination.', 'super-testimonial' ); ?></span> 1061 1073 </th> 1062 1074 <td style="vertical-align: middle;"> 1063 1075 <div class="switch-field"> 1064 1076 <input type="radio" id="pagination_align_left" name="pagination_align" value="left" <?php if ( $pagination_align == 'left' ) echo 'checked'; ?>/> 1065 <label for="pagination_align_left"><?php _e( 'Left', 'ktsttestimonial' ); ?><span class="mark"><?php _e( 'Pro', 'ktsttestimonial' ); ?></span></label>1077 <label for="pagination_align_left"><?php esc_html_e( 'Left', 'super-testimonial' ); ?><span class="mark"><?php esc_html_e( 'Pro', 'super-testimonial' ); ?></span></label> 1066 1078 <input type="radio" id="pagination_align_center" name="pagination_align" value="center" <?php if ( $pagination_align == 'center' || $pagination_align == '' ) echo 'checked'; ?>/> 1067 <label for="pagination_align_center"><?php _e( 'Center', 'ktsttestimonial' ); ?></label>1079 <label for="pagination_align_center"><?php esc_html_e( 'Center', 'super-testimonial' ); ?></label> 1068 1080 <input type="radio" id="pagination_align_right" name="pagination_align" value="right" <?php if ( $pagination_align == 'right' ) echo 'checked'; ?>/> 1069 <label for="pagination_align_right"><?php _e( 'Right', 'ktsttestimonial' ); ?><span class="mark"><?php _e( 'Pro', 'ktsttestimonial' ); ?></span></label>1081 <label for="pagination_align_right"><?php esc_html_e( 'Right', 'super-testimonial' ); ?><span class="mark"><?php esc_html_e( 'Pro', 'super-testimonial' ); ?></span></label> 1070 1082 </div> 1071 1083 </td> … … 1075 1087 <tr valign="top" id="pagi_style_controller" style="<?php if ( $pagination == 'false') { echo "display:none;"; }?>"> 1076 1088 <th scope="row"> 1077 <label for="pagination_style"><?php _e( 'Pagination Style', 'ktsttestimonial' ); ?></label>1078 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Set the style of pagination tool.', 'ktsttestimonial' ); ?></span>1089 <label for="pagination_style"><?php esc_html_e( 'Pagination Style', 'super-testimonial' ); ?></label> 1090 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Set the style of pagination tool.', 'super-testimonial' ); ?></span> 1079 1091 </th> 1080 1092 <td style="vertical-align: middle;"> 1081 1093 <div class="switch-field"> 1082 1094 <input type="radio" id="pagination_style_left" name="pagination_style" value="0" <?php if ( $pagination_style == '0' ) echo 'checked'; ?>/> 1083 <label for="pagination_style_left"><?php _e( 'Default', 'ktsttestimonial' ); ?></label>1095 <label for="pagination_style_left"><?php esc_html_e( 'Default', 'super-testimonial' ); ?></label> 1084 1096 <input type="radio" id="pagination_style_center" name="pagination_style" value="50" <?php if ( $pagination_style == '50' || $pagination_style == '' ) echo 'checked'; ?>/> 1085 <label for="pagination_style_center"><?php _e( 'Round', 'ktsttestimonial' ); ?><span class="mark"><?php _e( 'Pro', 'ktsttestimonial' ); ?></span></label>1097 <label for="pagination_style_center"><?php esc_html_e( 'Round', 'super-testimonial' ); ?><span class="mark"><?php esc_html_e( 'Pro', 'super-testimonial' ); ?></span></label> 1086 1098 </div> 1087 1099 </td> … … 1091 1103 <tr valign="top" id="pagi_color_controller" style="<?php if ( $pagination == 'false') { echo "display:none;"; }?>"> 1092 1104 <th scope="row"> 1093 <label for="pagination_bg_color"><?php _e( 'Pagination Background Color', 'ktsttestimonial' ); ?></label>1094 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Pick a color for pagination content.', 'ktsttestimonial' ); ?></span>1095 </th> 1096 <td style="vertical-align: middle;"> 1097 <input id="pagination_bg_color" type="text" name="pagination_bg_color" value="<?php if ( $pagination_bg_color !='' ) {echo $pagination_bg_color; } else{ echo "#dddddd"; } ?>" class="timezone_string">1105 <label for="pagination_bg_color"><?php esc_html_e( 'Pagination Background Color', 'super-testimonial' ); ?></label> 1106 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for pagination content.', 'super-testimonial' ); ?></span> 1107 </th> 1108 <td style="vertical-align: middle;"> 1109 <input id="pagination_bg_color" type="text" name="pagination_bg_color" value="<?php if ( $pagination_bg_color !='' ) {echo esc_attr($pagination_bg_color); } else{ echo "#dddddd"; } ?>" class="timezone_string"> 1098 1110 </td> 1099 1111 </tr><!-- End Pagination Background Color --> … … 1101 1113 <tr valign="top" id="pagi_color_active_controller" style="<?php if ( $pagination == 'false') { echo "display:none;"; }?>"> 1102 1114 <th scope="row"> 1103 <label for="pagination_bg_color_active"><?php _e( 'Pagination Background(Active)', 'ktsttestimonial' ); ?></label>1104 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Pick a color for active pagination content.', 'ktsttestimonial' ); ?></span>1105 </th> 1106 <td style="vertical-align: middle;"> 1107 <input id="pagination_bg_color_active" type="text" name="pagination_bg_color_active" value="<?php if ( $pagination_bg_color_active !='' ) {echo $pagination_bg_color_active; } else{ echo "#9e9e9e"; } ?>" class="timezone_string">1115 <label for="pagination_bg_color_active"><?php esc_html_e( 'Pagination Background(Active)', 'super-testimonial' ); ?></label> 1116 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for active pagination content.', 'super-testimonial' ); ?></span> 1117 </th> 1118 <td style="vertical-align: middle;"> 1119 <input id="pagination_bg_color_active" type="text" name="pagination_bg_color_active" value="<?php if ( $pagination_bg_color_active !='' ) {echo esc_attr($pagination_bg_color_active); } else{ echo "#9e9e9e"; } ?>" class="timezone_string"> 1108 1120 </td> 1109 1121 </tr><!-- End Pagination Background Color --> … … 1117 1129 <div class="wrap"> 1118 1130 <div class="option-box"> 1119 <p class="option-title"><?php _e( 'Grid Normal Settings','ktsttestimonial' ); ?> - <a href="https://themepoints.com/testimonials" target="_blank"><?php _e( 'Unlock all upgrades with Pro!', 'ktsttestimonial' ); ?></a></p>1131 <p class="option-title"><?php esc_html_e( 'Grid Normal Settings','super-testimonial' ); ?> - <a href="https://themepoints.com/testimonials" target="_blank"><?php esc_html_e( 'Unlock all upgrades with Pro!', 'super-testimonial' ); ?></a></p> 1120 1132 <table class="form-table"> 1121 1133 <tr valign="top"> 1122 1134 <th scope="row"> 1123 <label for="grid_normal_column"><?php e cho __('Testimonial Column', 'ktsttestimonial'); ?></label>1124 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Set number of columns in different responsive devices.', 'ktsttestimonial'); ?></span>1135 <label for="grid_normal_column"><?php esc_html_e('Testimonial Column', 'super-testimonial'); ?></label> 1136 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set number of columns in different responsive devices.', 'super-testimonial'); ?></span> 1125 1137 </th> 1126 1138 <td style="vertical-align:middle;"> … … 1130 1142 <div class="tp-device-header"> 1131 1143 <span class="dashicons dashicons-desktop"></span> 1132 <span><?php e cho __('Desktop', 'ktsttestimonial'); ?></span>1144 <span><?php esc_html_e('Desktop', 'super-testimonial'); ?></span> 1133 1145 </div> 1134 1146 <input type="number" name="grid_normal_column" id="grid_normal_column" value="<?php echo esc_attr($grid_normal_column); ?>" min="1" max="6"> … … 1139 1151 <div class="tp-device-header"> 1140 1152 <span class="dashicons dashicons-laptop"></span> 1141 <span><?php e cho __('Laptop', 'ktsttestimonial'); ?></span>1153 <span><?php esc_html_e('Laptop', 'super-testimonial'); ?></span> 1142 1154 </div> 1143 1155 <input type="number" min="1" max="6" name="grid_laptop_columns" id="grid_laptop_columns" value="<?php echo esc_attr($grid_laptop_columns); ?>"> … … 1148 1160 <div class="tp-device-header"> 1149 1161 <span class="dashicons dashicons-tablet"></span> 1150 <span><?php e cho __('Tablet', 'ktsttestimonial'); ?></span>1162 <span><?php esc_html_e('Tablet', 'super-testimonial'); ?></span> 1151 1163 </div> 1152 1164 <input type="number" name="grid_tablet_columns" id="grid_tablet_columns" value="<?php echo esc_attr($grid_tablet_columns); ?>" min="1" max="6"> … … 1157 1169 <div class="tp-device-header"> 1158 1170 <span class="dashicons dashicons-smartphone"></span> 1159 <span><?php e cho __('Mobile', 'ktsttestimonial'); ?></span>1171 <span><?php esc_html_e('Mobile', 'super-testimonial'); ?></span> 1160 1172 </div> 1161 1173 <input type="number" name="grid_mobile_columns" id="grid_mobile_columns" value="<?php echo esc_attr($grid_mobile_columns); ?>" min="1" max="6"> … … 1168 1180 <tr valign="top"> 1169 1181 <th scope="row"> 1170 <label for="filter_menu_styles"><?php _e( 'Filter Menu Style', 'ktsttestimonial' ); ?></label>1171 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Choose an option for filter menu style.', 'ktsttestimonial' ); ?></span>1182 <label for="filter_menu_styles"><?php esc_html_e( 'Filter Menu Style', 'super-testimonial' ); ?></label> 1183 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Choose an option for filter menu style.', 'super-testimonial' ); ?></span> 1172 1184 </th> 1173 1185 <td style="vertical-align: middle;"> 1174 1186 <select name="filter_menu_styles" id="filter_menu_styles" class="timezone_string"> 1175 1187 1176 <option value="1" <?php if ( isset ( $filter_menu_styles ) ) selected( $filter_menu_styles, '1' ); ?>><?php _e( 'Normal', 'ktsttestimonial' ); ?></option>1177 <option value="2" <?php if ( isset ( $filter_menu_styles ) ) selected( $filter_menu_styles, '2' ); ?>><?php _e( 'Checkbox', 'ktsttestimonial' ); ?></option>1178 <option value="3" <?php if ( isset ( $filter_menu_styles ) ) selected( $filter_menu_styles, '3' ); ?>><?php _e( 'Drop Down', 'ktsttestimonial' ); ?></option>1188 <option value="1" <?php if ( isset ( $filter_menu_styles ) ) selected( $filter_menu_styles, '1' ); ?>><?php esc_html_e( 'Normal', 'super-testimonial' ); ?></option> 1189 <option value="2" <?php if ( isset ( $filter_menu_styles ) ) selected( $filter_menu_styles, '2' ); ?>><?php esc_html_e( 'Checkbox', 'super-testimonial' ); ?></option> 1190 <option value="3" <?php if ( isset ( $filter_menu_styles ) ) selected( $filter_menu_styles, '3' ); ?>><?php esc_html_e( 'Drop Down', 'super-testimonial' ); ?></option> 1179 1191 </select> 1180 1192 </td> … … 1183 1195 <tr valign="top"> 1184 1196 <th scope="row"> 1185 <label for="testimonial_filter_menu_text"><?php _e( 'Filter Menu Text:', 'ktsttestimonial' ); ?></label>1186 <span class="tpstestimonial_manager_hint toss"><?php e cho __('Set the text for the filter menu.', 'ktsttestimonial'); ?></span>1197 <label for="testimonial_filter_menu_text"><?php esc_html_e( 'Filter Menu Text:', 'super-testimonial' ); ?></label> 1198 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e('Set the text for the filter menu.', 'super-testimonial'); ?></span> 1187 1199 </th> 1188 1200 <td style="vertical-align: middle;"> … … 1192 1204 1193 1205 <tr> 1194 <th><u><?php e cho __( 'Menu Styling', 'ktsttestimonial' ); ?></u></th>1206 <th><u><?php esc_html_e( 'Menu Styling', 'super-testimonial' ); ?></u></th> 1195 1207 <td></td> 1196 1208 </tr> … … 1198 1210 <tr valign="top"> 1199 1211 <th scope="row"> 1200 <label for="filter_menu_alignment"><?php _e( 'Menu Align', 'ktsttestimonial' ); ?></label>1201 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Choose an option for the alignment of filter menu.', 'ktsttestimonial' ); ?></span>1212 <label for="filter_menu_alignment"><?php esc_html_e( 'Menu Align', 'super-testimonial' ); ?></label> 1213 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Choose an option for the alignment of filter menu.', 'super-testimonial' ); ?></span> 1202 1214 </th> 1203 1215 <td style="vertical-align: middle;"> 1204 1216 <div class="switch-field"> 1205 1217 <input type="radio" id="filter_menu_alignment1" name="filter_menu_alignment" value="left" <?php if ( $filter_menu_alignment == 'left' ) echo 'checked'; ?>/> 1206 <label for="filter_menu_alignment1"><?php _e( 'Left', 'ktsttestimonial' ); ?></label>1218 <label for="filter_menu_alignment1"><?php esc_html_e( 'Left', 'super-testimonial' ); ?></label> 1207 1219 <input type="radio" id="filter_menu_alignment2" name="filter_menu_alignment" value="center" <?php if ( $filter_menu_alignment == 'center' || $filter_menu_alignment == '' ) echo 'checked'; ?>/> 1208 <label for="filter_menu_alignment2"><?php _e( 'Center', 'ktsttestimonial' ); ?></label>1220 <label for="filter_menu_alignment2"><?php esc_html_e( 'Center', 'super-testimonial' ); ?></label> 1209 1221 <input type="radio" id="filter_menu_alignment3" name="filter_menu_alignment" value="right" <?php if ( $filter_menu_alignment == 'right' ) echo 'checked'; ?>/> 1210 <label for="filter_menu_alignment3"><?php _e( 'Right', 'ktsttestimonial' ); ?></label>1222 <label for="filter_menu_alignment3"><?php esc_html_e( 'Right', 'super-testimonial' ); ?></label> 1211 1223 </div> 1212 1224 </td> … … 1215 1227 <tr valign="top"> 1216 1228 <th scope="row"> 1217 <label for="filter_menu_bg_color"><?php _e( 'Background Color', 'ktsttestimonial' ); ?></label>1218 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Pick a color for filter menu background.', 'ktsttestimonial' ); ?></span>1219 </th> 1220 <td style="vertical-align: middle;"> 1221 <input type="text" id="filter_menu_bg_color" name="filter_menu_bg_color" value="<?php if ( $filter_menu_bg_color != '' ) { echo $filter_menu_bg_color; } else { echo "#f8f8f8"; } ?>" class="timezone_string">1229 <label for="filter_menu_bg_color"><?php esc_html_e( 'Background Color', 'super-testimonial' ); ?></label> 1230 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for filter menu background.', 'super-testimonial' ); ?></span> 1231 </th> 1232 <td style="vertical-align: middle;"> 1233 <input type="text" id="filter_menu_bg_color" name="filter_menu_bg_color" value="<?php if ( $filter_menu_bg_color != '' ) { echo esc_attr($filter_menu_bg_color); } else { echo "#f8f8f8"; } ?>" class="timezone_string"> 1222 1234 </td> 1223 1235 </tr><!-- End Menu bg color --> … … 1225 1237 <tr valign="top"> 1226 1238 <th scope="row"> 1227 <label for="filter_menu_font_color"><?php _e( 'Font Color', 'ktsttestimonial' ); ?></label>1228 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Pick a color for text of filter menu.', 'ktsttestimonial' ); ?></span>1229 </th> 1230 <td style="vertical-align: middle;"> 1231 <input type="text" id="filter_menu_font_color" name="filter_menu_font_color" value="<?php if ( $filter_menu_font_color != '' ) { echo $filter_menu_font_color; } else { echo "#777777"; } ?>" class="timezone_string">1239 <label for="filter_menu_font_color"><?php esc_html_e( 'Font Color', 'super-testimonial' ); ?></label> 1240 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for text of filter menu.', 'super-testimonial' ); ?></span> 1241 </th> 1242 <td style="vertical-align: middle;"> 1243 <input type="text" id="filter_menu_font_color" name="filter_menu_font_color" value="<?php if ( $filter_menu_font_color != '' ) { echo esc_attr($filter_menu_font_color); } else { echo "#777777"; } ?>" class="timezone_string"> 1232 1244 </td> 1233 1245 </tr><!-- End Menu text color --> … … 1235 1247 <tr valign="top"> 1236 1248 <th scope="row"> 1237 <label for="filter_menu_bg_color_hover"><?php _e( 'Background Color(Hover)', 'ktsttestimonial' ); ?></label>1238 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Pick a color for filter menu background on hover.', 'ktsttestimonial' ); ?></span>1239 </th> 1240 <td style="vertical-align: middle;"> 1241 <input type="text" id="filter_menu_bg_color_hover" name="filter_menu_bg_color_hover" value="<?php if ( $filter_menu_bg_color_hover != '' ) { echo $filter_menu_bg_color_hover; } else { echo "#003478"; } ?>" class="timezone_string">1249 <label for="filter_menu_bg_color_hover"><?php esc_html_e( 'Background Color(Hover)', 'super-testimonial' ); ?></label> 1250 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for filter menu background on hover.', 'super-testimonial' ); ?></span> 1251 </th> 1252 <td style="vertical-align: middle;"> 1253 <input type="text" id="filter_menu_bg_color_hover" name="filter_menu_bg_color_hover" value="<?php if ( $filter_menu_bg_color_hover != '' ) { echo esc_attr($filter_menu_bg_color_hover); } else { echo "#003478"; } ?>" class="timezone_string"> 1242 1254 </td> 1243 1255 </tr><!-- End Menu bg color on hover --> … … 1245 1257 <tr valign="top"> 1246 1258 <th scope="row"> 1247 <label for="filter_menu_font_color_hover"><?php _e( 'Font Color(Hover)', 'ktsttestimonial' ); ?></label>1248 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Pick a color for text of filter menu on hover.', 'ktsttestimonial' ); ?></span>1249 </th> 1250 <td style="vertical-align: middle;"> 1251 <input type="text" id="filter_menu_font_color_hover" name="filter_menu_font_color_hover" value="<?php if ( $filter_menu_font_color_hover != '' ) { echo $filter_menu_font_color_hover; } else { echo "#ffffff"; } ?>" class="timezone_string">1259 <label for="filter_menu_font_color_hover"><?php esc_html_e( 'Font Color(Hover)', 'super-testimonial' ); ?></label> 1260 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for text of filter menu on hover.', 'super-testimonial' ); ?></span> 1261 </th> 1262 <td style="vertical-align: middle;"> 1263 <input type="text" id="filter_menu_font_color_hover" name="filter_menu_font_color_hover" value="<?php if ( $filter_menu_font_color_hover != '' ) { echo esc_attr($filter_menu_font_color_hover); } else { echo "#ffffff"; } ?>" class="timezone_string"> 1252 1264 </td> 1253 1265 </tr><!-- End Menu text color on hover --> … … 1255 1267 <tr valign="top"> 1256 1268 <th scope="row"> 1257 <label for="filter_menu_bg_color_active"><?php _e( 'Background Color(Active)', 'ktsttestimonial' ); ?></label>1258 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Pick a color for filter menu background on hover.', 'ktsttestimonial' ); ?></span>1259 </th> 1260 <td style="vertical-align: middle;"> 1261 <input type="text" id="filter_menu_bg_color_active" name="filter_menu_bg_color_active" value="<?php if ( $filter_menu_bg_color_active != '' ) { echo $filter_menu_bg_color_active; } else { echo "#003478"; } ?>" class="timezone_string">1269 <label for="filter_menu_bg_color_active"><?php esc_html_e( 'Background Color(Active)', 'super-testimonial' ); ?></label> 1270 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for filter menu background on hover.', 'super-testimonial' ); ?></span> 1271 </th> 1272 <td style="vertical-align: middle;"> 1273 <input type="text" id="filter_menu_bg_color_active" name="filter_menu_bg_color_active" value="<?php if ( $filter_menu_bg_color_active != '' ) { echo esc_attr($filter_menu_bg_color_active); } else { echo "#003478"; } ?>" class="timezone_string"> 1262 1274 </td> 1263 1275 </tr><!-- End Menu bg color when active --> … … 1265 1277 <tr valign="top"> 1266 1278 <th scope="row"> 1267 <label for="filter_menu_font_color_active"><?php _e( 'Font Color(Active)', 'ktsttestimonial' ); ?></label>1268 <span class="tpstestimonial_manager_hint toss"><?php e cho __( 'Pick a color for text of filter menu on hover.', 'ktsttestimonial' ); ?></span>1269 </th> 1270 <td style="vertical-align: middle;"> 1271 <input type="text" id="filter_menu_font_color_active" name="filter_menu_font_color_active" value="<?php if ( $filter_menu_font_color_active != '' ) { echo $filter_menu_font_color_active; } else { echo "#ffffff"; } ?>" class="timezone_string">1279 <label for="filter_menu_font_color_active"><?php esc_html_e( 'Font Color(Active)', 'super-testimonial' ); ?></label> 1280 <span class="tpstestimonial_manager_hint toss"><?php esc_html_e( 'Pick a color for text of filter menu on hover.', 'super-testimonial' ); ?></span> 1281 </th> 1282 <td style="vertical-align: middle;"> 1283 <input type="text" id="filter_menu_font_color_active" name="filter_menu_font_color_active" value="<?php if ( $filter_menu_font_color_active != '' ) { echo esc_attr($filter_menu_font_color_active); } else { echo "#ffffff"; } ?>" class="timezone_string"> 1272 1284 </td> 1273 1285 </tr><!-- End Menu text color when active --> … … 1288 1300 # Data save in custom metabox field 1289 1301 function tp_testimonial_meta_box_save_func( $post_id ) { 1302 1303 // Verify nonce 1304 if ( ! isset( $_POST['tp_testimonials_meta_nonce'] ) || 1305 ! wp_verify_nonce( $_POST['tp_testimonials_meta_nonce'], 'tp_testimonials_meta_save' ) ) { 1306 return; 1307 } 1290 1308 1291 1309 // Doing autosave then return. … … 1800 1818 <div style="width: 50%;"> 1801 1819 <p> 1802 <strong><?php _e( 'Shortcode','ktsttestimonial' ); ?>:</strong>1803 <span id="shortcode-notice" style="color: green; display: none; margin-left: 10px;"><?php _e( 'Shortcode copied!','ktsttestimonial' ); ?></span>1820 <strong><?php esc_html_e( 'Shortcode','super-testimonial' ); ?>:</strong> 1821 <span id="shortcode-notice" style="color: green; display: none; margin-left: 10px;"><?php esc_html_e( 'Shortcode copied!','super-testimonial' ); ?></span> 1804 1822 </p> 1805 <p class="option-info"><?php _e('Click to copy the shortcode and paste it into a page or post to display Testimonial Showcase.','ktsttestimonial' ); ?></p>1823 <p class="option-info"><?php esc_html_e('Click to copy the shortcode and paste it into a page or post to display Testimonial Showcase.','super-testimonial' ); ?></p> 1806 1824 <input type="text" id="shortcode-text" style="width:100%; cursor:pointer; box-shadow: none; border:none;outline:none;border-radius: 0" value="<?php echo esc_attr($shortcode); ?>" readonly onclick="copyToClipboard(this, 'shortcode-notice')"> 1807 1825 </div> 1808 1826 <div style="width: 50%;"> 1809 1827 <p> 1810 <strong><?php _e( 'PHP Code for Theme Files','ktsttestimonial' ); ?>:</strong>1811 <span id="php-notice" style="color: green; display: none; margin-left: 10px;"><?php _e( 'PHP code copied!','ktsttestimonial' ); ?></span>1828 <strong><?php esc_html_e( 'PHP Code for Theme Files','super-testimonial' ); ?>:</strong> 1829 <span id="php-notice" style="color: green; display: none; margin-left: 10px;"><?php esc_html_e( 'PHP code copied!','super-testimonial' ); ?></span> 1812 1830 </p> 1813 <p class="option-info"><?php _e('Click to copy the PHP code and use it in your theme files to display Testimonial Showcase.','ktsttestimonial' ); ?></p>1831 <p class="option-info"><?php esc_html_e('Click to copy the PHP code and use it in your theme files to display Testimonial Showcase.','super-testimonial' ); ?></p> 1814 1832 <input type="text" id="php-code-text" style="width:100%; cursor:pointer; box-shadow: none; border:none;outline:none;border-radius: 0" value="<?php echo esc_attr($php_code); ?>" readonly onclick="copyToClipboard(this, 'php-notice')"> 1815 1833 </div> -
super-testimonial/trunk/includes/shortcodes/template/theme-1.php
r3328073 r3424470 8 8 9 9 <?php }else { ?> 10 10 11 <style type="text/css"> 11 12 .testimonial-<?php echo esc_attr( $postid ); ?> { -
super-testimonial/trunk/includes/shortcodes/template/theme-2.php
r3328073 r3424470 8 8 9 9 <?php } else { ?> 10 10 11 <style type="text/css"> 11 12 .testimonial-<?php echo esc_attr( $postid); ?> { -
super-testimonial/trunk/includes/shortcodes/template/theme-3.php
r3328073 r3424470 8 8 9 9 <?php }else { ?> 10 10 11 <style type="text/css"> 11 12 .testimonial-<?php echo esc_attr( $postid ); ?>{ -
super-testimonial/trunk/includes/shortcodes/template/theme-4.php
r3328073 r3424470 8 8 9 9 <?php }else { ?> 10 10 11 <style type="text/css"> 11 12 .testimonial-<?php echo esc_attr( $postid ); ?> { -
super-testimonial/trunk/includes/shortcodes/template/theme-5.php
r3328073 r3424470 8 8 9 9 <?php }else { ?> 10 10 11 11 <style type="text/css"> 12 12 .testimonial-<?php echo esc_attr( $postid ); ?>{ -
super-testimonial/trunk/includes/tps_super_testimonial_options.php
r3328073 r3424470 7 7 <div class="wraper doc-suport"> 8 8 <div class="doc-support-header"> 9 <h1><?php echo esc_html__( 'Super Testimonial V-', ' ktsttestimonial' ) . TPS_TESTIMONIAL_VERSION; ?></h1>10 <p><?php esc_html_e( 'Do you have any questions or need assistance? We\'re here to help!', ' ktsttestimonial' ); ?> </p>9 <h1><?php echo esc_html__( 'Super Testimonial V-', 'super-testimonial' ) . TPS_TESTIMONIAL_VERSION; ?></h1> 10 <p><?php esc_html_e( 'Do you have any questions or need assistance? We\'re here to help!', 'super-testimonial' ); ?> </p> 11 11 </div> 12 12 13 13 <div class="tps-tabs"> 14 14 <ul class="tps-tab-menu"> 15 <li class="tps-tab-item active" data-tab="whats-new"><?php esc_html_e('What\'s New', ' ktsttestimonial'); ?></li>16 <li class="tps-tab-item" data-tab="need-help"><?php esc_html_e('Need Help', ' ktsttestimonial'); ?></li>15 <li class="tps-tab-item active" data-tab="whats-new"><?php esc_html_e('What\'s New', 'super-testimonial'); ?></li> 16 <li class="tps-tab-item" data-tab="need-help"><?php esc_html_e('Need Help', 'super-testimonial'); ?></li> 17 17 </ul> 18 18 </div> … … 21 21 <!-- What's New Section --> 22 22 <div class="tps-tab-panel active" id="whats-new"> 23 <h2><?php esc_html_e('Latest Updates - 16 April 2025', 'ktsttestimonial'); ?></h2>23 <h2><?php esc_html_e('Latest Updates - 26 October 2025', 'super-testimonial'); ?></h2> 24 24 <ul> 25 <li># <?php esc_html_e('Performance Improvements.', 'ktsttestimonial'); ?></li> 26 <li># <?php esc_html_e('Bug Fixes and UI Enhancements.', 'ktsttestimonial'); ?></li> 27 <li># <?php esc_html_e('Fix Metabox value Warning Issue.', 'ktsttestimonial'); ?></li> 28 <li># <?php esc_html_e('Fix CSS Issue.', 'ktsttestimonial'); ?></li> 25 <li># <?php esc_html_e('Fix Security Issue.', 'super-testimonial'); ?></li> 26 <li># <?php esc_html_e('Fix CSS Issue.', 'super-testimonial'); ?></li> 29 27 </ul> 30 <h2><?php esc_html_e('Updates - 13 February 2025', 'ktsttestimonial'); ?></h2> 31 <p><?php esc_html_e('Here are the latest features and improvements we have added.', 'ktsttestimonial'); ?></p> 32 <h2><?php esc_html_e('Front-End Testimonial Submission Form :', 'ktsttestimonial'); ?></h2> 28 <h2><?php esc_html_e('Latest Updates - 16 April 2025', 'super-testimonial'); ?></h2> 33 29 <ul> 34 <li># <?php esc_html_e('The Front-End Testimonial Submission Form allows users to submit their testimonials easily without accessing the WordPress backend. This feature is available in the free version of the plugin and provides a convenient way for your visitors to leave feedback.', 'ktsttestimonial'); ?> 30 <li># <?php esc_html_e('Performance Improvements.', 'super-testimonial'); ?></li> 31 <li># <?php esc_html_e('Bug Fixes and UI Enhancements.', 'super-testimonial'); ?></li> 32 <li># <?php esc_html_e('Fix Metabox value Warning Issue.', 'super-testimonial'); ?></li> 33 <li># <?php esc_html_e('Fix CSS Issue.', 'super-testimonial'); ?></li> 34 </ul> 35 <h2><?php esc_html_e('Updates - 13 February 2025', 'super-testimonial'); ?></h2> 36 <p><?php esc_html_e('Here are the latest features and improvements we have added.', 'super-testimonial'); ?></p> 37 <h2><?php esc_html_e('Front-End Testimonial Submission Form :', 'super-testimonial'); ?></h2> 38 <ul> 39 <li># <?php esc_html_e('The Front-End Testimonial Submission Form allows users to submit their testimonials easily without accessing the WordPress backend. This feature is available in the free version of the plugin and provides a convenient way for your visitors to leave feedback.', 'super-testimonial'); ?> 35 40 </li> 36 41 <li><img src="<?php echo plugin_dir_url( __FILE__ ) . 'admin/img/front-end-submission-form.png'; ?>" alt="Front-End Testimonial Submission Form" /></li> 37 <li># <?php esc_html_e('Added Testimonial Rating Style Option', ' ktsttestimonial'); ?></li>38 <li># <?php esc_html_e('Performance Improvements', ' ktsttestimonial'); ?></li>39 <li># <?php esc_html_e('Bug Fixes and UI Enhancements', ' ktsttestimonial'); ?></li>40 <li># <?php esc_html_e('Fix Stored Cross-Site Scripting Issue', ' ktsttestimonial'); ?></li>41 <li># <?php esc_html_e('Fix CSS Issue', ' ktsttestimonial'); ?></li>42 <li># <?php esc_html_e('Fix spelling mistakes.', ' ktsttestimonial'); ?></li>42 <li># <?php esc_html_e('Added Testimonial Rating Style Option', 'super-testimonial'); ?></li> 43 <li># <?php esc_html_e('Performance Improvements', 'super-testimonial'); ?></li> 44 <li># <?php esc_html_e('Bug Fixes and UI Enhancements', 'super-testimonial'); ?></li> 45 <li># <?php esc_html_e('Fix Stored Cross-Site Scripting Issue', 'super-testimonial'); ?></li> 46 <li># <?php esc_html_e('Fix CSS Issue', 'super-testimonial'); ?></li> 47 <li># <?php esc_html_e('Fix spelling mistakes.', 'super-testimonial'); ?></li> 43 48 </ul> 44 49 </div> … … 46 51 <!-- Need Help Section --> 47 52 <div class="tps-tab-panel" id="need-help"> 48 <h2><?php esc_html_e('Need Help?', ' ktsttestimonial'); ?></h2>49 <p><?php esc_html_e('Find answers to your questions or contact our support team.', ' ktsttestimonial'); ?></p>53 <h2><?php esc_html_e('Need Help?', 'super-testimonial'); ?></h2> 54 <p><?php esc_html_e('Find answers to your questions or contact our support team.', 'super-testimonial'); ?></p> 50 55 <div class="doc-support-content"> 51 56 <ul class="items-area"> 52 57 <li class="list-item-help"> 53 <h3><?php esc_html_e( 'Check Documentation', ' ktsttestimonial' ); ?></h3>54 <p><?php esc_html_e( 'We developed plugins by maintaining WordPress standards. Our docs will help you to understand the basic & advanced usage.', ' ktsttestimonial' ); ?></p>58 <h3><?php esc_html_e( 'Check Documentation', 'super-testimonial' ); ?></h3> 59 <p><?php esc_html_e( 'We developed plugins by maintaining WordPress standards. Our docs will help you to understand the basic & advanced usage.', 'super-testimonial' ); ?></p> 55 60 <div class="tps-btn"> 56 61 <a target="_blank" href="<?php echo esc_url( 'https://themepoints.com/testimonials/docs/super-testimonial/overview/' ); ?>"> 57 <?php esc_html_e( 'Documentation', ' ktsttestimonial' ); ?>62 <?php esc_html_e( 'Documentation', 'super-testimonial' ); ?> 58 63 </a> 59 64 </div> 60 65 </li> 61 66 <li class="list-item-help"> 62 <h3><?php esc_html_e( 'Get Customer Support', ' ktsttestimonial' ); ?></h3>63 <p><?php esc_html_e( 'We\'re delighted to assist you with any questions or issues you may have regarding our plugin. We eagerly anticipate the opportunity to help you.', ' ktsttestimonial' ); ?></p>67 <h3><?php esc_html_e( 'Get Customer Support', 'super-testimonial' ); ?></h3> 68 <p><?php esc_html_e( 'We\'re delighted to assist you with any questions or issues you may have regarding our plugin. We eagerly anticipate the opportunity to help you.', 'super-testimonial' ); ?></p> 64 69 <div class="tps-btn"> 65 70 <a target="_blank" href="<?php echo esc_url( 'https://www.themepoints.com/questions-answer/' ); ?>"> 66 <?php esc_html_e( 'Get Support', ' ktsttestimonial' ); ?>71 <?php esc_html_e( 'Get Support', 'super-testimonial' ); ?> 67 72 </a> 68 73 </div> … … 76 81 <ul class="items-area"> 77 82 <li class="list-item"> 78 <h3><?php esc_html_e( 'Show Your Love', ' ktsttestimonial' ); ?></h3>79 <p><?php esc_html_e( 'We would greatly appreciate it if you could spare a moment to rate and review our plugin. Your feedback is invaluable to us as it helps us enhance and deliver the best possible experience for our customers.', ' ktsttestimonial' ); ?></p>83 <h3><?php esc_html_e( 'Show Your Love', 'super-testimonial' ); ?></h3> 84 <p><?php esc_html_e( 'We would greatly appreciate it if you could spare a moment to rate and review our plugin. Your feedback is invaluable to us as it helps us enhance and deliver the best possible experience for our customers.', 'super-testimonial' ); ?></p> 80 85 <div class="tps-btn"> 81 86 <a target="_blank" href="<?php echo esc_url( 'https://wordpress.org/support/plugin/super-testimonial/reviews/' ); ?>"> 82 <?php esc_html_e( 'Rate Us Now', ' ktsttestimonial' ); ?>87 <?php esc_html_e( 'Rate Us Now', 'super-testimonial' ); ?> 83 88 </a> 84 89 </div> 85 90 </li> 86 91 <li class="list-item"> 87 <h3><?php esc_html_e( 'Buy Us A Coffee', ' ktsttestimonial' ); ?></h3>88 <p><?php esc_html_e( 'We hope you\'re enjoying our plugin! We put a lot of effort into providing the best experience possible. If you\'re feeling generous and would like to show your appreciation, we\'d be thrilled if you could consider buying us a coffee as a way of saying thank you.', ' ktsttestimonial' ); ?></p>92 <h3><?php esc_html_e( 'Buy Us A Coffee', 'super-testimonial' ); ?></h3> 93 <p><?php esc_html_e( 'We hope you\'re enjoying our plugin! We put a lot of effort into providing the best experience possible. If you\'re feeling generous and would like to show your appreciation, we\'d be thrilled if you could consider buying us a coffee as a way of saying thank you.', 'super-testimonial' ); ?></p> 89 94 <div class="tps-btn"> 90 95 <a target="_blank" href="<?php echo esc_url( 'https://themepoints.com/testimonials/' ); ?>"> 91 <?php esc_html_e( 'Donate Now', ' ktsttestimonial' ); ?>96 <?php esc_html_e( 'Donate Now', 'super-testimonial' ); ?> 92 97 </a> 93 98 </div> -
super-testimonial/trunk/readme.txt
r3354338 r3424470 2 2 Contributors: themepoints 3 3 Donate link: https://themepoints.com/testimonials/ 4 Tags: testimonial, testimonial slider, customer review, reviews, WordPress testimonials, feedback, client testimonial, testimonial plugin4 Tags: testimonial, testimonial slider, customer review, WordPress testimonials, client testimonial 5 5 Requires at least: 4.0 6 Tested up to: 6. 8.27 Stable tag: 4.0.96 Tested up to: 6.9 7 Stable tag: 5.0.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 217 217 == Changelog == 218 218 219 = 5.0.0 = 220 *Release Date - 21 December 2025* 221 * Fix Security Issue. 222 219 223 = 4.0.9 = 220 224 *Release Date - 02 September 2025* -
super-testimonial/trunk/tp-testimonials.php
r3354338 r3424470 4 4 Plugin URI: https://themepoints.com/testimonials/ 5 5 Description: Super Testimonials is a responsive plugin designed for both mobile and desktop devices. It allows users to easily add testimonials as widgets, in the sidebar, or directly within pages and posts using shortcodes. 6 Version: 4.0.96 Version: 5.0.0 7 7 Author: Themepoints 8 8 Author URI: https://themepoints.com 9 TextDomain: ktsttestimonial9 TextDomain: super-testimonial 10 10 License: GPLv2 11 11 */ … … 18 18 * Defining plugin constants 19 19 */ 20 20 21 21 if ( !defined( 'TPS_TESTIMONIAL_VERSION' ) ) { 22 define( 'TPS_TESTIMONIAL_VERSION', ' 4.0.9' );22 define( 'TPS_TESTIMONIAL_VERSION', '5.0.0' ); 23 23 } 24 24 … … 48 48 // Load translation for the plugin 49 49 function tps_super_testimonials_load_textdomain(){ 50 load_plugin_textdomain(' ktsttestimonial', false, dirname( plugin_basename( __FILE__ ) ) .'/languages/' );50 load_plugin_textdomain('super-testimonial', false, dirname( plugin_basename( __FILE__ ) ) .'/languages/' ); 51 51 } 52 52 add_action('plugins_loaded', 'tps_super_testimonials_load_textdomain'); … … 69 69 // Add a link to upgrade to the Pro version in the plugin's action links 70 70 function tps_super_testimonialspro_version_link( $links ) { 71 $links[] = '<a href="https://www.themepoints.com/shop/super-testimonial-pro/" target="_blank" style="color:green;font-weight:bold;">' . esc_html__('Upgrade to Pro!', ' ktsttestimonial') . '</a>';71 $links[] = '<a href="https://www.themepoints.com/shop/super-testimonial-pro/" target="_blank" style="color:green;font-weight:bold;">' . esc_html__('Upgrade to Pro!', 'super-testimonial') . '</a>'; 72 72 return $links; 73 73 } … … 107 107 add_submenu_page( 108 108 'edit.php?post_type=ktsprotype', // Parent menu slug 109 esc_html__('Help & Usage', ' ktsttestimonial'), // Page title110 esc_html__('Help & Usage', ' ktsttestimonial'), // Menu title109 esc_html__('Help & Usage', 'super-testimonial'), // Page title 110 esc_html__('Help & Usage', 'super-testimonial'), // Menu title 111 111 'manage_options', // Capability required to access 112 112 'testimonial_pro_shortcode', // Menu slug
Note: See TracChangeset
for help on using the changeset viewer.