Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author weDevs

    (@wedevs)

    @alvarenga1, If you want to remove the sidebar menu for specific page then you can use CSS to hide it-

    .dokan-dashboard .dokan-dash-sidebar{
    display: none;
    }

    Else, you have to modify the plugin core file.

    Thread Starter alvarenga1

    (@alvarenga1)

    Hi,

    Code you posted not worked to specific page, becouse this CSS hide to completed sidebar menu.

    How i can hide menu sidebar using CSS to remove specific PAGE?

    Thanks you

    Thread Starter alvarenga1

    (@alvarenga1)

    Hi,

    more than 1 week open ticked.

    Support could answer correctly my question?

    Thanks.

    Plugin Author weDevs

    (@wedevs)

    @alvarenga1 I am really sorry for being late. Your requirement is not possible with CSS. You have to edit the template file. As an example- you do not want the sidebar for the order option. Then you can open the order.php file. In this file you will get below line-

    <div class="dokan-dashboard-wrap">
    
        <?php
    
            /**
             *  dokan_dashboard_content_before hook
             *
             *  @hooked get_dashboard_side_navigation
             *
             *  @since 2.4
             */
            do_action( 'dokan_dashboard_content_before' );
            do_action( 'dokan_order_content_before' );
    
        ?>

    You have to comment out those lines.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘remove sidebar bar menu Specific page’ is closed to new replies.