Kiran
Forum Replies Created
-
AuthorPosts
-
Hello Tom,
Please check now after clearing your browser cache.
Kiran
Hello,
This has been fixed and updated on your staging site. This will be in next release as well. If you want to update on your live site then just copy & overwrite following files from staging site to live site.
– /wp-content/plugins/geodir_claim_listing/assets/js/script.js
– /wp-content/plugins/geodir_claim_listing/assets/js/script.min.jsPlease try after clearing your browser cache.
Kiran
This reply has been marked as private.Hello Kathy,
I have investigated and found that there is an error “cURL error 60: Peer’s Certificate has expired.” which creates trouble for uploading image.
Ask your server admin to setup valid SSL certificate. You can try temporary solution porvided at here: https://wpgeodirectory.com/support/topic/images-not-showing-after-upload/#post-469642y
Thanks,
KiranHello Birgit,
Header border is hidden on Supreme Directory child theme do display feature area properly. Because some pages in Supreme theme has featured area which cover the header menu as well(ex: home page). So applying border to header shows border on featured area.
If you wish to add border then you can add for certain pages. Add following code snippet for this.
.sd.search .site-header, .sd.archive .site-header { border: 1px solid #e0e0e0; -moz-box-shadow: 0 1px 1px rgb(104, 55, 89,0.6); -webkit-box-shadow: 0 1px 1px rgb(104, 55, 89,0.6); box-shadow: 0 1px 1px rgb(104, 55, 89,0.6); }Thanks,
KiranFrom WordPress Admin > Settings > Permalinks > Save Changes 🙂
This reply has been marked as private.This reply has been marked as private.February 18, 2019 at 10:40 am in reply to: Issue with object cache when adding/updating metadata? #469672This reply has been marked as private.Hello Ian,
I have fixed the issue & updated on your site. Please check and let us know.
Kiran
February 18, 2019 at 8:11 am in reply to: Issue with object cache when adding/updating metadata? #469644With object cache it was not clearing early stored cache.
See patch here: https://github.com/AyeCode/geodirectory/pull/614/commits/402ca203b2219ed9a259e4fe9f88a19a6f6e0a08
Kiran
Hello,
I have done some debugging and found SSL certificate is not setup correctly. It shows following error during debugging.
cURL error 60: Peer certificate cannot be authenticated with known CA certificatesPlease ask your server admin to look into this.
For temporary fix you can use following code snippet.
/** * Filter http request args. */ function gd_snippet_190217_http_request_args( $args, $url ) { /* * // Disable CURLOPT_SSL_VERIFYPEER to temporary fix: cURL error 60: Peer certificate cannot be authenticated with known CA certificates. */ $args['sslverify'] = false; return $args; } add_filter( 'http_request_args', 'gd_snippet_190217_http_request_args', 10, 2 );Thanks,
KiranThis reply has been marked as private.Hello Kathy,
The logo shows up in the map bubble also, which I did not choose.
This is not a bug, in v2 we have new feature is display listing images. We have new option “Show Logo” in post images widget/shortcode(see attachment), so if there is an field added with name “logo” and
show_logo="true"then it will use image uploaded under logo to show in images.
If you are using post images widget to show images then untick “Show Logo”.
If you are using post images shortcode to show imagesthen do not use show_logo parameter or use show_logo=”false” in shortcode parameter.In map popup we have default
show_logo="true". See https://github.com/AyeCode/geodirectory/blob/master/templates/map-popup.php#L30
If you do not want to show logo as a main image then you can use template system. Just create folder /geodirectory/ in your theme and copy file \wp-content\plugins\geodirectory\templates\map-popup.php under it. So file location will be YOUR_THEME/geodirectory/map-popup.php.
Now edit file YOUR_THEME/geodirectory/map-popup.php and remove show_logo parameter or useshow_logo="false".
Let us know.
Thanks,
Kiran -
AuthorPosts