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/Rehub.php
<?php

namespace WeDevs\Dokan\ThemeSupport;

/**
 * Rehub Theme Support
 *
 * @since 2.9.17
 */
class Rehub {
    /**
     * The constructor
     */
    public function __construct() {
        add_filter( 'dokan_load_hamburger_menu', [ $this, 'load_hamburger_menu' ] );
        add_action( 'wp_enqueue_scripts', [ $this, 'set_content_type' ] );
    }

    /**
     * Remove hamburger menu
     *
     * @since 2.9.17
     *
     * @return boolean
     */
    public function load_hamburger_menu() {
        return false;
    }

    /**
     * Make store listing page full width
     *
     * @since  3.0.0
     *
     * @return void
     */
    public function set_content_type() {
        if ( ! dokan_is_store_listing() ) {
            return;
        }

        $style = '.dokan-single-seller .store-content .store-data p {margin: 0}';
        $style .= '.dokan-single-seller .store-content .store-data h2 {margin: 20px 0 15px 0}';

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

        if ( 'full_width' !== get_post_meta( get_the_ID(), 'content_type', true ) ) {
            update_post_meta( get_the_ID(), 'content_type', 'full_width' );
        }
    }
}

Spamworldpro Mini