Simone
Forum Replies Created
-
AuthorPosts
-
Hi Jan you can use this in your functions.php
add_filter('body_class', 'gd_cat_body_class'); function gd_cat_body_class($classes) { global $post; if (geodir_is_page('detail') && ($post->default_category == '2' ) ) { $classes[] = 'no-claim'; return $classes;} return $classes; }
You have to check which is your category ID (in the example is 2) and then create a CSS class, for the no-claim, with display:none;
Hi Jan,
hmmm…… the only thing it comes in my mind is adding a custom code where it will show the claim button only for a specified category, and exclude the others (or viceversa)…and the same for add listing process.Hello Riccardo, most of the hooks and functions are in the geodirectory_template_actions.php inside the geodirectory folder.
Hello Vicki, you can either put widgets on your custom homepage (yes, in sidebar or any other widget-area) or you can customise the GD homepage(with NON-wp widgets). GD Home page has many widget-areas in both sidebar, top content middle section and footer.
Hello Jan, you can simply create another price package…you can decide if you want to upgrade the listing by yourself from backend, or let people upgrade from frontend, once they have claimed the listing.
Hello, you can add the slider in the sidebar below info, using this function
add_action( 'geodir_detail_sidebar_inside', 'geodir_details_slider_new',10 ); function geodir_details_slider_new() { global $preview, $post; do_action( 'geodir_details_slider'); }
not tested, it should work
Hello Martyn, this is not possible, the listing needs and can have only an address.
Hello Bob, add this in your style.css inside your child theme
a.b_send_inquiry { display:none; }
Hello, you can find this option int eh Advanced Search settings, where it says “Ask user if they wish to be geolocated” at the very bottom.
If you want to translate the labels for the custom post type, they cannot be translated with WPML yet.
What do you want to translate? you will find all the translatable strings in the WPML settings, not on the .po
If you want to translate the “default” language, you can use the .poHello Nitin, technically to move the slider in other locations, the functions needs to be removed from where it is and placed in some other hook in the theme.. where do you want to move it?
Hello, this is not possible natively and involves many modifications to the core
Hello, there are many plugins able to track outbound links (also Google Analytics provides this feature), here you can find some of these plugins.
Hmm, I think it needs to be excluded from the function itself , because it is mixing the time with the date, so a CSS tweak could not be enough (it will eventually hide the whole date+time).
Stiooofaan 🙂The h1 for the homepage can be easily added, you can add a text widget, for example, in the GD Home top content, and in it you can set an heading relevant with your website, enclosed in the h1 tags (e.g.
<h1> welcome to my website, bla bla some keyword </h1></em>
).
For the detail page (the listings) you’re good to go, the GD template has already a h1 tag, you can analyze this page and you’ll see
https://www.bluestarguide.com/places/colorado-springs/aci-learning-centers-autism-therapy/ -
AuthorPosts