Plugin Directory

Changeset 2326885


Ignore:
Timestamp:
06/18/2020 04:39:37 PM (6 years ago)
Author:
accessibewp
Message:

Textual updates

Location:
accessibe/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • accessibe/trunk/accessiebe.php

    r2326867 r2326885  
    44 */
    55/*
    6 Plugin Name: Web Accessibility By accessiBe
     6Plugin Name: accessiBe
    77Plugin URI: https://accessibe.com/
    8 Description: Thanks for choosing accessiBe! Please grab the installation code from your account at our website and paste it in the field below. if you need support or ensure where to get the code from, please visit https://accessibe.com/support or don't hesitate to contact us!
     8Description: accessiBe is the #1 fully automated web accessibility solution for WCAG 2.1 and ADA compliance. Protect your website from lawsuits and increase your potential audience.
    99Version: 1.0
    1010Author: rgbcode
  • accessibe/trunk/class.accessibe.php

    r2326867 r2326885  
    3737     */
    3838    public static function add_action_links( $links ) {
    39         $mylinks = array(
     39        $setting_link = array(
    4040            '<a href="' . admin_url( 'options-general.php?page=accessiBe' ) . '">' . __( 'Settings', 'accessibe' ) . '</a>',
    4141        );
    4242
    43         return array_merge( $links, $mylinks );
     43        return array_merge( $links, $setting_link );
    4444    }
    4545
     
    6565        add_settings_section(
    6666            'accessibe_group',
    67             __( 'Settings:', 'accessibe' ),
     67            __( 'Thanks for choosing accessiBe!', 'accessibe' ),
    6868            array(
    6969                'Accessibe',
     
    9191    public static function render_js_textarea_options() {
    9292        ?>
    93         <textarea name="accessibe_js" id="accessibe_js" cols="30" rows="10" style="width:100%; max-width:800px;">
    94             <?php echo esc_html( get_option( 'accessibe_js' ) ); ?>
    95         </textarea>
     93        <textarea name="accessibe_js" id="accessibe_js" cols="30" rows="10" style="width:100%; max-width:800px;"><?php echo esc_html( get_option( 'accessibe_js' ) ); ?></textarea>
    9694        <?php
    9795    }
     
    10199     */
    102100    public static function settings_section_description() {
    103         return '';
     101        echo __( 'Please grab the installation code from your account at our website and paste it in the field below.<br>if you need support or ensure where to get the code from, please visit <a href="https://accessibe.com/support" target="_blank">https://accessibe.com/support</a> or don\'t hesitate to contact us!', 'accessibe' );
    104102    }
    105103
Note: See TracChangeset for help on using the changeset viewer.