How do I remove the search bar, archives and categories content on the right side of the contact page? Thanks
Hello, Go to template-contact.php present in your theme directory and remove the code given below Code: <?php get_sidebar(); ?> Sending image for reference
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .page-template-template-contact-php .sidebar { display: none; } This will solve your issue.