![]() 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; /** * Storefront Theme Support * * @see https://woocommerce.com/storefront/ * * @since 3.0 */ class Storefront { /** * The constructor */ public function __construct() { add_action( 'woocommerce_after_main_content', [ $this, 'remove_sidebar' ], 5 ); add_filter( 'body_class', [ $this, 'full_width_page' ] ); add_action( 'wp_enqueue_scripts', [ $this, 'reset_style' ] ); } /** * Remove sidebar from store and dashboard page * * @return void */ public function remove_sidebar() { if ( dokan_is_store_page() || dokan_is_seller_dashboard() ) { remove_action( 'storefront_sidebar', 'storefront_get_sidebar', 10 ); } } /** * Makes the store and dashboard page full width * * @param array $classes * * @return array */ public function full_width_page( $classes ) { if ( dokan_is_store_page() || dokan_is_seller_dashboard() ) { if ( ! in_array( 'page-template-template-fullwidth-php', $classes, true ) ) { $classes[] = 'page-template-template-fullwidth-php'; } } return $classes; } /** * Reset style * * @since 2.9.30 * * @return void */ public function reset_style() { $style = ''; // Check if the current page is dokan vendor dashboard page if ( dokan_is_seller_dashboard() ) { // Styles to fix date range picker js broken layout issue $style .= '.daterangepicker .calendar-table td, .daterangepicker .calendar-table th { padding: 5px 10px; } .daterangepicker td.in-range { background-color: #ebf4f8 !important; } .daterangepicker td.active, .daterangepicker td.active:hover { background-color: #357ebd !important; }'; $style .= '.dokan-dashboard-wrap .dokan-btn.dokan-btn-theme {border-radius: 3px ! important }'; } // Check if the current page is dokan store listing page. if ( dokan_is_store_listing() ) { $style .= '#dokan-seller-listing-wrap .store-content .store-data-container .store-data h2 a {text-decoration: none}'; $style .= '#dokan-seller-listing-wrap .store-content .store-data-container .store-data h2 {font-size: 24px; margin: 20px 0 10px 0}'; } // Check if dokan pro elementor module activated and the current page is dokan single store page or elementor edit page. if ( function_exists( 'dokan_elementor' ) && method_exists( dokan_elementor(), 'missing_dependencies' ) && ! dokan_elementor()->missing_dependencies() && ( dokan_is_store_page() || dokan_elementor()->is_edit_or_preview_mode() ) ) { $style .= '@media(min-width: 768px) { .elementor-widget-container .dokan-store-product-section li.product.type-product.status-publish { width: 30.3%; float: left; margin-right: 4.3%; } }'; } $style .= '.woocommerce-noreviews::before, .woocommerce-info::before, .woocommerce-error::before {font-weight: 900;}'; wp_add_inline_style( 'dokan-style', $style ); } }