Spamworldpro Mini Shell
Spamworldpro


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/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/theprintave/wp-content/plugins/dokan-lite/includes/ThemeSupport/Flatsome.php
<?php

namespace WeDevs\Dokan\ThemeSupport;

/**
 * Flatsome Theme Support
 *
 * @see https://themeforest.net/item/flatsome-multipurpose-responsive-woocommerce-theme/5484319?ref=wedevs
 *
 * @since 3.0
 */
class Flatsome {

    /**
     * The constructor
     */
    public function __construct() {
        // page layout fix
        add_action( 'wp_head', [ $this, 'store_page' ] );
        add_action( 'wp_head', [ $this, 'edit_page' ] );

        // login popup fix
        add_action( 'wp_enqueue_scripts', [ $this, 'enqueue_scripts' ] );
        add_action( 'wp_enqueue_scripts', [ $this, 'store_listing_style' ], 100 );
    }

    /**
     * Enqueue registration scripts as it opens on popup
     *
     * @return void
     */
    public function enqueue_scripts() {
        if ( is_user_logged_in() ) {
            return;
        }

        dokan()->scripts->load_form_validate_script();
        wp_enqueue_script( 'dokan-vendor-registration' );
    }

    /**
     * Store page fix
     *
     * @return void
     */
    public function store_page() {
        if ( dokan_is_store_page() ) {
            add_action( 'woocommerce_before_main_content', [ $this, 'start_wrapper' ] );
            add_action( 'woocommerce_after_main_content', [ $this, 'end_wrapper' ] );
        }
    }

    /**
     * Product edit page
     *
     * @return void
     */
    public function edit_page() {
        if ( dokan_is_product_edit_page() ) {
            add_action( 'dokan_dashboard_wrap_before', [ $this, 'start_wrapper' ] );
            add_action( 'dokan_dashboard_wrap_after', [ $this, 'end_wrapper' ] );
        }
    }

    /**
     * Page wrapper div
     *
     * @return void
     */
    public function start_wrapper() {
        ?>
        <div id="content" class="content-area page-wrapper" role="main">
            <div class="row row-main">
                <div class="large-12 col">
                    <div class="col-inner">
        <?php
    }

    /**
     * Wrapper div ends
     *
     * @return void
     */
    public function end_wrapper() {
        ?>
                    </div><!-- .col-inner -->
                </div><!-- .large-12 -->
            </div><!-- .row -->
        </div>
        <?php
    }

    /**
     * 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 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}';
        $style .= '#dokan-store-listing-filter-wrap .right .item button, #dokan-store-listing-filter-form-wrap .apply-filter #apply-filter-btn {text-transform: capitalize}';
        $style .= '#dokan-seller-listing-wrap.list-view .dokan-seller-wrap .dokan-single-seller .store-wrapper .store-footer[class] button {text-transform: capitalize}';
        $style .= '#dokan-seller-listing-wrap .dokan-btn-theme.dokan-follow-store-button {text-transform: capitalize}';

        $style .= '@media (max-width: 414px) { ';
        $style .= '#dokan-store-listing-filter-wrap .right .item {font-size: 14px}';
        $style .= '}';

        wp_add_inline_style( 'dokan-style', $style );
    }

}

Spamworldpro Mini