Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
“wp_terms” are both categories and tags.
OR (wp_terms.name LIKE “bike rentals”
OR wp_terms.name LIKE “bike rentals%”
OR wp_terms.name LIKE “% bike rentals%”
OR wp_terms.name IN (“bike rentals”)) ) ) )Stiofan
Yes, my test server always runs the latest releases (betas) 🙂
Stiofan
I take it you mean “THE RENTAL SHACK” listing? This listing has no word “bike” and no word “rentals” in the title..
Below is a example SQL query, we check many things but non of the criteria are met, let me know what else you think we should check and i will tell you why we don’t.
AND ( ( wp_posts.post_title LIKE “bike rentals”
OR ( wp_posts.post_title LIKE “bike”
OR wp_posts.post_title LIKE “bike%”
OR wp_posts.post_title LIKE “% bike%” )
OR ( wp_posts.post_title LIKE “rentals”
OR wp_posts.post_title LIKE “rentals%”
OR wp_posts.post_title LIKE “% rentals%” ))
OR (wp_posts.post_content LIKE “bike rentals”
OR wp_posts.post_content LIKE “bike rentals%”
OR wp_posts.post_content LIKE “% bike rentals%”
OR wp_posts.post_content LIKE “%>bike rentals%”
OR wp_posts.post_content LIKE “% bike rentals%”)OR (wp_terms.name LIKE “bike rentals”
OR wp_terms.name LIKE “bike rentals%”
OR wp_terms.name LIKE “% bike rentals%”
OR wp_terms.name IN (“bike rentals”)) ) ) )Thanks,
Stiofan
OK thanks.
Stiofan
Great! 🙂
Hi Andrew,
I have checked it over and i can’t see any problems, the only things i can think of it maybe you has the media folder not organised correctly at first and then changed it? Or maybe the delete dummy data was used but only delete the images and then failed.
Stiofan
not tested properly but something like this
add_filter('geodir_get_images_arr','_my_img_alts'); function _my_img_alts($img_arr){ if(!empty($img_arr)){ global $post; foreach($img_arr as $key => $val){ $val->title = $post->post_title; $img_arr[$key] = $val; } } return $img_arr; }Thanks,
Stiofan
June 8, 2017 at 11:18 am in reply to: How to customize Event Cards / Show Date Filed in listings #382291Please provide wp-admin details and we will check.
Thanks,
Stiofan
Please check now, i am not sure how but there was some weird invisible space after it.
Stiofan
Just add these lines to this file, or you can replace the whole file.
Thanks,
Stiofan
This reply has been marked as private.The info has to be stored in ONE language, if you wan it in your original language then you would need to transalte all the locations to english to then show them in the url.
Stiofan
The error from the facebook call is “API calls from the server require an appsecret_proof argument” Please try the solution here: https://stackoverflow.com/questions/22359611/api-calls-from-the-server-require-an-appsecret-proof-argument
The Yelp one you had an extra space infront of the app secret, i removed it and it now works.
Thanks,
Stiofan
Hi Roman,
From the next release we will have an option under GD>Design>listings>Listing image size
Where you can select the size you want to use. If you need the option sooner you you can download the latest from here: https://github.com/GeoDirectory/geodirectoryThanks,
Stiofan
You seem to be having the same problem as this person, please see the first answer, https://stackoverflow.com/questions/41246661/vimeo-api-throwing-an-error-and-not-playing-video
You need to resolve that first before we can move on.
Thanks,
Stiofan
-
AuthorPosts