PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
dokan-lite
/
templates
/
widgets
<?php /** * Dokan Widget Content Product Template * * @since 2.4 * * @package dokan */ $img_kses = apply_filters( 'dokan_product_image_attributes', array( 'img' => array( 'alt' => array(), 'class' => array(), 'height' => array(), 'src' => array(), 'width' => array(), ), ) ); ?> <?php if ( $r->have_posts() ) : ?> <ul class="dokan-bestselling-product-widget product_list_widget"> <?php while ( $r->have_posts() ): $r->the_post() ?> <?php global $product; ?> <li> <a href="<?php echo esc_url( get_permalink( dokan_get_prop( $product, 'id' ) ) ); ?>" title="<?php echo esc_attr( $product->get_title() ); ?>"> <?php echo wp_kses( $product->get_image(), $img_kses ); ?> <span class="product-title"><?php echo esc_html( $product->get_title() ); ?></span> </a> <!-- For WC < 3.0.0 backward compatibility --> <?php if ( version_compare( WC_VERSION, '2.7', '>' ) ) : ?> <?php if ( ! empty( $show_rating ) ) echo wc_get_rating_html( $product->get_average_rating() ); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?> <?php else: ?> <?php if ( ! empty( $show_rating ) ) echo $product->get_rating_html(); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?> <?php endif ?> <?php echo $product->get_price_html(); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?> </li> <?php endwhile; ?> </ul> <?php else: ?> <p><?php esc_html_e( 'No products found', 'dokan-lite' ); ?></p> <?php endif; ?>
[+]
..
[-] store-contact-form.php
[edit]
[-] store-map-google-maps.php
[edit]
[-] store-map.php
[edit]
[-] widget-content-product.php
[edit]
[-] store-map-mapbox.php
[edit]
[-] store-open-close.php
[edit]