Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Tanvir Hasan

    (@tanvirh)

    Hello @dmag55

    Thanks for reaching out.

    If you want to hide the “Dokan News Updates” you may need to add a few custom codes. As we don not provide any custom solutions as per our support policy, still, I want to help you with the solution you are looking for.

    You just need to add this code inside your child theme’s function.php file.

    add_action('admin_head', 'hide_news_update');
    
    function hide_news_update() {
      echo '<style>
       .dokan-dashboard .widgets-wrapper .left-side .postbox:nth-child(2){
    	display:none!important;
    } 
      </style>';
    }

    If you are not familiar with child themes then you may follow this link to know how to create a child theme.

    Have a nice day!

    Shafinoid

    (@shafinahmad01)

    Hi,
    I believe you are doing well,

    As you haven’t replied for a long, I’m considering that your query is being satisfied and I’m also resolving this topic.

    But feel free to create another one anytime.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide box in Dokan Admin Dashboard’ is closed to new replies.