kecsula
Forum Replies Created
-
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] How to disable image on the adverts listThanks for everything, this works fine.
The support you provide for the plugin is great!Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] How to disable image on the adverts listHi,
I tried your script but it doesn’t work.
I made a demo website for this: http://devel.infora.hu/
On the main page is an adverts category list with short code:[adverts_categories show=”all” sub_count=”5″ columns=”2″ show_count=”1″]
I added the following code to the theme fuction.php file:add_action(
“adverts_sh_list_before”, function( $params ) {
if( is_tax( “advert_category” ) ) {
echo ‘Go Back‘;
}
} );When I click on a category (e.g. search-computer) on the main page, the search result page opens, but the Go Back button does not appear.
- This reply was modified 3 years ago by kecsula.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] How to disable image on the adverts listHi,
Thanks for your quick answer, the CSS is a good idea. The display: none is works fine. I have a question yet. On the main page is an adverts category list. When someone clicks on a category, a dynamically generated list of results opens. Is it possible to add a back button to this dynamically generated page that takes me back to the main page?