PATH:
home
/
letacommog
/
pymreception1
/
wp-content
/
plugins
/
dc-woocommerce-multi-vendor
/
templates
/
widget
<?php /** * The template for displaying demo plugin content. * * Override this template by copying it to yourtheme/dc-product-vendor/widget/vendor-list.php * * @author WC Marketplace * @package dc-product-vendor/Templates * @version 0.0.1 */ global $WCMp; $vendor_count = count($vendors); ?> <div id="wcmp_widget_vendor_search" class="vendor_search_wrap"> <?php wp_nonce_field( 'wcmp_widget_vendor_search_form', 'wcmp_vendor_search_nonce' ); ?> <input type="search" class="search_keyword search-field" placeholder="<?php echo __('Search Vendor…', 'dc-woocommerce-multi-vendor'); ?>" value="" name="s" style="width: 100%;margin-bottom: 10px;"> </div> <?php if($vendor_count > 5 ) { ?> <div id="wcmp_widget_vendor_list" style="height: 308px; overflow-y: scroll; width: 226px;" > <?php } else {?> <div id="wcmp_widget_vendor_list" style=" height: auto; width: 226px;" > <?php } if($vendors) { foreach($vendors as $vendors_key => $vendor) { $vendor->image = $vendor->get_image() ? $vendor->get_image() : $WCMp->plugin_url . 'assets/images/WP-stdavatar.png'; ?> <div style=" width: 100%; margin-bottom: 5px; clear: both; display: block;"> <div style=" width: 25%; display: inline;"> <img width="50" height="50" class="vendor_img" style="display: inline;" src=<?php echo $vendor->image; ?> id="vendor_image_display"> </div> <div style=" width: 75%; display: inline; padding: 10px;"> <a href="<?php echo esc_attr( $vendor->permalink ); ?>"> <?php echo $vendor->page_title; ?> </a> </div> </div> <?php } }?> </div>
[+]
..
[-] quick-info.php
[edit]
[-] vendor-info.php
[edit]
[-] store-location.php
[edit]
[-] vendor-list.php
[edit]