Remove listings page sidebar

If you mean removing the page sidebar with the listing form, there are 2 ways:

  1. Using CSS:
.hp-template--listings-view-page .hp-page__content {
	flex-basis: 100% !important;
	max-width: 100% !important;
}

hp-template--listings-view-page .hp-page__sidebar {
	display:none!important;
}
  1. Using template overriding Overview | HivePress Templates - YouTube
1 Like