'online_estore_multiple_category_products_block clearfix', 'description' => esc_html__( 'Display a grid & slide view of products from your selected categories.', 'online-estore' ) ); parent::__construct( 'online_estore_multiple_category_products_block', esc_html__( '★ Products By Category', 'online-estore' ), $widget_ops ); } /** * Helper function that holds widget fields * Array is used in update and form functions */ private function widget_fields() { $multiple_products_categories = online_estore_products_categories_lists(); $fields = array( 'block_title' => array( 'online_estore_widgets_name' => 'block_title', 'online_estore_widgets_title' => esc_html__( 'Enter Block Title', 'online-estore' ), 'online_estore_widgets_description' => esc_html__( 'Enter your block title. (Optional - Leave blank to hide the title.)', 'online-estore' ), 'online_estore_widgets_field_type' => 'text' ), 'block_desc' => array( 'online_estore_widgets_name' => 'block_desc', 'online_estore_widgets_title' => esc_html__( 'Enter Block Short Description', 'online-estore' ), 'online_estore_widgets_description' => esc_html__( 'Enter your block description. (Optional - Leave blank to hide the description.)', 'online-estore' ), 'online_estore_widgets_field_type' => 'text' ), 'block_product_cat_id' => array( 'online_estore_widgets_name' => 'block_product_cat_id', 'online_estore_widgets_title' => esc_html__( 'Select Products Category', 'online-estore' ), 'online_estore_widgets_default' => 0, 'online_estore_widgets_field_type' => 'multicheckboxes', 'online_estore_widgets_field_options' => $multiple_products_categories ), 'block_number_products' => array( 'online_estore_widgets_name' => 'block_number_products', 'online_estore_widgets_title' => esc_html__( 'Number of Products Displayed in Each Category', 'online-estore' ), 'online_estore_widgets_default' => 10, 'online_estore_widgets_field_type' => 'number' ), 'block_product_column' => array( 'online_estore_widgets_name' => 'block_product_column', 'online_estore_widgets_title' => esc_html__( 'Display Product Number Column', 'online-estore' ), 'online_estore_widgets_default' => 3, 'online_estore_widgets_field_type' => 'select', 'online_estore_widgets_field_options' => array( '1' => __( 'One', 'online-estore' ), '2' => __( 'Two', 'online-estore' ), '3' => __( 'Three', 'online-estore' ), '4' => __( 'Four', 'online-estore' ), '5' => __( 'Five', 'online-estore' ), '6' => __( 'Six', 'online-estore' ), '7' => __( 'Seven', 'online-estore' ), '8' => __( 'Eight', 'online-estore' ), '9' => __( 'Nine', 'online-estore' ), ) ), 'block_category_column' => array( 'online_estore_widgets_name' => 'block_category_column', 'online_estore_widgets_title' => esc_html__( 'Display Category Number Column', 'online-estore' ), 'online_estore_widgets_default' => 3, 'online_estore_widgets_field_type' => 'select', 'online_estore_widgets_field_options' => array( '1' => __( 'One', 'online-estore' ), '2' => __( 'Two', 'online-estore' ), '3' => __( 'Three', 'online-estore' ), ) ), 'block_product_promo_title' => array( 'online_estore_widgets_name' => 'block_product_promo_title', 'online_estore_widgets_title' => esc_html__( 'Enter Promo Title', 'online-estore' ), 'online_estore_widgets_description' => esc_html__( 'Enter your promo title. (Optional - Leave blank to hide the title.)', 'online-estore' ), 'online_estore_widgets_field_type' => 'text' ), 'block_product_promo_image' => array( 'online_estore_widgets_name' => 'block_product_promo_image', 'online_estore_widgets_title' => esc_html__( 'Upload Promo Image', 'online-estore' ), 'online_estore_widgets_default' => 5, 'online_estore_widgets_field_type' => 'upload' ), 'block_display_layout' => array( 'online_estore_widgets_name' => 'block_display_layout', 'online_estore_widgets_title' => esc_html__( 'Display Block Layouts', 'online-estore' ), 'online_estore_widgets_default' => 'layout1', 'online_estore_widgets_field_type' => 'selector', 'online_estore_widgets_field_options' => array( 'layout1' => esc_url( get_template_directory_uri() . '/assets/images/boxpromoslider.png' ), 'layout2' => esc_url( get_template_directory_uri() . '/assets/images/boxpromosliderright.png' ) ) ), 'block_padding_top' => array( 'online_estore_widgets_name' => 'block_padding_top', 'online_estore_widgets_title' => esc_html__( 'Top Padding Default (0px)', 'online-estore' ), 'online_estore_widgets_description' => esc_html__( 'Enter Top Padding (exp : 40px) (Optional - Leave blank to Default (padding: 0px))', 'online-estore' ), 'online_estore_widgets_field_type' => 'text', 'online_estore_widgets_default' => 35, ), 'block_padding_bottom' => array( 'online_estore_widgets_name' => 'block_padding_bottom', 'online_estore_widgets_title' => esc_html__( 'Bottom Padding Default (35px)', 'online-estore' ), 'online_estore_widgets_description' => esc_html__( 'Enter Bottom Padding (exp : 35px) (Optional - Leave blank to Default (padding: 35px))', 'online-estore' ), 'online_estore_widgets_field_type' => 'text', 'online_estore_widgets_default' => '', ) ); return $fields; } /** * Front-end display of widget. * * @see WP_Widget::widget() * * @param array $args Widget arguments. * @param array $instance Saved values from database. */ public function widget( $args, $instance ) { extract( $args ); if( empty( $instance ) ) { return ; } $block_title = apply_filters( 'widget_title', !empty( $instance['block_title'] ) ? $instance['block_title'] : '', $instance, $this->id_base ); $block_desc = apply_filters( 'widget_description', !empty( $instance['block_desc'] ) ? $instance['block_desc'] : '', $instance, $this->id_base ); $block_cat_id = empty( $instance['block_product_cat_id'] ) ? '' : $instance['block_product_cat_id']; $block_cat_id = unserialize($block_cat_id); $block_layout = empty( $instance['block_display_layout'] ) ? 'layout1' : $instance['block_display_layout']; $product_promo_title = empty( $instance['block_product_promo_title'] ) ? '' : $instance['block_product_promo_title']; $product_promo_image = empty( $instance['block_product_promo_image'] ) ? '' : $instance['block_product_promo_image']; $product_number = empty( $instance['block_number_products'] ) ? 10 : $instance['block_number_products']; $product_column = empty( $instance['block_product_column'] ) ? 5 : $instance['block_product_column']; $category_column = empty( $instance['block_category_column'] ) ? 5 : $instance['block_category_column']; $padding_top = empty( $instance['block_padding_top'] ) ? '' : $instance['block_padding_top']; $padding_bottom = empty( $instance['block_padding_bottom'] ) ? 35 : $instance['block_padding_bottom']; if( !empty( $block_cat_id ) ) { $checked_cats = array(); foreach( $block_cat_id as $cat_key => $cat_value ){ $checked_cats[] = $cat_key; } } else { return; } $product_category = implode( ",", $checked_cats ); $product_category = explode( ',', $product_category ); echo $before_widget; ?>
>

'product', 'tax_query' => array( array( 'taxonomy' => 'product_cat', 'field' => 'term_id', 'terms' => $product_cat_id ) ), 'posts_per_page' => $product_number ); ?>

name ); ?>

    have_posts()) { while($query->have_posts()) { $query->the_post(); ?>
widget_fields(); // Loop through fields foreach ( $widget_fields as $widget_field ) { extract( $widget_field ); // Use helper function to get updated field values $instance[$online_estore_widgets_name] = online_estore_widgets_updated_field_value( $widget_field, $new_instance[$online_estore_widgets_name] ); } return $instance; } /** * Back-end widget form. * * @see WP_Widget::form() * * @param array $instance Previously saved values from database. * * @uses online_estore_widgets_show_widget_field() defined in onlineestore-widget-fields.php */ public function form( $instance ) { $widget_fields = $this->widget_fields(); // Loop through fields foreach ( $widget_fields as $widget_field ) { // Make array elements available as variables extract( $widget_field ); $online_estore_widgets_field_value = !empty( $instance[$online_estore_widgets_name] ) ? wp_kses_post( $instance[$online_estore_widgets_name] ) : ''; online_estore_widgets_show_widget_field( $this, $widget_field, $online_estore_widgets_field_value ); } } }