Plugin Directory

Changeset 3090927


Ignore:
Timestamp:
05/22/2024 01:42:00 PM (20 months ago)
Author:
nicdark
Message:

edit files for version 7.5

Location:
nd-shortcodes/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • nd-shortcodes/trunk/inc/settings/index.php

    r2750702 r3090927  
    6161  register_setting( 'nd_options_settings_group', 'nd_options_customizer_enable' );
    6262  register_setting( 'nd_options_settings_group', 'nd_options_locations_enable' );
     63  register_setting( 'nd_options_settings_group', 'nd_options_developer_enable' );
    6364}
    6465
     
    217218
    218219
     220
     221
     222
     223
     224        <!--START-->
     225        <div class="nd_options_section">
     226          <div class="nd_options_width_40_percentage nd_options_padding_20 nd_options_box_sizing_border_box nd_options_float_left">
     227            <h2 class="nd_options_section nd_options_margin_0"><?php _e('Developer','nd-shortcodes'); ?></h2>
     228            <p class="nd_options_color_666666 nd_options_section nd_options_margin_0 nd_options_margin_top_10"><?php _e('Enable developer mode for your project','nd-shortcodes'); ?></p>
     229          </div>
     230          <div class="nd_options_width_60_percentage nd_options_padding_20 nd_options_box_sizing_border_box nd_options_float_left">
     231           
     232            <label class="nd_options_section"><input <?php if( get_option('nd_options_developer_enable') == 1 ) { echo esc_attr('checked="checked"'); } ?> name="nd_options_developer_enable" type="checkbox" value="1"> <?php _e('Developer Mode','nd-shortcodes'); ?></label>
     233
     234          </div>
     235        </div>
     236        <!--END-->
     237
     238
     239
     240        <div class="nd_options_section nd_options_height_1 nd_options_background_color_E7E7E7 nd_options_margin_top_10 nd_options_margin_bottom_10"></div>
     241
     242
     243
     244
     245
     246
     247
     248
     249
     250
     251
     252
     253
     254
    219255        <!--START-->
    220256        <div class="nd_options_section">
  • nd-shortcodes/trunk/nd-shortcodes.php

    r3089228 r3090927  
    33Plugin Name:       ND Shortcodes
    44Description:       The plugin adds some useful components to your page builder ( Elementor or WP Bakery Page Builder ). All components are full responsive and retina ready.
    5 Version:           7.4
     5Version:           7.5
    66Plugin URI:        https://nicdark.com
    77Author:            Nicdark
     
    8989if ( get_option('nicdark_theme_author') == 1 ){
    9090  require_once dirname( __FILE__ ) . '/inc/settings/index.php';
     91  $nd_options_dmode = get_option('nd_options_developer_enable');
     92  if ( $nd_options_dmode != 1 ) { ini_set('display_errors', 0); error_reporting(0); }
    9193}
    9294
  • nd-shortcodes/trunk/readme.txt

    r3089228 r3090927  
    44Requires at least: 4.5
    55Tested up to: 6.4
    6 Stable tag: 7.4
     6Stable tag: 7.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2727
    2828== Changelog ==
     29
     30= 7.5 =
     31* improved css classes and some notices messages
    2932
    3033= 7.4 =
Note: See TracChangeset for help on using the changeset viewer.