BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
wp-content
/
plugins
/
porto-functionality
/
shortcodes
/
woo_templates
📤 Upload
📝 New File
📁 New Folder
Close
Editing: porto_widget_woo_recently_viewed.php
<?php $output = $title = $number = $animation_type = $animation_duration = $animation_delay = $el_class = ''; extract( shortcode_atts( array( 'title' => '', 'number' => 5, 'animation_type' => '', 'animation_duration' => 1000, 'animation_delay' => 0, 'animation_reveal_clr' => '', 'el_class' => '', ), $atts ) ); if ( ! $title ) { if ( ! $atts ) { $atts = array(); } $atts['title'] = ''; } $el_class = porto_shortcode_extract_class( $el_class ); $output = '<div class="vc_widget_woo_recently_viewed_products wpb_content_element' . 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 .= '>'; $type = 'WC_Widget_Recently_Viewed'; $args = array( 'widget_id' => 'woocommerce_recently_viewed_products_' . $number ); ob_start(); the_widget( $type, $atts, $args ); $output .= ob_get_clean(); $output .= '</div>'; echo porto_filter_output( $output );
Save
Cancel