BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
CTR
/
wp-content
/
plugins
/
porto-functionality
/
shortcodes
/
woo_shortcodes
📤 Upload
📝 New File
📁 New Folder
Close
Editing: porto_widget_woo_recently_viewed.php
<?php // Porto Widget Woo Recently Viewed add_action( 'vc_after_init', 'porto_load_widget_woo_recently_viewed_shortcode' ); function porto_load_widget_woo_recently_viewed_shortcode() { $animation_type = porto_vc_animation_type(); $animation_duration = porto_vc_animation_duration(); $animation_delay = porto_vc_animation_delay(); $animation_reveal_clr = porto_vc_animation_reveal_clr(); $custom_class = porto_vc_custom_class(); // woocommerce recently viewed vc_map( array( 'name' => 'Porto ' . __( 'Recently Viewed', 'porto-functionality' ) . ' ' . __( 'Widget', 'porto-functionality' ), 'base' => 'porto_widget_woo_recently_viewed', 'icon' => PORTO_WIDGET_URL . 'woo.png', 'class' => 'porto-wpb-widget wpb_vc_wp_widget', 'category' => __( 'WooCommerce Widgets', 'porto-functionality' ), 'description' => __( 'Display a list of recently viewed products.', 'porto-functionality' ), 'params' => array( array( 'type' => 'textfield', 'heading' => __( 'Title', 'woocommerce' ), 'param_name' => 'title', 'admin_label' => true, ), array( 'type' => 'textfield', 'heading' => __( 'Number of products to show', 'woocommerce' ), 'param_name' => 'number', 'value' => 5, ), $custom_class, $animation_type, $animation_duration, $animation_delay, $animation_reveal_clr, ), ) ); if ( ! class_exists( 'WPBakeryShortCode_Porto_Widget_Woo_Recently_Viewed' ) ) { class WPBakeryShortCode_Porto_Widget_Woo_Recently_Viewed extends WPBakeryShortCode { } } }
Save
Cancel