Hello! I know that but this solution only hide, i want to have a option in theme to remove completly from code of page. Thanks!
Hello @EduardMihai, We provided you quick real solution which you may implement even now but if you want to have a separate option for that then according to our priorities for implementing feature requests we should wait untill your request will become more popular among others. P.S. Just to make you know that many different elements are just hidden/shown on different devices by CSS code and it is normal practice, because there are no ready PHP code way anywhere now to help find what device customer comes from to output/not output the specific content according to it's device width. Kind regards, Jack Richardson
Hello, It can be done by few lines CSS code so there are no real need to make it as option Custom CSS: @media only screen and (min-width: 769px) { body .filter-wrap .open-filters-btn { display: none; } } @media only screen and (max-width: 768px) { .et-toggle-mob-sidebars-wrapper, .sidebar { display: none !important; } } Custom CSS you may add to your child-theme/style.css or Theme Options -> Theme Custom CSS -> Global CSS King regards, Jack Richardson