![]() 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/includes/ThemeSupport/ |
<?php namespace WeDevs\Dokan\ThemeSupport; /** * Electro Theme Support * * @see https://themeforest.net/item/electro-electronics-store-woocommerce-theme/15720624?ref=wedevs * * @since 2.9.30 */ class Electro { /** * The constructor */ public function __construct() { add_action( 'wp_enqueue_scripts', [ $this, 'store_listing_style' ], 100 ); } /** * Reset store listing style * * @since 2.9.30 * * @return void */ public function store_listing_style() { if ( ! dokan_is_store_listing() ) { return; } $style = '#dokan-seller-listing-wrap .store-content .store-data-container .store-data {margin-top: 10px}'; $style .= '#dokan-seller-listing-wrap .dokan-btn-theme.dokan-follow-store-button {border: 1px solid; padding: 7px 12px 7px 12px}'; wp_add_inline_style( 'dokan-style', $style ); } }