Plugin Directory

Changeset 3446408


Ignore:
Timestamp:
01/25/2026 05:50:40 AM (6 weeks ago)
Author:
bestwpdeveloper
Message:

version 1.2.5

Location:
cv-builder
Files:
330 added
4 edited

Legend:

Unmodified
Added
Removed
  • cv-builder/trunk/includes/dashboard/arrays.php

    r3446391 r3446408  
    247247    'cv_linkedin_client_id',
    248248    'cv_linkedin_client_secret',
     249    'bwdcv_user_text'
    249250];
    250251foreach ($optionAPIs as $optionAPI) {
  • cv-builder/trunk/includes/dashboard/settings.php

    r3446391 r3446408  
    20252025                    [site_name] Team
    20262026                        ' );
    2027                         if ( isset( $_POST["user_text"] ) ) {
    2028                             $user_input = sanitize_textarea_field( $_POST["user_text"] );
    2029                             update_option( 'bwdcv_user_text', $user_input );
    2030                         }
    20312027                        ?>
    2032                         <form method="post">
     2028                        <form method="post" action="options.php">
     2029                             <?php settings_fields('bwdcv_api_settings_tab'); ?>
    20332030                            <div class="bwdcv-top-header">
    20342031                                <h2 class="bwdcv-cmn-title"><?php _e('Mail Settings', 'wp-cv-builder'); ?></h2>
    2035                                <input type="submit" class="bwdcv-textare-email" value="Save Changes">
     2032                               <?php submit_button(); ?>
    20362033                            </div>
    20372034                            <div class="wrap">
     
    20612058                                        </div>
    20622059                                        <div class="">
    2063                                             <textarea class="email-editor" name="user_text" rows="5" cols="80"><?php echo esc_textarea( $user_input ); ?></textarea>
     2060                                            <textarea class="email-editor" name="bwdcv_user_text" rows="5" cols="80"><?php echo esc_textarea( $user_input ); ?></textarea>
    20642061                                        </div>
    20652062                                    </div>
  • cv-builder/trunk/readme.txt

    r3446391 r3446408  
    66Tested up to: 6.9
    77Requires PHP: 7.2
    8 Stable tag: 1.2.4
     8Stable tag: 1.2.5
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • cv-builder/trunk/wp-cv-builder.php

    r3446391 r3446408  
    44 * Description: WP CV Builder with eye-catching style with 24+ preset design.
    55 * Plugin URI:  https://wpcvbuilder.com/
    6  * Version:     1.2.4
     6 * Version:     1.2.5
    77 * Author:      Best WP Developer
    88 * Author URI:  https://bestwpdeveloper.com/
     
    3939
    4040define( 'BWDCV_PLUGIN_NAME', plugin_basename( __DIR__ ) );
    41 define( "BWDCV_VERSION", '1.2.4' );
     41define( "BWDCV_VERSION", '1.2.5' );
    4242define( "BWDCV_TD", 'wp-cv-builder-saas' );
    4343define( 'BWDCV_FILE', __FILE__ );
Note: See TracChangeset for help on using the changeset viewer.