Hi,
i am afraid that right now we do not really have option 2 and 3, while this could be possible it would require custom programming to have something like that.
Hi! We bought the the Professional Package. I’ll try to do something similar with “Fee Per Category” extension. Is there any way to ovewrite files in “includes” folder. I need to replace 1 or 2 files. Thank you Greg. You’re the best!!
Also How can i Get only the SEARCH FORM without Location and Category filters? Thanks
Hi,
thanks for purchasing the Pro package! I hope you will like it :).
1. only the files in the /templates/ folder can be replaced, the ones in the includes directory should stay as is.
Can you let me know what you would like to change? Maybe there is a way to do it without modifying files?
If nothing else then you can overwrite the files manually in the wpadverts folder, but after each update, you would need to remember to have the file updated.
2. using the Custom Fields extension you can create a new [adverts_list] search form and remove from it the fields you do not want to use.
The Category search field is not in the [adverts_list] by default, so most likely you have it added using a code snippet, in this case it would be best to disable the snippet and add the category search to the form using Custom Fields (this will give you more control over the fields in the search bar(s)).
Also if you want to display a search form with just a keyword search then you can use a simple HTML form like
<form action="https://example.com/" method="get">
<input type="text" name="keyword" placeholder="Keyword ..." />
<input type="submit" value="Search" />
</input>
Just replace https://example.com/ with an actual link to a page with the [adverts_list] shortcode on your site.