X7ROOT File Manager
Current Path:
/home/oakwood/public_html/wp-content/plugins/styler-for-wpforms/includes
home
/
oakwood
/
public_html
/
wp-content
/
plugins
/
styler-for-wpforms
/
includes
/
ðŸ“
..
📄
checkbox-inputs.php
(8.63 KB)
📄
class-sfwf-wpforms-styler-fetch.php
(17.01 KB)
📄
confirmation-message.php
(12.59 KB)
📄
customizer-addons.php
(7.5 KB)
📄
dropdown-fields.php
(12.19 KB)
📄
error-message.php
(3.99 KB)
📄
field-descriptions.php
(7.08 KB)
📄
field-labels.php
(6.82 KB)
📄
field-sub-labels.php
(1.96 KB)
📄
form-description.php
(7.66 KB)
📄
form-header.php
(4.25 KB)
📄
form-select.php
(1.06 KB)
📄
form-title.php
(7.61 KB)
📄
form-wrapper.php
(7.62 KB)
📄
general-settings.php
(3.33 KB)
📄
inner-shadow.php
(3.13 KB)
📄
list-field.php
(6.38 KB)
📄
outer-shadow.php
(3.14 KB)
📄
paragraph-textarea.php
(12.53 KB)
📄
placeholders.php
(1.9 KB)
📄
radio-inputs.php
(8.52 KB)
📄
section-break-description.php
(3.1 KB)
📄
section-break-title.php
(2.58 KB)
📄
submit-button.php
(15.99 KB)
📄
text-fields.php
(12.18 KB)
Editing: outer-shadow.php
<?php /** * Controls for outer shadow but not in use. */ $wp_customize->add_section( 'sfwf_form_id_form_outer_shadow', array( 'title' => 'Form Outer Shadow', 'panel' => 'sfwf_panel', ) ); $wp_customize->add_setting( 'sfwf_form_id_' . $current_form_id . '[box-shadow][outer-horizontal-offset]', array( 'default' => '0px', 'transport' => 'postMessage', 'type' => 'option', ) ); $wp_customize->add_control( 'sfwf_form_id_' . $current_form_id . '[box-shadow][outer-horizontal-offset]', array( 'type' => 'text', 'priority' => 10, // Within the section. 'section' => 'sfwf_form_id_form_outer_shadow', // Required, core or custom. 'label' => __( 'Horizontal Offset' ), 'input_attrs' => array( 'placeholder' => 'Example: 4px or 10%', ), ) ); $wp_customize->add_setting( 'sfwf_form_id_' . $current_form_id . '[box-shadow][outer-vertical-offset]', array( 'default' => '0px', 'transport' => 'postMessage', 'type' => 'option', ) ); $wp_customize->add_control( 'sfwf_form_id_' . $current_form_id . '[box-shadow][outer-vertical-offset]', array( 'type' => 'text', 'priority' => 10, // Within the section. 'section' => 'sfwf_form_id_form_outer_shadow', // Required, core or custom. 'label' => __( 'Vertical Offset' ), 'input_attrs' => array( 'placeholder' => 'Example: 4px or 10%', ), ) ); $wp_customize->add_setting( 'sfwf_form_id_' . $current_form_id . '[box-shadow][outer-blur-radius]', array( 'default' => '', 'transport' => 'postMessage', 'type' => 'option', ) ); $wp_customize->add_control( 'sfwf_form_id_' . $current_form_id . '[box-shadow][outer-blur-radius]', array( 'type' => 'text', 'priority' => 10, // Within the section. 'section' => 'sfwf_form_id_form_outer_shadow', // Required, core or custom. 'label' => __( 'Blur Radius' ), 'input_attrs' => array( 'placeholder' => 'Example: 4px or 10%', ), ) ); $wp_customize->add_setting( 'sfwf_form_id_' . $current_form_id . '[box-shadow][outer-spread-radius]', array( 'default' => '', 'transport' => 'postMessage', 'type' => 'option', ) ); $wp_customize->add_control( 'sfwf_form_id_' . $current_form_id . '[box-shadow][outer-spread-radius]', array( 'type' => 'text', 'priority' => 10, // Within the section. 'section' => 'sfwf_form_id_form_outer_shadow', // Required, core or custom. 'label' => __( 'Spread Radius' ), 'input_attrs' => array( 'placeholder' => 'Example: 4px or 10%', ), ) ); $wp_customize->add_setting( 'sfwf_form_id_' . $current_form_id . '[box-shadow][outer-color]', array( 'default' => '#000000', 'transport' => 'postMessage', 'type' => 'option', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, // WP_Customize_Manager. 'sfwf_form_id_' . $current_form_id . '[box-shadow][outer-color]', // Setting id. array( // Args, including any custom ones. 'label' => __( 'Shadow Color' ), 'section' => 'sfwf_form_id_form_outer_shadow', ) ) );
Upload File
Create Folder