Home › Forums › Winning Agent Pro Theme › Edit Listings Page › Reply To: Edit Listings Page
Hi Dirk
You can do this by creating and editing a template for the listings. I say create since the AgentPress Listings plugin doesn’t come with it’s own archive page template and the theme doesn’t have one for it (it’s defaulting to a core Genesis Framework template), so you can create one of your own. Follow the steps on this tutorial to create your template:
AgentPress Listings Search Results changed after WordPress 4.0 Update
The template file has only one entry beyond the header info:
genesis();
However, to accomplish what you want, add this ABOVE that genesis();
entry:
// Force full width content layout
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
Forcing it to full width will spread your content out and get rid of the sidebar at the same time.
Hope this helps!