Paolo
Forum Replies Created
-
AuthorPosts
-
This is the list of shortcodes: https://wpgeodirectory.com/docs-v2/geodirectory/design-elements/
However the shortcode builder should be visible if things are done correctly.
If you provide a link and admin credentials in a private reply, we’ll check if anything is wrong.
Let us know.
Thanks
Hi,
not really, because it’s really designed for users rather than for the admin, however I can suggest a workaround.
Install the code snippets plugin and use this code snippet with it:
if ( is_user_logged_in() ) { add_filter('body_class','add_role_to_body'); add_filter('admin_body_class','add_role_to_body'); } function add_role_to_body($classes) { $current_user = new WP_User(get_current_user_id()); $user_role = array_shift($current_user->roles); if (is_admin()) { $classes .= 'role-'. $user_role; } else { $classes[] = 'role-'. $user_role; } return $classes; }
This will add a body class stating the user role whenever a user is logged in.
At that point you can add this custom css via Appearance > Customize > Custom CSS:
#gd-social-importer { display: none; } .admin #gd-social-importer { display: block; }
This will hide the social importer for all users except the admin.
You’ll probably want to disable the SI importer while you are not using it, to avoid abuses. Because it’s hidden via CSS, anyone who knows how to use the browser’s developers tools could find it and use it.
Thanks
Go to Places > Settings > Custom Fields:
Open the custom field you want to show in the listings page and select “listings page” in the “Show in extra output location” field.
That will do it. Let us know how it goes.
Thank you,
Hi,
you need to go to Places > Settings > Packages > Exclude Fields
Let us know if that was it. (it should …)
Thanks
A developer has been alerted and he’ll get back to you after the week end.
Thanks for your patience
HI,
Because GD V2 uses the theme template, it doesn’t have a bottom widget area. Either you add a bottom widget area to theme templates and in that case you can use the same plugin, or you’ll need to place that content somewhere else.
Thanks
Please provide a link toi that page and we’ll fix your css.
Thanks
I’ve alerted the developers and they’ll check what’s wrong asap.
Thanks for your patience,
Hi,
we are expecting to release it later today, or Monday the latest.
Thanks for your patience,
That sounds better 🙂
Hi Levan,
a developer has been alerted and will look into your issue asap. Please also provide FTP credentials in case they’ll need them.
Thanks
I’m located in Mexico and I logged in briefly to check if everything was setup correctly before asking for help to the developers.
Your site is still available for me.
Probably an ISP problem.
Thanks
With V1 you can filter listings by tag, so if you add a unique tag to 1 listing, it’ll be easy to display only that listing on a page using the gd_listings shortcode.
Hi John,
developers have been alerted. They’ll get back to you asap.
Thanks
-
AuthorPosts