BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
wp-content
/
plugins
/
porto-functionality
/
shortcodes
/
shortcodes
📤 Upload
📝 New File
📁 New Folder
Close
Editing: porto_sticky_nav_link.php
<?php // Porto Sticky Nav Link add_action( 'vc_after_init', 'porto_load_sticky_nav_link_shortcode' ); function porto_load_sticky_nav_link_shortcode() { $custom_class = porto_vc_custom_class(); vc_map( array( 'name' => 'Porto ' . __( 'Sticky Nav Link', 'porto-functionality' ), 'base' => 'porto_sticky_nav_link', 'category' => __( 'Porto', 'porto-functionality' ), 'description' => __( 'Sticky navigation', 'porto-functionality' ), 'icon' => PORTO_WIDGET_URL . 'sticky-nav.gif', 'class' => 'porto-wpb-widget', 'as_child' => array( 'only' => 'porto_sticky_nav' ), 'params' => array( array( 'type' => 'textfield', 'heading' => __( 'Label', 'porto-functionality' ), 'param_name' => 'label', 'admin_label' => true, ), array( 'type' => 'textfield', 'heading' => __( 'Link', 'porto-functionality' ), 'param_name' => 'link', 'admin_label' => true, ), array( 'type' => 'checkbox', 'heading' => __( 'Show Icon', 'porto-functionality' ), 'param_name' => 'show_icon', 'value' => array( __( 'Yes, please', 'js_composer' ) => 'yes' ), ), array( 'type' => 'dropdown', 'heading' => __( 'Icon library', 'js_composer' ), 'value' => array( __( 'Font Awesome', 'porto-functionality' ) => 'fontawesome', __( 'Simple Line Icon', 'porto-functionality' ) => 'simpleline', __( 'Custom Image Icon', 'porto-functionality' ) => 'image', ), 'param_name' => 'icon_type', 'dependency' => array( 'element' => 'show_icon', 'not_empty' => true, ), ), array( 'type' => 'attach_image', 'heading' => __( 'Select Icon', 'porto-functionality' ), 'dependency' => array( 'element' => 'icon_type', 'value' => 'image', ), 'param_name' => 'icon_image', ), array( 'type' => 'iconpicker', 'heading' => __( 'Select Icon', 'porto-functionality' ), 'param_name' => 'icon', 'dependency' => array( 'element' => 'icon_type', 'value' => 'fontawesome', ), ), array( 'type' => 'iconpicker', 'heading' => __( 'Select Icon', 'porto-functionality' ), 'param_name' => 'icon_simpleline', 'value' => '', 'settings' => array( 'type' => 'simpleline', 'iconsPerPage' => 4000, ), 'dependency' => array( 'element' => 'icon_type', 'value' => 'simpleline', ), ), array( 'type' => 'dropdown', 'heading' => __( 'Skin Color', 'porto-functionality' ), 'param_name' => 'skin', 'std' => 'custom', 'value' => porto_sh_commons( 'colors' ), ), array( 'type' => 'colorpicker', 'heading' => __( 'Link Color', 'porto-functionality' ), 'param_name' => 'link_color', 'selectors' => array( '.porto-sticky-nav .nav-pills > li{{WRAPPER}} > a, .porto-sticky-nav .nav-pills > li{{WRAPPER}} > span' => 'color: {{VALUE}};', ), 'dependency' => array( 'element' => 'skin', 'value' => array( 'custom' ), ), ), array( 'type' => 'colorpicker', 'heading' => __( 'Link Background Color', 'porto-functionality' ), 'param_name' => 'link_bg_color', 'selectors' => array( '.porto-sticky-nav .nav-pills > li{{WRAPPER}} > a, .porto-sticky-nav .nav-pills > li{{WRAPPER}} > span' => 'background-color: {{VALUE}};', ), 'dependency' => array( 'element' => 'skin', 'value' => array( 'custom' ), ), ), array( 'type' => 'colorpicker', 'heading' => __( 'Link Border Color', 'porto-functionality' ), 'param_name' => 'link_br_color', 'selectors' => array( '.porto-sticky-nav .nav-pills > li{{WRAPPER}} > a, .porto-sticky-nav .nav-pills > li{{WRAPPER}} > span' => 'border-bottom-color: {{VALUE}};', ), ), array( 'type' => 'colorpicker', 'heading' => __( 'Link Active Color', 'porto-functionality' ), 'param_name' => 'link_acolor', 'selectors' => array( '.porto-sticky-nav .nav-pills > li{{WRAPPER}}.active > a, .porto-sticky-nav .nav-pills > li{{WRAPPER}}:hover > a' => 'color: {{VALUE}};', ), 'dependency' => array( 'element' => 'skin', 'value' => array( 'custom' ), ), ), array( 'type' => 'colorpicker', 'heading' => __( 'Link Active Background Color', 'porto-functionality' ), 'param_name' => 'link_abg_color', 'selectors' => array( '.porto-sticky-nav .nav-pills > li{{WRAPPER}}.active > a, .porto-sticky-nav .nav-pills > li{{WRAPPER}}:hover > a' => 'background-color: {{VALUE}};', ), 'dependency' => array( 'element' => 'skin', 'value' => array( 'custom' ), ), ), array( 'type' => 'colorpicker', 'heading' => __( 'Link Active Border Color', 'porto-functionality' ), 'param_name' => 'link_abr_color', 'selectors' => array( '.porto-sticky-nav .nav-pills > li{{WRAPPER}}.active > a, .porto-sticky-nav .nav-pills > li{{WRAPPER}}:hover > a' => 'border-bottom-color: {{VALUE}};', ), ), $custom_class, ), ) ); if ( ! class_exists( 'WPBakeryShortCode_Porto_Sticky_Nav_Link' ) ) { class WPBakeryShortCode_Porto_Sticky_Nav_Link extends WPBakeryShortCode { } } }
Save
Cancel