BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
wp-content
/
plugins
/
porto-functionality
/
shortcodes
/
templates
📤 Upload
📝 New File
📁 New Folder
Close
Editing: porto_price_boxes.php
<?php $output = $style = $size = $count_md = $count_sm = $border = $space = $animation_type = $animation_duration = $animation_delay = $el_class = ''; extract( shortcode_atts( array( 'style' => '', 'size' => false, 'count_md' => 4, 'count_sm' => 2, 'border' => true, 'space' => false, 'animation_type' => '', 'animation_duration' => 1000, 'animation_delay' => 0, 'animation_reveal_clr' => '', 'el_class' => '', ), $atts ) ); $el_class = porto_shortcode_extract_class( $el_class ); if ( ! $border ) { $el_class .= ' no-borders'; } if ( $space ) { $el_class .= ' spaced'; } if ( 'sm' === $size ) { $el_class .= ' pricing-table-sm'; } if ( $style ) { $el_class .= ' pricing-table-' . $style; } $output = '<div class="porto-price-boxes pricing-table ' . esc_attr( $el_class ) . '"'; if ( $animation_type ) { $output .= ' data-appear-animation="' . esc_attr( $animation_type ) . '"'; if ( $animation_delay ) { $output .= ' data-appear-animation-delay="' . esc_attr( $animation_delay ) . '"'; } if ( $animation_duration && 1000 != $animation_duration ) { $output .= ' data-appear-animation-duration="' . esc_attr( $animation_duration ) . '"'; } if ( false !== strpos( $animation_type, 'revealDir' ) ) { $output .= ' data-animation-reveal-clr="' . ( ! empty( $animation_reveal_clr ) ? esc_attr( $animation_reveal_clr ) : '' ) . '"'; } } $output .= '>'; $output .= '<div class="row">'; global $porto_price_boxes_count_md, $porto_price_boxes_count_sm; $porto_price_boxes_count_md = $count_md; $porto_price_boxes_count_sm = $count_sm; $output .= do_shortcode( $content ); $porto_price_boxes_count_md = $porto_price_boxes_count_sm = 0; $output .= '</div>'; $output .= '</div>'; echo porto_filter_output( $output );
Save
Cancel