Paolo
Forum Replies Created
-
AuthorPosts
-
Hi,
geodirectory-templates/listing-listview.php. Make sure to make a copy of it in your child theme in a folder named geodirectory to avoid losing changes after every update.
https://wpgeodirectory.com/docs/customizing-geodirectory-templates/
Thanks
Hi,
I can no longer login with the credentials provided earilier in this topic.
Let us know,
Thanks
sorry if we missed your request :(, but glad you were able to solve! 🙂
Thanks
Hi,
what you described is the main scope of GeoDirectory. You can do some testing here by creating your won sandbox if you want to test all add-ons too: http://wordpressmu-3822-8567-17899.cloudwaysapps.com/try-geodirectory/
Just click the launch demo button and a sandbox will be create for you as admin.
Thanks
You are welcome 🙂
If by main menu you mean what you have below search, you should try the GD > CPT Categories widget instead of the popular category widget.
If by main menu you mean the main navigation, that is impossible to achieve with wordpress.
Let us know how you went,
Thanks
add that in GD >> Design >> Scripts >> Custom CSS
Let us know,
Thanks
Hi,
try to add the code provided by Guust in GeoDirectory >> Design >> Scripts >> Custom CSS.
Let us know how you went.
Thanks
You can in text widgets after you add this line into functions.php of your theme:
add_filter('widget_text', 'do_shortcode');Normally widgets don’t parse shortcodes.
Thanks
Hi,
you’ll have to create a geodirectory folder in your child theme. In that folder create a copy of the listing-listview.php template and customize the code.
To check if a listing is claimed:
global $post; $is_owned = geodir_get_post_meta($post_id,'claimed',true); if ($is_owned == '0') { // your function here }To check if a listing is featured
global $post; if(isset($post->is_featured) && $post->is_featured){ // your function here }To check for both things in one statement:
global $post; $is_owned = geodir_get_post_meta($post_id,'claimed',true); if(isset($post->is_featured) && $post->is_featured && $is_owned == '0'){ // your function here }Let us know how you went.
Thanks
Hi,
for point 3 and 4 there is no easy way to do that.
Sorry
Yes it is, thanks!
Ok,
please let us know how you went.
Thanks
Hi,
that is how it normally works.
If that is not the case, you must have a plugin that is setting new redirect rules.
If you share a link and admin credentials, we can check your install and tell you more.
Thanks
Hi,
I’ve moved this in the jobs section of the forum.
Just FYI,
Thanks
-
AuthorPosts