![]() Server : Apache/2.4.52 (Ubuntu) System : Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64 User : www-data ( 33) PHP Version : 8.1.2-1ubuntu2.21 Disable Function : NONE Directory : /var/www/theprintave/wp-content/plugins/dokan-lite/templates/ |
<?php /** * Dokan vendor information template on product page * * @since 3.3.7 * * @param Object $vendor * @param Array $store_info * @param Array $store_rating * * @package dokan */ ?> <div class="dokan-vendor-info-wrap"> <div class="dokan-vendor-image"> <img src="<?php echo esc_url( $vendor->get_avatar() ); ?>" alt="<?php echo esc_attr( $store_info['store_name'] ); ?>"> </div> <div class="dokan-vendor-info"> <div class="dokan-vendor-name"> <a href="<?php echo esc_attr( $vendor->get_shop_url() ); ?>"><h5><?php echo esc_html( $store_info['store_name'] ); ?></h5></a> <?php do_action( 'dokan_product_single_after_store_name', $vendor ); ?> </div> <div class="dokan-vendor-rating"> <?php if ( $store_rating['count'] ) : ?> <p><?php echo esc_html( $store_rating['rating'] ); ?></p> <?php endif; ?> <?php echo wp_kses_post( dokan_generate_ratings( $store_rating['rating'], 5 ) ); ?> </div> <?php if ( $store_rating['count'] ) : ?> <?php // translators: %d reviews count ?> <p class="dokan-ratings-count">(<?php echo esc_html( sprintf( _n( '%s Review', '%s Reviews', $store_rating['count'], 'dokan-lite' ), esc_html( number_format_i18n( $store_rating['count'] ) ) ) ); ?>)</p> <?php endif; ?> </div> </div>