Kor
Forum Replies Created
-
AuthorPosts
-
Hi Carol Chu,
I don’t see any custom CSS inserted in your Website. Probably you’re doing it incorrectly. Do you think you can share temp admin access to your site so we can take a better look? You can post the details here using the private reply option below.
Hi Michel,
Thanks for your reply. I’d like you to know that we have a forum for GD developers. Could you please start a thread there about your requirements? https://wpgeodirectory.com/support/forum/geodirectory-jobs/
Thanks!
Hi Frank,
You’re Welcome. Please let us know if you need anything further.
Hi there,
Sorry about that, our developer just added it. You can check it out here. https://wpgeodirectory.com/codex/codex_project/geodir_claim_listing/
Thanks!
Hi Carol,
Could you apply this custom CSS and see if it’s what you’re looking for? Insert into GD > Design > Script > Custom Style CSS
.comment-form-comment label { display: block; }
Hi there,
I need to see your Website in order to understand what exactly you needed there. Could you please share temp admin access and also some screenshots of what you are trying to achieve? You can use the private reply option below.
Thanks!
Hi Scamp,
I’ve just checked with our developer and there’s currently no way you can achieve it without custom modification to the plugin files which falls outside the scope of what we offer for support. Well, I’m sorry for that and please let us know if you need anything else.
Thanks!
Hi John,
Unfortunately, that requires intense customization to the Google map which falls outside the scope of what we offer for support. I’d suggest that you bring this question to the Google Map support channel here. https://developers.google.com/maps/documentation/javascript/support
Hi Frank,
Unfortunately, what you needed there requires custom modification to the plugin which falls outside the scope of what we offer for support. You can only choose between a lists or tabs and can be configured in GD > Design > Deatls > Show As list
Thanks
Hi Carol,
Could you please provide the link to the location you’re referring to? It would be easier for us to provide you a custom CSS to fix this.
To change the texts, refer to this section of the documentation. https://wpgeodirectory.com/docs/translate-core/
Hi sylvester,
Thanks for your reply. There’s a lot to learn about this and I’d like you to check out our codex that includes all hooks/filters that you can use within our plugin and addons https://wpgeodirectory.com/docs/codex/
Hi Richard,
Could you please update all GD plugins and see if it fixes the issue? Let us know how it goes.
Hi there,
We have a test site here https://wpgeo.directory and it’s populated with some data. You might want to play around with it and see if it’s what you’re looking for. Please go through some of these docs to understand more about the functionalities.
https://wpgeodirectory.com/docs/category/addons/search-filters/
https://wpgeodirectory.com/docs/category/addons/location-manager/This reply has been marked as private.Hi Sylvester,
Could you try the custom code below? Use this plugin to apply custom code to your Website https://wordpress.org/plugins/code-snippets/ . Let us know how it goes.
function geodirectory_claim_link_on_listing( $post_id, $post ) { global $gd_claim_post_types; if ( !( !empty( $post ) && !empty( $post->post_type ) && defined( 'CLAIM_BUSINESS_OWNER' ) ) ) { return; } $gd_claim_post_types = !empty( $gd_claim_post_types ) ? $gd_claim_post_types : get_option( 'geodir_post_types_claim_listing' ); if ( in_array( $post->post_type, (array)$gd_claim_post_types ) ) { $is_owned = geodir_get_post_meta( $post_id, 'claimed', true ); if ( get_option('geodir_claim_show_owner_varified') == 'yes' && $is_owned != '0' ) { echo '<span class="geodir-listing-verified"><i class="fa fa-check-circle" style="color:orange"></i> ' . __( 'Verified Listing', 'geodirectory' ) . '</a></span>'; } if ( get_option('geodir_claim_enable') == 'yes' && $is_owned == '0' ) { $claim_url = add_query_arg( array( 'gd_go' => 'claim' ), get_permalink( $post_id ) ); echo '<span class="geodir-listing-claim"><a href="' . esc_url( $claim_url ) . '"><i class="fa fa-question-circle"></i> ' . CLAIM_BUSINESS_OWNER . '</a></span>'; } } } add_action( 'geodir_listing_after_pinpoint', 'geodirectory_claim_link_on_listing', 10, 2 );
-
AuthorPosts