Fix File
•
/
home
/
sportsfe...
/
httpdocs
/
clone
/
wp-conte...
/
plugins
/
accelera...
/
pagebuil...
/
modules
•
File:
button-mod-module.php
•
Content:
<?php // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) exit; $output = '<div {{if_id}}id="{{id}}"{{ifend_id}} class="{{user_class}}"> <div class="btn"><a href="{{btn_link}}" {{if_condition_page_link_open==new_page}}target="_blank"{{ifend_condition_page_link_open_new_page}} {{if_condition_check_for_nofollow==1}}rel="nofollow"{{ifend_condition_check_for_nofollow_1}} class="btn-txt">{{content_title}}{{if_condition_check_for_icon==1}}<i class="ico-pic icon-{{icon-picker}}"></i>{{ifend_condition_check_for_icon_1}}</a> {{if_sub_heading}}<span>{{sub_heading}}</span> {{ifend_sub_heading}}</div> {{if_condition_button_repeat_check==1}}{{repeater}}{{ifend_condition_button_repeat_check_1}} </div>'; $css = ' {{module-class}}.button-mod {width:100%;display:inline-block;text-align:{{align_type}};margin:{{margin_css}};padding:{{padding_css}};} {{module-class}} .btn-txt{ font-size:{{text-size}}; border-radius:{{border-rds}}; color:{{font_color_picker}};background:{{bg_color_picker}};display: inline-block;padding: {{gapping_css}}; width:{{button-width}};font-weight:{{font_weight}};box-sizing:initial; {{if_condition_check_for_border==1}} border:{{brdr-wdt}} solid {{border-clr_pkr}}; {{ifend_condition_check_for_border_1}} } .button-mod span{display: block;font-size: 12px;color: {{sub_color_picker}};font-weight:300;margin-top:10px} {{if_condition_check_for_icon==1}} {{module-class}} .btn-txt .ico-pic{font-size: {{icon-size}};position: absolute; margin:{{margin_gap}};} {{ifend_condition_check_for_icon_1}} {{if_condition_display_type==inline}} .btn{ display:inline-block; margin:{{mrgn_css}}; } {{ifend_condition_display_type_inline}} {{if_condition_check_for_altrbtn==1}} {{module-class}} .alt-btn{ background:{{altbg_color}}; color:{{altfont_color}}; margin-left:5px; } {{ifend_condition_check_for_altrbtn_1}} @media(max-width:768px){ {{if_condition_button_repeat_check==1}} {{module-class}} .btn{margin:0 0 15px 0;} {{ifend_condition_button_repeat_check_1}} } @media(max-width:600px){ {{module-class}} .btn {display: flex;flex-direction: column;align-items: center;} } @media(max-width:425px){ {{module-class}} .btn-txt{width:{{resp-btn-width}};box-sizing:inherit;} {{if_condition_check_for_altrbtn==1}} {{module-class}} .alt-btn{margin-left:0px;} {{ifend_condition_check_for_altrbtn_1}} } '; return array( 'label' =>'Button', 'name' =>'button-mod', 'default_tab'=> 'customizer', 'tabs' => array( 'customizer'=>'Content', 'design'=>'Design', 'advanced' => 'Advanced' ), 'fields' => array( array( 'type' =>'text', 'name' =>"content_title", 'label' =>'Button Text', 'tab' =>'customizer', 'default' =>'Get started free', 'content_type'=>'html', ), array( 'type' =>'text', 'name' =>"btn_link", 'label' =>'URL', 'tab' =>'customizer', 'helpmessage' => esc_html__('Enter URL with Valid Protocol(http, https, mailto, sms, tel, viber, whatsapp, ftp)', 'accelerated-mobile-pages'), 'default' =>'#', 'content_type'=>'html', ), array( 'type' =>'select', 'name' =>'page_link_open', 'label' =>"Open link in", 'tab' =>'customizer', 'default' =>'new_page', 'options_details'=>array( 'new_page' =>'New tab', 'same_page' =>'Same page' ), 'content_type'=>'html', ), array( 'type' =>'checkbox_bool', 'name' =>"check_for_nofollow", 'label' => 'Nofollow Link', 'tab' =>'customizer', 'default' =>0, 'options' =>array( array( 'label'=>'Yes', 'value'=>1, ) ), 'content_type'=>'html', ), array( 'type' =>'text', 'name' =>"sub_heading", 'label' =>'Sub Heading', 'tab' =>'customizer', 'default' =>'No Credit card required', 'content_type'=>'html', ), array( 'type' =>'checkbox_bool', 'name' =>"check_for_icon", 'label' => 'Icon', 'tab' =>'customizer', 'default' =>0, 'options' =>array( array( 'label'=>'Yes', 'value'=>1, ) ), 'content_type'=>'html', ), array( 'type' =>'icon-selector', 'name' =>"icon-picker", 'label' =>'Icon', 'tab' =>'customizer', 'default' =>'check_circle', 'content_type'=>'html', 'required' => array('check_for_icon'=>'1') ), array( 'type' =>'text', 'name' =>"text-size", 'label' =>'Font Size', 'tab' =>'design', 'default' =>'20px', 'content_type'=>'css', ), array( 'type' =>'select', 'name' =>'font_weight', 'label' =>"Font Weight", 'tab' =>'design', 'default' =>'400', 'options_details'=>array( '300' =>'Light', '400' =>'Regular', '500' =>'Medium', '600' =>'Semi Bold', '700' =>'Bold', ), 'content_type'=>'css', ), array( 'type' =>'color-picker', 'name' =>"bg_color_picker", 'label' =>'Background Color', 'tab' =>'design', 'default' =>'#2cbf55', 'content_type'=>'css', ), array( 'type' =>'color-picker', 'name' =>"font_color_picker", 'label' =>'Button Text Color', 'tab' =>'design', 'default' =>'#fff', 'content_type'=>'css' ), array( 'type' =>'color-picker', 'name' =>"sub_color_picker", 'label' =>'Subheading Text Color', 'tab' =>'design', 'default' =>'#888', 'content_type'=>'css' ), array( 'type' =>'text', 'name' =>"icon-size", 'label' =>'Icon Size', 'tab' =>'design', 'default' =>'24px', 'content_type'=>'css', 'required' => array('check_for_icon'=>'1') ), array( 'type' =>'spacing', 'name' =>"margin_gap", 'label' =>'Icon Adjustment', 'tab' =>'design', 'default' => array( 'top'=>'0px', 'right'=>'0px', 'bottom'=>'0px', 'left'=>'0px', ), 'content_type'=>'css', 'required' => array('check_for_icon'=>'1') ), array( 'type' =>'select', 'name' =>'align_type', 'label' =>"Align", 'tab' =>'design', 'default' =>'center', 'options_details'=>array( 'center' =>'Center', 'left' =>'Left', 'right' =>'Right', ), 'content_type'=>'css', ), array( 'type' =>'text', 'name' =>'button-width', 'label' =>'Width', 'tab' =>'design', 'default' =>'200px', 'content_type'=>'css', ), array( 'type' =>'text', 'name' =>'border-rds', 'label' =>'Border Radius', 'tab' =>'design', 'default' =>'0px', 'content_type'=>'css', ), array( 'type' =>'select', 'name' =>'display_type', 'label' =>"Display", 'tab' =>'design', 'default' =>'block', 'options_details'=>array( 'block' =>'Block (Vertical)', 'inline' =>'Inline (Horizontal)', ), 'content_type'=>'css', ), array( 'type' =>'text', 'name' =>'resp-btn-width', 'label' =>'Button Width', 'tab' =>'design', 'default' =>'100%', 'content_type'=>'css', ), array( 'type' =>'spacing', 'name' =>"gapping_css", 'label' =>'Button Padding', 'tab' =>'design', 'default' =>array( 'left'=>'20px', 'right'=>'20px', 'top'=>'10px', 'bottom'=>'10px' ), 'content_type'=>'css', ), array( 'type' =>'spacing', 'name' =>"mrgn_css", 'label' =>'Button Margin', 'tab' =>'design', 'default' => array( 'top'=>'0px', 'right'=>'0px', 'bottom'=>'0px', 'left'=>'0px', ), 'content_type'=>'css', ), array( 'type' =>'checkbox_bool', 'name' =>"check_for_border", 'label' => 'Border', 'tab' =>'design', 'default' =>0, 'options' =>array( array( 'label'=>'Yes', 'value'=>1, ) ), 'content_type'=>'html', ), array( 'type' =>'text', 'name' =>'brdr-wdt', 'label' =>'Border Width', 'tab' =>'design', 'default' =>'2px', 'content_type'=>'css', 'required' => array('check_for_border'=>'1') ), array( 'type' =>'color-picker', 'name' =>"border-clr_pkr", 'label' =>'Border Color', 'tab' =>'design', 'default' =>'#ccc', 'content_type'=>'css', 'required' => array('check_for_border'=>'1') ), array( 'type' =>'checkbox_bool', 'name' =>"check_for_altrbtn", 'label' => 'Customize Alternate Button', 'tab' =>'design', 'default' =>0, 'options' =>array( array( 'label'=>'Yes', 'value'=>1, ) ), 'content_type'=>'html', ), array( 'type' =>'color-picker', 'name' =>"altbg_color", 'label' =>'Background Color', 'tab' =>'design', 'default' =>'#ccc', 'content_type'=>'css', 'required' => array('check_for_altrbtn'=>'1') ), array( 'type' =>'color-picker', 'name' =>"altfont_color", 'label' =>'Button Text Color', 'tab' =>'design', 'default' =>'#333', 'content_type'=>'css', 'required' => array('check_for_altrbtn'=>'1') ), array( 'type' =>'text', 'name' =>"id", 'label' =>'ID', 'tab' =>'advanced', 'default' =>'', 'content_type'=>'html' ), array( 'type' =>'text', 'name' =>"user_class", 'label' =>'Class', 'tab' =>'advanced', 'default' =>'', 'content_type'=>'html' ), array( 'type' =>'spacing', 'name' =>"margin_css", 'label' =>'Margin', 'tab' =>'advanced', 'default' => array( 'top'=>'20px', 'right'=>'0px', 'bottom'=>'20px', 'left'=>'0px', ), 'content_type'=>'css', ), array( 'type' =>'spacing', 'name' =>"padding_css", 'label' =>'Padding', 'tab' =>'advanced', 'default' =>array( 'left'=>'0px', 'right'=>'0px', 'top'=>'0px', 'bottom'=>'0px' ), 'content_type'=>'css', ), array( 'type' =>'checkbox_bool', 'name' =>'button_repeat_check', 'label' =>'Alternate Button', 'tab' =>'customizer', 'default' =>0, 'options' =>array( array( 'label'=>'Yes', 'value'=>1, ) ), 'content_type'=>'html', ), ), 'front_template'=> $output, 'front_css'=> $css, 'front_common_css'=>'', 'repeater'=> array( 'tab'=>'customizer', 'required'=>array('button_repeat_check'=>1), 'fields'=>array( array( 'type' =>'text', 'name' =>"content_title", 'label' =>'Button Text', 'tab' =>'customizer', 'default' =>'Get started free', 'content_type'=>'html', ), array( 'type' =>'text', 'name' =>"btn_link", 'label' =>'URL', 'tab' =>'customizer', 'default' =>'#', 'content_type'=>'html', ), array( 'type' =>'select', 'name' =>'page_link_open', 'label' =>"Open link in", 'tab' =>'customizer', 'default' =>'new_page', 'options_details'=>array( 'new_page' =>'New tab', 'same_page' =>'Same page' ), 'content_type'=>'html', ), array( 'type' =>'text', 'name' =>"sub_heading", 'label' =>'Sub Heading', 'tab' =>'customizer', 'default' =>'No Credit card required', 'content_type'=>'html', ), array( 'type' =>'icon-selector', 'name' =>"icon-picker", 'label' =>'Icon', 'tab' =>'customizer', 'default' =>'check_circle', 'content_type'=>'html', 'required' => array('check_for_icon'=>'1') ), ), 'front_template'=> '<div class="btn"> <a href="{{btn_link}}" {{if_condition_page_link_open==new_page}}target="_blank"{{ifend_condition_page_link_open_new_page}} class="btn-txt{{if_condition_button_repeat_check==1}} alt-btn"{{ifend_condition_button_repeat_check_1}} {{if_condition_check_for_nofollow==1}}rel="nofollow"{{ifend_condition_check_for_nofollow_1}} </a> {{if_condition_button_repeat_check==1}} {{content_title}}{{if_condition_check_for_icon==1}}<i class="ico-pic icon-{{icon-picker}}"></i>{{ifend_condition_check_for_icon_1}} </a> {{if_sub_heading}}<span>{{sub_heading}}</span> {{ifend_sub_heading}} </div> ' ), ); ?>
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List