Plugin Directory

Changeset 3424470


Ignore:
Timestamp:
12/21/2025 06:25:34 AM (3 weeks ago)
Author:
themepoints
Message:
  • Fix Security Issue.
Location:
super-testimonial/trunk
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • super-testimonial/trunk/admin/tp-testimonials-admin.php

    r3328073 r3424470  
    88    function tps_super_testimonials_init() {
    99        $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'),
    2222            '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'),
    2525        );
    2626        $args = array(
     
    4242       
    4343        // 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));
    4545    }
    4646    add_action('init', 'tps_super_testimonials_init');
     
    5959        $custom_columns = array(
    6060            "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'),
    6969        );
    7070
     
    8888                    echo get_the_post_thumbnail($post_id, array($width, $height));
    8989                } else {
    90                     esc_html_e('None', 'ktsttestimonial');
     90                    esc_html_e('None', 'super-testimonial');
    9191                }
    9292                break;
     
    105105                break;
    106106
    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;
    126133
    127134            default:
     
    169176        $testimonial_text      = get_post_meta($post->ID, 'testimonial_text', true);
    170177
     178        // Add nonce field for security
     179        wp_nonce_field( 'tps_super_testimonials_meta_save', 'tps_super_testimonials_meta_nonce' );
     180
    171181        ?>
    172182
    173183        <!-- 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>
    175185       
    176186        <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" />
     
    179189       
    180190        <!-- 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>
    182192       
    183193        <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?" />
     
    186196
    187197        <!-- 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>
    189199       
    190200        <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?" />
     
    193203
    194204        <!-- 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>
    196206       
    197207        <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?" />
     
    200210       
    201211        <!-- 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>
    203213       
    204214        <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?" />
     
    207217       
    208218        <!-- 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>
    210220       
    211221        <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>
    214223       
    215224        <hr class="horizontalRuler"/>
     
    217226        <!-- Rating -->
    218227       
    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>
    220229
    221230        <div class="tp-star-rating">
     
    232241       
    233242        <!-- 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>
    236244       
    237245        <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>
     
    246254    function tps_super_testimonials_save_meta_box($post_id){
    247255
    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 ) {
    250264            return;
    251265        }
     
    321335        global $post, $post_id;
    322336        $messages['ktsprotype'] = array(
    323             1 => __('Super Testimonial updated.', 'ktsttestimonial'),
     337            1 => __('Super Testimonial updated.', 'super-testimonial'),
    324338            2 => $messages['post'][2],
    325339            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'),
    333347        );
    334348        return $messages;
     
    381395                            esc_html__(
    382396                                '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'
    384398                            ),
    385                             '<strong>' . esc_html__('5-star rating', 'ktsttestimonial') . '</strong>'
     399                            '<strong>' . esc_html__('5-star rating', 'super-testimonial') . '</strong>'
    386400                        );
    387401                    ?>
    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'); ?>
    389403                </p>
    390404                <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>
    394408                </p>
    395409            </div>
  • super-testimonial/trunk/includes/admin/frontend-form-post.php

    r3328073 r3424470  
    99    // Set UI labels for Custom Post Type
    1010    $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' ),
    2222    );
    2323
     
    3131    // Hide "Add New" if a form exists
    3232    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' );
    3535    }
    3636
    3737    $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' ),
    4040        'labels'              => $labels,
    4141        'supports'            => array( 'title' ), // Only title is needed
     
    109109    return array(
    110110        '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' ),
    114114    );
    115115}
     
    129129    add_meta_box(
    130130        'tps_testimonial_form_settings',
    131         __('Testimonial Form Settings', 'ktsttestimonial'),
     131        __('Testimonial Form Settings', 'super-testimonial'),
    132132        'tps_render_testimonial_form_metabox',
    133133        'tp_testimonial_form',
     
    260260    $secret_key                 = get_post_meta($post->ID, 'custom_recaptcha_secret_key', true) ?: '';
    261261    $nav_value                  = get_post_meta($post->ID, 'nav_value', true );
    262 
     262    if ( empty( $nav_value ) ) {
     263        $nav_value = 1;
     264    }
    263265    $fields = tp_testimonial_form_settings();
    264266    $settings = get_post_meta($post->ID, 'tp_testimonial_form_settings', true);
     
    304306        <!-- <div class="wrap"> -->
    305307        <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>
    311313        </ul> <!-- tab-nav end -->
    312314
     
    321323            <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"; } ?>">
    322324                <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>
    324326 
    325327                    <ul id="testimonial-form-fields">
     
    335337                                    <div class="field-header"><span class="dashicons dashicons-fullscreen-alt"></span><?php echo esc_html($label); ?></div>
    336338                                    <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); ?>">
    338340                                    </div>
    339341
     
    343345                                    ?>
    344346                                        <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); ?>">
    346348                                        </div>
    347349                                    <?php } ?>
    348350
    349351                                    <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'); ?>
    351353                                    </div>
    352354
    353355                                    <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'); ?>
    355357                                    </div>
    356358
     
    363365                        <tr valign="top">
    364366                            <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>
    367369                            </th>
    368370                            <td style="vertical-align: middle;">
     
    378380                <div class="wrap">
    379381                    <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>
    381383                        <table class="form-table">
    382384
    383385                            <tr valign="top">
    384386                                <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 />
    390392                                </td>
    391393                            </tr><!-- End tp_form_width -->
     
    393395                            <tr valign="top">
    394396                                <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>
    397399                                </th>
    398400                                <td style="vertical-align: middle;">
    399401                                    <div style="display: flex; gap: 20px; align-items: center;">
    400402                                        <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>
    402404                                            <input type="number" id="tp_fptop_width" name="tp_fptop_width" value="<?php echo esc_attr($tp_fptop_width); ?>" style="width: 60px;">
    403405                                        </div>
    404406                                        <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>
    406408                                            <input type="number" id="tp_fpright_width" name="tp_fpright_width" value="<?php echo esc_attr($tp_fpright_width); ?>" style="width: 60px;">
    407409                                        </div>
    408410                                        <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>
    410412                                            <input type="number" id="tp_fpbottom_width" name="tp_fpbottom_width" value="<?php echo esc_attr($tp_fpbottom_width); ?>" style="width: 60px;">
    411413                                        </div>
    412414                                        <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>
    414416                                            <input type="number" id="tp_fpleft_width" name="tp_fpleft_width" value="<?php echo esc_attr($tp_fpleft_width); ?>" style="width: 60px;">
    415417                                        </div>
     
    421423                            <tr valign="top">
    422424                                <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>
    425427                                </th>
    426428                                <td style="vertical-align: middle;">
     
    432434                            <tr valign="top">
    433435                                <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>
    436438                                </th>
    437439                                <td style="vertical-align: middle;">
    438440                                    <div style="display: flex; gap: 20px; align-items: center;">
    439441                                        <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'; } ?>">
    442444                                        </div>
    443445                                        <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>
    445447                                            <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>
    449451                                            </select>
    450452                                        </div>
    451453                                        <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>
    453455                                            <input type="color" id="tp_border_color" name="tp_border_color" value="<?php echo esc_attr($tp_border_color); ?>">
    454456                                        </div>
    455457                                        <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'; } ?>">
    458460                                        </div>
    459461                                    </div>
     
    464466                            <tr valign="top">
    465467                                <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>
    468470                                </th>
    469471                                <td style="vertical-align: middle;">
     
    475477                            <tr valign="top">
    476478                                <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>
    479481                                </th>
    480482                                <td style="vertical-align: middle;">
    481483                                    <div style="display: flex; gap: 20px; align-items: center;">
    482484                                        <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>
    484486                                            <input type="number" id="tp_label_width" name="tp_label_width" value="<?php echo esc_attr($tp_label_width); ?>" style="width: 60px;">
    485487                                        </div>
    486488                                        <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>
    488490                                            <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>
    492494                                            </select>
    493495                                        </div>
    494496                                        <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>
    496498                                            <input type="color" id="tp_lable_border_color" name="tp_lable_border_color" value="<?php echo esc_attr($tp_lable_border_color); ?>">
    497499                                        </div>
    498500                                        <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>
    500502                                            <input type="color" id="tp_lable_bg_color" name="tp_lable_bg_color" value="<?php echo esc_attr($tp_lable_bg_color); ?>">
    501503                                        </div>
    502504                                        <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'; } ?>">
    505507                                        </div>
    506508                                    </div>
     
    511513                            <tr valign="top">
    512514                                <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>
    515517                                </th>
    516518                                <td style="vertical-align: middle;">
     
    522524                            <tr valign="top">
    523525                                <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>
    526528                                </th>
    527529                                <td style="vertical-align: middle;">
     
    533535                            <tr valign="top">
    534536                                <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>
    537539                                </th>
    538540                                <td style="vertical-align: middle;">
     
    544546                            <tr valign="top">
    545547                                <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>
    548550                                </th>
    549551                                <td style="vertical-align: middle;">
     
    580582                            <tr valign="top">
    581583                                <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>
    584586                                </th>
    585587                                <td style="vertical-align: middle;">
     
    591593                            <tr valign="top">
    592594                                <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>
    595597                                </th>
    596598                                <td style="vertical-align: middle;">
     
    602604                            <tr valign="top">
    603605                                <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>
    606608                                </th>
    607609                                <td style="vertical-align: middle;">
     
    613615                            <tr valign="top">
    614616                                <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>
    617619                                </th>
    618620                                <td style="vertical-align: middle;">
     
    631633                <div class="wrap">
    632634                    <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>
    634636                        <table class="form-table">
    635637
    636638                            <tr>
    637639                                <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>
    639641                                </th>
    640642                                <td>
    641643                                    <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>
    645647                                    </select>
    646648                                </td>
     
    649651                            <tr>
    650652                                <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>
    652654                                </th>
    653655                                <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>
    655657                                </td>
    656658                            </tr>
     
    658660                            <tr>
    659661                                <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>
    661663                                </th>
    662664                                <td>
    663665                                    <label for="enable_recaptcha">
    664666                                        <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'); ?>
    666668                                    </label>
    667669                                </td>
     
    670672                            <tr>
    671673                                <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>
    673675                                </th>
    674676                                <td>
    675677                                    <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>
    678680                                    </select>
    679681                                </td>
     
    682684                            <tr class="recaptcha-settings" style="display: <?php echo ($recaptcha_type === 'google') ? 'table-row' : 'none'; ?>;">
    683685                                <th>
    684                                     <label><?php esc_html_e('reCAPTCHA Version', 'ktsttestimonial'); ?></label>
     686                                    <label><?php esc_html_e('reCAPTCHA Version', 'super-testimonial'); ?></label>
    685687                                </th>
    686688                                <td>
    687689                                    <label>
    688690                                        <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'); ?>
    690692                                    </label>
    691693                                    <label>
    692694                                        <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'); ?>
    694696                                    </label>
    695697                                </td>
     
    698700                            <tr class="recaptcha-settings" style="display: <?php echo ($recaptcha_type === 'google') ? 'table-row' : 'none'; ?>;">
    699701                                <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>
    701703                                </th>
    702704                                <td>
     
    707709                            <tr class="recaptcha-settings" style="display: <?php echo ($recaptcha_type === 'google') ? 'table-row' : 'none'; ?>;">
    708710                                <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>
    710712                                </th>
    711713                                <td>
     
    734736                <div class="wrap">
    735737                    <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>
    737739                        <table class="form-table">
    738740
    739741                            <tr valign="top">
    740742                                <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>
    742744                                    <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' ); ?>
    744746                                    </span>
    745747                                </th>
     
    747749                                    <div class="switch-field">
    748750                                        <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>
    750752                                        <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>
    752754                                    </div>
    753755                                </td>
     
    756758                            <tr valign="top">
    757759                                <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>
    759761                                    <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'); ?>
    761763                                    </span>
    762764                                </th>
     
    768770                            <tr valign="top">
    769771                                <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>
    772774                                </th>
    773775                                <td style="vertical-align: middle;">
     
    779781                            <tr valign="top">
    780782                                <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>
    782784                                    <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'); ?>
    784786                                    </span>
    785787                                </th>
     
    791793                            <tr valign="top">
    792794                                <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>
    795797                                </th>
    796798                                <td style="vertical-align: middle;">
     
    802804                            <tr valign="top">
    803805                                <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>
    805807                                    <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'); ?>
    807809                                    </span>
    808810                                </th>
     
    814816                            <tr valign="top">
    815817                                <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>
    818820                                </th>
    819821                                <td style="vertical-align: middle;">
     
    832834                <div class="wrap">
    833835                    <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>
    835837                        <table class="form-table">
    836838
    837839                            <tr valign="top">
    838840                                <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>
    841843                                </th>
    842844                                <td style="vertical-align: middle;">
     
    848850                            <tr valign="top">
    849851                                <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>
    851853                                </th>
    852854                                <td style="vertical-align: middle;">
     
    858860                            <tr valign="top">
    859861                                <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>
    861863                                </th>
    862864                                <td style="vertical-align: middle;">
     
    868870                            <tr valign="top">
    869871                                <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>
    871873                                </th>
    872874                                <td style="vertical-align: middle;">
     
    881883                            <tr valign="top">
    882884                                <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>
    884886                                </th>
    885887                                <td style="vertical-align: middle;">
     
    12381240function tps_sidebar_render_shortcode_metabox($post) {
    12391241    ?>
    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>
    12411243    <input type="text" id="shortcode_<?php echo esc_attr($post->ID); ?>"
    12421244           onclick="copyShortcode('<?php echo esc_attr($post->ID); ?>')"
     
    12471249    <p id="copy-message-<?php echo esc_attr($post->ID); ?>"
    12481250       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'); ?>
    12501252    </p>
    12511253
  • super-testimonial/trunk/includes/metabox/tp-testimonials-metabox.php

    r3354338 r3424470  
    99    // Set UI labels for Custom Post Type
    1010    $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' ),
    2424    );
    2525
    2626    // Set other options for Custom Post Type
    2727    $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' ),
    3030        'labels'              => $labels,
    3131        'supports'            => array( 'title' ), // Only title is needed
     
    5353    return array(
    5454        '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' ),
    5959    );
    6060}
     
    8181    add_meta_box(
    8282        'custom_meta_box_id', // Meta box ID
    83         __( 'Testimonial Settings', 'ktsttestimonial' ), // Meta box title
     83        __( 'Testimonial Settings', 'super-testimonial' ), // Meta box title
    8484        'tp_testimonials_display_post_type_func', // Callback function that displays the meta box content
    8585        $attend, // The post types for which the meta box is added
     
    175175    $pagination_style              = get_post_meta( $post->ID, 'pagination_style', true );
    176176    $nav_value                     = get_post_meta( $post->ID, 'nav_value', true );
     177    if ( empty( $nav_value ) ) {
     178        $nav_value = 1;
     179    }
     180   
    177181    $tp_testimonial_theme_style    = ($tp_testimonial_theme_style) ? $tp_testimonial_theme_style : 1;
    178182    $filter_menu_styles            = ($filter_menu_styles) ? $filter_menu_styles : 1;
     
    190194    $pagination_style              = ($pagination_style) ? $pagination_style : '0';
    191195    $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' );
    192199    ?>
    193200
     
    195202        <!-- <div class="wrap"> -->
    196203        <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>
    201208        </ul> <!-- tab-nav end -->
    202209
     
    212219                <div class="wrap">
    213220                    <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>
    215222                        <table class="form-table">
    216223                            <tr valign="top">
    217224                                <th scope="row">
    218                                     <label for="testimonial_cat_name"><?php _e( 'Select Categories', 'ktsttestimonial' ); ?></label>
    219                                     <span class="tpstestimonial_manager_hint toss"><?php echo __('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>
    220227                                </th>
    221228                                <td style="vertical-align: middle;">
     
    232239                                            $allthecats = get_categories( $args );
    233240
    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>';
    238249                                            endforeach;
     250
    239251                                        ?>
    240252                                    </ul>
    241                                     <span class="tpstestimonial_manager_hint"><?php echo __('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>
    242254                                </td>
    243255                            </tr><!-- End Testimonial Categories -->
     
    245257                            <tr valign="top">
    246258                                <th scope="row">
    247                                     <label for="tp_testimonial_themes"><?php _e( 'Select Theme', 'ktsttestimonial' ); ?></label>
    248                                     <span class="tpstestimonial_manager_hint toss"><?php echo __('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>
    249261                                </th>
    250262                                <td style="vertical-align: middle;">
    251263                                    <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>
    282294                                    </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>
    284296                                </td>
    285297                            </tr><!-- End Testimonial Themes -->
     
    287299                            <tr valign="top">
    288300                                <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>
    291303                                </th>
    292304                                <td style="vertical-align: middle;">
    293305                                    <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>
    297309                                    </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>
    299311                                </td>
    300312                            </tr>
     
    302314                            <tr valign="top">
    303315                                <th scope="row">
    304                                     <label for="dpstotoal_items"><?php _e( 'Limit Items', 'ktsttestimonial' ); ?></label>
    305                                     <span class="tpstestimonial_manager_hint toss"><?php echo __('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'; } ?>">
    309321                                </td>
    310322                            </tr><!-- End Order By -->
     
    312324                            <tr valign="top">
    313325                                <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>
    316328                                </th>
    317329                                <td style="vertical-align: middle;">
    318330                                    <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>
    327339                                    </select><br />
    328340                                </td>
     
    331343                            <tr valign="top">
    332344                                <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>
    335347                                </th>
    336348                                <td style="vertical-align: middle;">
    337349                                    <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>
    340352                                    </select>
    341353                                </td>
     
    344356                            <tr>
    345357                                <th>
    346                                     <label for="tp_image_sizes"><?php _e( 'Image Sizes', 'ktsttestimonial' ); ?></label>
    347                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    348360                                </th>
    349361                                <td style="vertical-align: middle;">
    350362                                    <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>
    356368                                    </select>
    357369                                </td>
     
    367379                <div class="wrap">
    368380                    <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>
    370382                        <table class="form-table">
    371383                            <tr valign="top">
    372384                                <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>
    375387                                </th>
    376388                                <td style="vertical-align: middle;">
    377389                                    <div class="switch-field">
    378390                                        <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>
    380392                                        <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>
    382394                                        <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>
    384396                                    </div>
    385397                                </td>
     
    388400                            <tr valign="top">
    389401                                <th scope="row">
    390                                     <label for="tp_img_show_hide"><?php _e( 'Image', 'ktsttestimonial' ); ?></label>
    391                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    392404                                </th>
    393405                                <td style="vertical-align: middle;">
    394406                                    <div class="switch-field">
    395407                                        <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>
    397409                                        <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>
    399411                                    </div>
    400412                                </td>
     
    403415                            <tr valign="top" id="imgBorderController" style="<?php if ( $tp_img_show_hide == 2) { echo "display:none;"; }?>">
    404416                                <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 echo __( '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>
    407419                                </th>
    408420                                <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; } ?>">
    410422                                </td>
    411423                            </tr> <!-- End of image border width -->
     
    413425                            <tr valign="top" id="imgColor_controller" style="<?php if ( $tp_img_show_hide == 2) { echo "display:none;"; }?>">
    414426                                <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 echo __( '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">
    420432                                </td>
    421433                            </tr><!-- End Name Color -->
     
    423435                            <tr valign="top" id="imgRadius_controller" style="<?php if ( $tp_img_show_hide == 2 ) { echo "display:none;"; } ?>">
    424436                                <th scope="row">
    425                                     <label for="tp_testimonial_textalign"><?php _e( 'Image Border Radius', 'ktsttestimonial' ); ?></label>
    426                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    427439                                </th>
    428440                                <td style="vertical-align: middle;">
    429441                                    <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>
    438450                                    </select>
    439451                                </td>
     
    442454                            <tr valign="top">
    443455                                <th scope="row">
    444                                     <label for="tp_maintitle_show_hide"><?php _e( 'Title', 'ktsttestimonial' ); ?></label>
    445                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    446458                                </th>
    447459                                <td style="vertical-align: middle;">
    448460                                    <div class="switch-field">
    449461                                        <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>
    451463                                        <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>
    453465                                    </div>
    454466                                </td>
     
    457469                            <tr valign="top">
    458470                                <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 echo __( '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">
    464476                                </td>
    465477                            </tr><!-- End Title Color -->
     
    467479                            <tr valign="top">
    468480                                <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 echo __('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 />
    474486                                </td>
    475487                            </tr><!-- End Title Font Size-->
     
    477489                            <tr valign="top">
    478490                                <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 echo __('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>
    481493                                </th>
    482494                                <td style="vertical-align: middle;">
    483495                                    <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>
    488500                                    </select><br>
    489501                                </td>
     
    492504                            <tr valign="top">
    493505                                <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 echo __('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>
    496508                                </th>
    497509                                <td style="vertical-align: middle;">
    498510                                    <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>
    501513                                    </select><br>
    502514                                </td>
     
    505517                            <tr valign="top">
    506518                                <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 echo __( '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">
    512524                                </td>
    513525                            </tr><!-- End Name Color -->
     
    515527                            <tr valign="top">
    516528                                <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 echo __('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 />
    522534                                </td>
    523535                            </tr><!-- End Name Font Size-->
     
    525537                            <tr valign="top">
    526538                                <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 echo __('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>
    529541                                </th>
    530542                                <td style="vertical-align: middle;">
    531543                                    <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>
    536548                                    </select><br>
    537549                                </td>
     
    540552                            <tr valign="top">
    541553                                <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 echo __('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>
    544556                                </th>
    545557                                <td style="vertical-align: middle;">
    546558                                    <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>
    549561                                    </select><br>
    550562                                </td>
     
    553565                            <tr valign="top">
    554566                                <th scope="row">
    555                                     <label for="tp_designation_show_hide"><?php _e( 'Designation', 'ktsttestimonial' ); ?></label>
    556                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    557569                                </th>
    558570                                <td style="vertical-align: middle;">
    559571                                    <div class="switch-field">
    560572                                        <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>
    562574                                        <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>
    564576                                    </div>
    565577                                </td>
     
    568580                            <tr valign="top">
    569581                                <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 echo __('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 />
    575587                                </td>
    576588                            </tr><!-- End Designation Font Size-->
     
    578590                            <tr valign="top">
    579591                                <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 echo __( '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">
    585597                                </td>
    586598                            </tr><!-- End Designation Font Color -->
     
    588600                            <tr valign="top">
    589601                                <th scope="row">
    590                                     <label for="tp_designation_case"><?php _e('Designation Text Transform', 'ktsttestimonial'); ?></label>
    591                                     <span class="tpstestimonial_manager_hint toss"><?php echo __('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>
    592604                                </th>
    593605                                <td style="vertical-align: middle;">
    594606                                    <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>
    599611                                    </select><br>
    600612                                </td>
     
    603615                            <tr valign="top">
    604616                                <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 echo __('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>
    607619                                </th>
    608620                                <td style="vertical-align: middle;">
    609621                                    <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>
    612624                                    </select><br>
    613625                                </td>
     
    616628                            <tr valign="top">
    617629                                <th scope="row">
    618                                     <label for="tp_company_show_hide"><?php _e( 'Company URL', 'ktsttestimonial' ); ?></label>
    619                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    620632                                </th>
    621633                                <td style="vertical-align: middle;">
    622634                                    <div class="switch-field">
    623635                                        <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>
    625637                                        <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>
    627639                                    </div>
    628640                                </td>
     
    631643                            <tr valign="top">
    632644                                <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 echo __( '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">
    638650                                </td>
    639651                            </tr><!-- End Url  Color -->
     
    641653                            <tr valign="top">
    642654                                <th scope="row">
    643                                     <label for="tp_content_color"><?php _e( 'Content Color', 'ktsttestimonial' ); ?></label>
    644                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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">
    648660                                </td>
    649661                            </tr><!-- End Content Color -->
     
    651663                            <tr valign="top">
    652664                                <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 echo __('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 />
    658670                                </td>
    659671                            </tr><!-- End Content Font Size-->
     
    661673                            <tr valign="top">
    662674                                <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 echo __( '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">
    668680                                </td>
    669681                            </tr><!-- End Content Background Color -->
     
    671683                            <tr valign="top">
    672684                                <th scope="row">
    673                                     <label for="testimonial_word_limit"><?php _e( 'Word Limit:', 'ktsttestimonial' ); ?></label>
    674                                     <span class="tpstestimonial_manager_hint toss"><?php echo __('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>
    675687                                </th>
    676688                                <td style="vertical-align: middle;">
     
    681693                            <tr valign="top">
    682694                                <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 echo __('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>
    685697                                </th>
    686698                                <td style="vertical-align: middle;">
     
    691703                            <tr valign="top">
    692704                                <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 echo __( '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">
    698710                                </td>
    699711                            </tr><!-- End Read More Text Color -->
     
    701713                            <tr valign="top">
    702714                                <th scope="row">
    703                                     <label for="tp_show_rating_option"><?php _e( 'Rating', 'ktsttestimonial' ); ?></label>
    704                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    705717                                </th>
    706718                                <td style="vertical-align: middle;">
    707719                                    <div class="switch-field">
    708720                                        <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>
    710722                                        <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>
    712724                                    </div>
    713725                                </td>
     
    716728                            <tr valign="top">
    717729                                <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>
    720732                                </th>
    721733                                <td style="vertical-align: middle;">
     
    744756                            <tr valign="top">
    745757                                <th scope="row">
    746                                     <label for="tp_rating_color"><?php _e( 'Rating Icon Color', 'ktsttestimonial' ); ?></label>
    747                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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">
    751763                                </td>
    752764                            </tr><!-- End Rating Color -->
     
    754766                            <tr valign="top">
    755767                                <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 echo __('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 />
    761773                                </td>
    762774                            </tr><!-- End Content Font Size-->
     
    764776                            <tr valign="top">
    765777                                <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 echo __( '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>
    768780                                </th>
    769781                                <td style="vertical-align: middle;">
    770782                                    <div class="switch-field">
    771783                                        <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>
    773785                                        <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>
    775787                                    </div>
    776788                                </td>
     
    779791                            <tr valign="top">
    780792                                <th scope="row">
    781                                     <label for="tp_item_bg_color"><?php _e( 'Background Color', 'ktsttestimonial' ); ?></label>
    782                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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">
    786798                                </td>
    787799                            </tr><!-- End Item Background Color -->
     
    789801                            <tr valign="top">
    790802                                <th scope="row">
    791                                     <label for="tp_item_padding"><?php _e( 'Item Padding', 'ktsttestimonial' ); ?></label>
    792                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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'; } ?>">
    796808                                </td>
    797809                            </tr> <!-- End Item Padding -->
     
    806818                <div class="wrap">
    807819                    <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>
    809821                        <table class="form-table">
    810822                            <tr valign="top">
    811823                                <th scope="row">
    812                                     <label for="autoplay"><?php _e( 'Autoplay', 'ktsttestimonial' ); ?></label>
    813                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    814826                                </th>
    815827                                <td style="vertical-align: middle;">
    816828                                    <div class="switch-field">
    817829                                        <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>
    819831                                        <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>
    821833                                    </div>
    822834                                </td>
     
    825837                            <tr valign="top">
    826838                                <th scope="row">
    827                                     <label for="autoplay_speed"><?php _e( 'Slide Delay', 'ktsttestimonial' ); ?></label>
    828                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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> 
    829841                                </th>
    830842                                <td style="vertical-align: middle;" class="auto_play">
    831843
    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'; } ?>">
    834846                                </td>
    835847                            </tr> <!-- End Slide Delay -->
     
    837849                            <tr valign="top">
    838850                                <th scope="row">
    839                                     <label for="stop_hover"><?php _e( 'Stop Hover', 'ktsttestimonial' ); ?></label>
    840                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    841853                                </th>
    842854                                <td style="vertical-align: middle;">
    843855                                    <div class="switch-field">
    844856                                        <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>
    846858                                        <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>
    848860                                    </div>
    849861                                </td>
     
    852864                            <tr valign="top">
    853865                                <th scope="row">
    854                                     <label for="autoplaytimeout"><?php _e( 'Autoplay Time Out (Sec)', 'ktsttestimonial' ); ?></label>
    855                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>   
    856868                                </th>
    857869                                <td style="vertical-align: middle;">
    858870                                    <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>
    869881                                    </select>
    870882                                </td>
     
    873885                            <tr valign="top">
    874886                                <th scope="row">
    875                                     <label for="item_no"><?php echo __('Testimonial Per Slide', 'ktsttestimonial'); ?></label>
    876                                     <span class="tpstestimonial_manager_hint toss"><?php echo __('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>
    877889                                </th>
    878890                                <td style="vertical-align:middle;">
     
    882894                                            <div class="tp-device-header">
    883895                                                <span class="dashicons dashicons-desktop"></span>
    884                                                 <span><?php echo __('Desktop', 'ktsttestimonial'); ?></span>
     896                                                <span><?php esc_html_e('Desktop', 'super-testimonial'); ?></span>
    885897                                            </div>
    886898                                            <input type="number" name="item_no" id="item_no" value="<?php echo esc_attr($item_no); ?>" min="1" max="10">
     
    891903                                            <div class="tp-device-header">
    892904                                                <span class="dashicons dashicons-laptop"></span>
    893                                                 <span><?php echo __('Laptop', 'ktsttestimonial'); ?></span>
     905                                                <span><?php esc_html_e('Laptop', 'super-testimonial'); ?></span>
    894906                                            </div>
    895907                                            <input type="number" name="itemsdesktop" id="itemsdesktop" value="<?php echo esc_attr($itemsdesktop); ?>" min="1" max="10">
     
    900912                                            <div class="tp-device-header">
    901913                                                <span class="dashicons dashicons-tablet"></span>
    902                                                 <span><?php echo __('Tablet', 'ktsttestimonial'); ?></span>
     914                                                <span><?php esc_html_e('Tablet', 'super-testimonial'); ?></span>
    903915                                            </div>
    904916                                            <input type="number" name="itemsdesktopsmall" id="itemsdesktopsmall" value="<?php echo esc_attr($itemsdesktopsmall); ?>" min="1" max="10">
     
    909921                                            <div class="tp-device-header">
    910922                                                <span class="dashicons dashicons-smartphone"></span>
    911                                                 <span><?php echo __('Mobile', 'ktsttestimonial'); ?></span>
     923                                                <span><?php esc_html_e('Mobile', 'super-testimonial'); ?></span>
    912924                                            </div>
    913925                                            <input type="number" name="itemsmobile" id="itemsmobile" value="<?php echo esc_attr($itemsmobile); ?>" min="1" max="10">
     
    920932                            <tr valign="top">
    921933                                <th scope="row">
    922                                     <label for="loop"><?php _e( 'Loop', 'ktsttestimonial' ); ?></label>
    923                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    924936                                </th>
    925937                                <td style="vertical-align: middle;">
    926938                                    <div class="switch-field">
    927939                                        <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>
    929941                                        <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>
    931943                                    </div>
    932944                                </td>
     
    936948                            <tr valign="top">
    937949                                <th scope="row">
    938                                     <label for="margin"><?php _e( 'Margin', 'ktsttestimonial' ); ?></label>
    939                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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'; } ?>">
    943955                                </td>
    944956                            </tr>
     
    947959                            <tr valign="top">
    948960                                <th scope="row">
    949                                     <label for="navigation"><?php _e( 'Navigation', 'ktsttestimonial' ); ?></label>
    950                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    951963                                </th>
    952964                                <td style="vertical-align: middle;">
    953965                                    <div class="switch-field">
    954966                                        <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>
    956968                                        <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>
    958970                                    </div>
    959971                                </td>
     
    963975                            <tr valign="top" id="navi_align_controller" style="<?php if ( $navigation == 'false') { echo "display:none;"; }?>">
    964976                                <th scope="row">
    965                                     <label for="navigation_align"><?php _e( 'Navigation Align', 'ktsttestimonial' ); ?></label>
    966                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    967979                                </th>
    968980                                <td style="vertical-align: middle;">
    969981                                    <div class="switch-field">
    970982                                        <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>
    972984                                        <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>
    974986                                        <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>
    976988                                    </div>
    977989                                </td>
     
    981993                            <tr valign="top" id="navi_style_controller" style="<?php if ( $navigation == 'false') { echo "display:none;"; }?>">
    982994                                <th scope="row">
    983                                     <label for="navigation_style"><?php _e( 'Navigation Style', 'ktsttestimonial' ); ?></label>
    984                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    985997                                </th>
    986998                                <td style="vertical-align: middle;">
    987999                                    <div class="switch-field">
    9881000                                        <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>
    9901002                                        <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>
    9921004                                    </div>
    9931005                                </td>
     
    9971009                            <tr valign="top" id="navi_color_controller" style="<?php if ( $navigation == 'false') { echo "display:none;"; }?>">
    9981010                                <th scope="row">
    999                                     <label for="nav_text_color"><?php _e( 'Navigation Color', 'ktsttestimonial' ); ?></label>
    1000                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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">
    10041016                                </td>
    10051017                            </tr>
     
    10081020                            <tr valign="top" id="navi_bgcolor_controller" style="<?php if ( $navigation == 'false') { echo "display:none;"; }?>">
    10091021                                <th scope="row">
    1010                                     <label for="nav_bg_color"><?php _e( 'Navigation Background', 'ktsttestimonial' ); ?></label>
    1011                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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">
    10151027                                </td>
    10161028                            </tr>
     
    10191031                            <tr valign="top" id="navi_color_hover_controller" style="<?php if ( $navigation == 'false') { echo "display:none;"; }?>">
    10201032                                <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 echo __( '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">
    10261038                                </td>
    10271039                            </tr>
     
    10301042                            <tr valign="top" id="navi_bgcolor_hover_controller" style="<?php if ( $navigation == 'false') { echo "display:none;"; }?>">
    10311043                                <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 echo __( '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">
    10371049                                </td>
    10381050                            </tr>
     
    10411053                            <tr valign="top">
    10421054                                <th scope="row">
    1043                                     <label for="pagination"><?php _e( 'Pagination', 'ktsttestimonial' ); ?></label>
    1044                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    10451057                                </th>
    10461058                                <td style="vertical-align: middle;">
    10471059                                    <div class="switch-field">
    10481060                                        <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>
    10501062                                        <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>
    10521064                                    </div>
    10531065                                </td>
     
    10571069                            <tr valign="top" id="pagi_align_controller" style="<?php if ( $pagination == 'false') { echo "display:none;"; }?>">
    10581070                                <th scope="row">
    1059                                     <label for="pagination_align"><?php _e( 'Pagination Align', 'ktsttestimonial' ); ?></label>
    1060                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    10611073                                </th>
    10621074                                <td style="vertical-align: middle;">
    10631075                                    <div class="switch-field">
    10641076                                        <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>
    10661078                                        <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>
    10681080                                        <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>
    10701082                                    </div>
    10711083                                </td>
     
    10751087                            <tr valign="top" id="pagi_style_controller" style="<?php if ( $pagination == 'false') { echo "display:none;"; }?>">
    10761088                                <th scope="row">
    1077                                     <label for="pagination_style"><?php _e( 'Pagination Style', 'ktsttestimonial' ); ?></label>
    1078                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    10791091                                </th>
    10801092                                <td style="vertical-align: middle;">
    10811093                                    <div class="switch-field">
    10821094                                        <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>
    10841096                                        <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>
    10861098                                    </div>
    10871099                                </td>
     
    10911103                            <tr valign="top" id="pagi_color_controller" style="<?php if ( $pagination == 'false') { echo "display:none;"; }?>">
    10921104                                <th scope="row">
    1093                                     <label for="pagination_bg_color"><?php _e( 'Pagination Background Color', 'ktsttestimonial' ); ?></label>
    1094                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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">
    10981110                                </td>
    10991111                            </tr><!-- End Pagination Background Color -->
     
    11011113                            <tr valign="top" id="pagi_color_active_controller" style="<?php if ( $pagination == 'false') {  echo "display:none;"; }?>">
    11021114                                <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 echo __( '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">
    11081120                                </td>
    11091121                            </tr><!-- End Pagination Background Color -->
     
    11171129                <div class="wrap">
    11181130                    <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>
    11201132                        <table class="form-table">
    11211133                            <tr valign="top">
    11221134                                <th scope="row">
    1123                                     <label for="grid_normal_column"><?php echo __('Testimonial Column', 'ktsttestimonial'); ?></label>
    1124                                     <span class="tpstestimonial_manager_hint toss"><?php echo __('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>
    11251137                                </th>
    11261138                                <td style="vertical-align:middle;">
     
    11301142                                            <div class="tp-device-header">
    11311143                                                <span class="dashicons dashicons-desktop"></span>
    1132                                                 <span><?php echo __('Desktop', 'ktsttestimonial'); ?></span>
     1144                                                <span><?php esc_html_e('Desktop', 'super-testimonial'); ?></span>
    11331145                                            </div>
    11341146                                            <input type="number" name="grid_normal_column" id="grid_normal_column" value="<?php echo esc_attr($grid_normal_column); ?>" min="1" max="6">
     
    11391151                                            <div class="tp-device-header">
    11401152                                                <span class="dashicons dashicons-laptop"></span>
    1141                                                 <span><?php echo __('Laptop', 'ktsttestimonial'); ?></span>
     1153                                                <span><?php esc_html_e('Laptop', 'super-testimonial'); ?></span>
    11421154                                            </div>
    11431155                                            <input type="number" min="1" max="6" name="grid_laptop_columns" id="grid_laptop_columns" value="<?php echo esc_attr($grid_laptop_columns); ?>">
     
    11481160                                            <div class="tp-device-header">
    11491161                                                <span class="dashicons dashicons-tablet"></span>
    1150                                                 <span><?php echo __('Tablet', 'ktsttestimonial'); ?></span>
     1162                                                <span><?php esc_html_e('Tablet', 'super-testimonial'); ?></span>
    11511163                                            </div>
    11521164                                            <input type="number" name="grid_tablet_columns" id="grid_tablet_columns" value="<?php echo esc_attr($grid_tablet_columns); ?>" min="1" max="6">
     
    11571169                                            <div class="tp-device-header">
    11581170                                                <span class="dashicons dashicons-smartphone"></span>
    1159                                                 <span><?php echo __('Mobile', 'ktsttestimonial'); ?></span>
     1171                                                <span><?php esc_html_e('Mobile', 'super-testimonial'); ?></span>
    11601172                                            </div>
    11611173                                            <input type="number" name="grid_mobile_columns" id="grid_mobile_columns" value="<?php echo esc_attr($grid_mobile_columns); ?>" min="1" max="6">
     
    11681180                            <tr valign="top">
    11691181                                <th scope="row">
    1170                                     <label for="filter_menu_styles"><?php _e( 'Filter Menu Style', 'ktsttestimonial' ); ?></label>
    1171                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    11721184                                </th>
    11731185                                <td style="vertical-align: middle;">
    11741186                                    <select name="filter_menu_styles" id="filter_menu_styles" class="timezone_string">
    11751187                                       
    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>
    11791191                                    </select>
    11801192                                </td>
     
    11831195                            <tr valign="top">
    11841196                                <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 echo __('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>
    11871199                                </th>
    11881200                                <td style="vertical-align: middle;">
     
    11921204
    11931205                            <tr>
    1194                                 <th><u><?php echo __( 'Menu Styling', 'ktsttestimonial' ); ?></u></th>
     1206                                <th><u><?php esc_html_e( 'Menu Styling', 'super-testimonial' ); ?></u></th>
    11951207                                <td></td>
    11961208                            </tr>
     
    11981210                            <tr valign="top">
    11991211                                <th scope="row">
    1200                                     <label for="filter_menu_alignment"><?php _e( 'Menu Align', 'ktsttestimonial' ); ?></label>
    1201                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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>
    12021214                                </th>
    12031215                                <td style="vertical-align: middle;">
    12041216                                    <div class="switch-field">
    12051217                                        <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>
    12071219                                        <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>
    12091221                                        <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>
    12111223                                    </div>
    12121224                                </td>
     
    12151227                            <tr valign="top">
    12161228                                <th scope="row">
    1217                                     <label for="filter_menu_bg_color"><?php _e( 'Background Color', 'ktsttestimonial' ); ?></label>
    1218                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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">
    12221234                                </td>
    12231235                            </tr><!-- End Menu bg color -->
     
    12251237                            <tr valign="top">
    12261238                                <th scope="row">
    1227                                     <label for="filter_menu_font_color"><?php _e( 'Font Color', 'ktsttestimonial' ); ?></label>
    1228                                     <span class="tpstestimonial_manager_hint toss"><?php echo __( '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">
    12321244                                </td>
    12331245                            </tr><!-- End Menu text color -->
     
    12351247                            <tr valign="top">
    12361248                                <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 echo __( '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">
    12421254                                </td>
    12431255                            </tr><!-- End Menu bg color on hover -->
     
    12451257                            <tr valign="top">
    12461258                                <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 echo __( '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">
    12521264                                </td>
    12531265                            </tr><!-- End Menu text color on hover -->
     
    12551267                            <tr valign="top">
    12561268                                <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 echo __( '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">
    12621274                                </td>
    12631275                            </tr><!-- End Menu bg color when active -->
     
    12651277                            <tr valign="top">
    12661278                                <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 echo __( '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">
    12721284                                </td>
    12731285                            </tr><!-- End Menu text color when active -->
     
    12881300# Data save in custom metabox field
    12891301function 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    }
    12901308
    12911309    // Doing autosave then return.
     
    18001818            <div style="width: 50%;">
    18011819                <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>
    18041822                </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>
    18061824                <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')">
    18071825            </div>
    18081826            <div style="width: 50%;">
    18091827                <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>
    18121830                </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>
    18141832                <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')">
    18151833            </div>
  • super-testimonial/trunk/includes/shortcodes/template/theme-1.php

    r3328073 r3424470  
    88
    99<?php }else { ?>
     10   
    1011    <style type="text/css">
    1112        .testimonial-<?php echo esc_attr( $postid ); ?> {
  • super-testimonial/trunk/includes/shortcodes/template/theme-2.php

    r3328073 r3424470  
    88
    99<?php } else { ?>
     10   
    1011    <style type="text/css">
    1112        .testimonial-<?php echo esc_attr( $postid); ?> {
  • super-testimonial/trunk/includes/shortcodes/template/theme-3.php

    r3328073 r3424470  
    88
    99<?php }else { ?>
     10   
    1011    <style type="text/css">
    1112        .testimonial-<?php echo esc_attr( $postid ); ?>{
  • super-testimonial/trunk/includes/shortcodes/template/theme-4.php

    r3328073 r3424470  
    88
    99<?php }else { ?>
     10   
    1011    <style type="text/css">
    1112        .testimonial-<?php echo esc_attr( $postid ); ?> {
  • super-testimonial/trunk/includes/shortcodes/template/theme-5.php

    r3328073 r3424470  
    88
    99<?php }else { ?>
    10    
     10
    1111    <style type="text/css">
    1212        .testimonial-<?php echo esc_attr( $postid ); ?>{
  • super-testimonial/trunk/includes/tps_super_testimonial_options.php

    r3328073 r3424470  
    77<div class="wraper doc-suport">
    88    <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>
    1111    </div>
    1212
    1313    <div class="tps-tabs">
    1414        <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>
    1717        </ul>
    1818    </div>
     
    2121        <!-- What's New Section -->
    2222        <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>
    2424            <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>
    2927            </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>
    3329            <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'); ?>
    3540                </li>
    3641                <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>
    4348            </ul>
    4449        </div>
     
    4651        <!-- Need Help Section -->
    4752        <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>
    5055            <div class="doc-support-content">
    5156                <ul class="items-area">
    5257                    <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>
    5560                        <div class="tps-btn">
    5661                            <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' ); ?>
    5863                            </a>
    5964                        </div>
    6065                    </li>
    6166                    <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>
    6469                        <div class="tps-btn">
    6570                            <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' ); ?>
    6772                            </a>
    6873                        </div>
     
    7681        <ul class="items-area">
    7782            <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>
    8085                <div class="tps-btn">
    8186                    <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' ); ?>
    8388                    </a>
    8489                </div>
    8590            </li>
    8691            <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>
    8994                <div class="tps-btn">
    9095                    <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' ); ?>
    9297                    </a>
    9398                </div>
  • super-testimonial/trunk/readme.txt

    r3354338 r3424470  
    22Contributors: themepoints
    33Donate link: https://themepoints.com/testimonials/
    4 Tags: testimonial, testimonial slider, customer review, reviews, WordPress testimonials, feedback, client testimonial, testimonial plugin
     4Tags: testimonial, testimonial slider, customer review, WordPress testimonials, client testimonial
    55Requires at least: 4.0
    6 Tested up to: 6.8.2
    7 Stable tag: 4.0.9
     6Tested up to: 6.9
     7Stable tag: 5.0.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    217217== Changelog ==
    218218
     219= 5.0.0 =
     220*Release Date - 21 December 2025*
     221 * Fix Security Issue.
     222
    219223= 4.0.9 =
    220224*Release Date - 02 September 2025*
  • super-testimonial/trunk/tp-testimonials.php

    r3354338 r3424470  
    44    Plugin URI: https://themepoints.com/testimonials/
    55    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.9
     6    Version: 5.0.0
    77    Author: Themepoints
    88    Author URI: https://themepoints.com
    9     TextDomain: ktsttestimonial
     9    TextDomain: super-testimonial
    1010    License: GPLv2
    1111    */
     
    1818     * Defining plugin constants
    1919     */
    20    
     20
    2121    if ( !defined( 'TPS_TESTIMONIAL_VERSION' ) ) {
    22         define( 'TPS_TESTIMONIAL_VERSION', '4.0.9' );
     22        define( 'TPS_TESTIMONIAL_VERSION', '5.0.0' );
    2323    }
    2424
     
    4848    // Load translation for the plugin
    4949    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/' );
    5151    }
    5252    add_action('plugins_loaded', 'tps_super_testimonials_load_textdomain');
     
    6969    // Add a link to upgrade to the Pro version in the plugin's action links
    7070    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>';
    7272       return $links;
    7373    }
     
    107107            add_submenu_page(
    108108                'edit.php?post_type=ktsprotype',     // Parent menu slug
    109                 esc_html__('Help & Usage', 'ktsttestimonial'), // Page title
    110                 esc_html__('Help & Usage', 'ktsttestimonial'), // Menu title
     109                esc_html__('Help & Usage', 'super-testimonial'), // Page title
     110                esc_html__('Help & Usage', 'super-testimonial'), // Menu title
    111111                'manage_options',                     // Capability required to access
    112112                'testimonial_pro_shortcode',          // Menu slug
Note: See TracChangeset for help on using the changeset viewer.