Fix File
•
/
home
/
sportsfe...
/
httpdocs
/
clone
/
wp-conte...
/
plugins
/
ninja-fo...
/
includes
/
Fields
•
File:
Submit.php
•
Content:
<?php if ( ! defined( 'ABSPATH' ) ) exit; /** * Class NF_Field_Button */ class NF_Fields_Submit extends NF_Fields_Button { protected $_name = 'submit'; protected $_section = 'common'; protected $_icon = 'square'; protected $_type = 'submit'; protected $_templates = 'submit'; protected $_wrap_template = 'wrap-no-label'; protected $_settings = array( 'label', 'timed_submit', 'processing_label', 'classes', 'key' ); public function __construct() { parent::__construct(); $this->_nicename = esc_html__( 'Submit', 'ninja-forms' ); $this->_settings[ 'label' ][ 'width' ] = 'full'; add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } }
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List