Guust
Forum Replies Created
-
AuthorPosts
-
Can you clarify what you mean?
You mean you want to change the layout of the address in the sidebar?
Have a look at https://wpgeodirectory.com/docs-v2/geodirectory/design-elements/#gd_post_addressThanks
There is no option for that, but you can hide the CPT selector using CSS.
The search bar will always default to the current CPT on archive pages, and on other pages it will show the CPT that has been set with order #1 at GD > Settings > Post Types.
ThanksIn V1 you will need to change the new user to author so the user will be available from the drop down when editing the listing in the backend.
After you have changed the owner of the listing, you can set that user back to subscriber.
In V2, you can select any user directly when editing the listing, without going through the additional steps.
ThanksMarch 25, 2020 at 10:37 pm in reply to: Remove Write a review function for some specific CPT in whoops. #536817If you still see it, that means you have not cleared all caches.
ThanksThis reply has been marked as private.I cannot see anything quirky … ?
Like Alex says, you need a street address, city, region and country all separate.
If not, they your pages for cities, regions and countries cannot work:
…/location/united-states/florida/fort-lauderdale/
…/location/united-states/florida/
…/location/united-states/
etcThanks
March 25, 2020 at 10:45 am in reply to: Remove Write a review function for some specific CPT in whoops. #536696Make sure to clear all caches.
ThanksMarch 25, 2020 at 10:42 am in reply to: Display of the special characters %%tt%% in the titles categories and breadcrumb #536695You’re welcome
March 25, 2020 at 9:50 am in reply to: Remove Write a review function for some specific CPT in whoops. #536688Add this CSS:
.single-gd_sale .geodir-post-rating {display: none;} .single-gd_rent .geodir-post-rating {display: none;}
For more CSS tweaks, see https://wpgeodirectory.com/docs/customizing-your-style/
Thanks
Thanks for letting us know.
March 25, 2020 at 12:18 am in reply to: Remove Write a review function for some specific CPT in whoops. #536609Please give us a URL where we can see that.
ThanksMarch 25, 2020 at 12:13 am in reply to: Sidebar always visible on right side of archive page #536607There is a conflict with UsersWP. UWP is resizing the container.
ThanksYou should use the shortcode builder to prevent copying and pasting incorrect characters.
It looks like the other issue is solved, where the output is truncated?You should change that in the GD Archive Item page …
I could not see the shortcode added in the snippet.
I have added it now.
// adding Badge to the Listing Detail Page Banner function remove_listimia_single_left_info_end() { remove_action('listimia_single_left_info_end', 'listimia_single_left_info_end'); } add_action('init', 'remove_listimia_single_left_info_end'); function listimia_custom_single_left_info_end() { ?> <div class="listing-address"> <i class="fas fa-map-marker-alt"></i> <?php echo strip_tags(do_shortcode('[gd_post_address address_template="%%street%%, %%city%%, %%region%%, %%zip%%"]')); ?> <?php echo '<br>'; ?> <?php echo (do_shortcode('[gd_post_badge key="takeout" condition="is_not_empty" badge="%%input%%" bg_color=#ff9300 txt_color="#ffffff" size="small" ]')); ?> </div> <?php } add_action('listimia_single_left_info_end', 'listimia_custom_single_left_info_end');
-
AuthorPosts