geode_thumbnail
This topic contains 14 replies, has 4 voices, and was last updated by Giri 7 years, 10 months ago.
We have moved to a support ticketing system and our forums are now closed.
Open Support Ticket-
AuthorPosts
-
May 19, 2017 at 6:50 am #379061
I seem to have run into a problem getting the listings to show the logo instead of the featured image. I have inserted code in functions.php to work around the issue, but I would like to find a more elegant solution. Currently, behind the logo image, there is the featured image, but the paths are showing as https://www.(mysite).com/wp-content/uploadshttps:/www.(mysite).com/wp-content/uploads/(year)/(month)/(filename).jpg
I don’t know where the plugin (or theme, or wordpress install) is getting that URL. I have gone through myphpadmin and everything is listed correctly.
Any help would be appreciated.
Thanks!
May 19, 2017 at 6:51 am #379062This reply has been marked as private.May 19, 2017 at 9:38 am #379076Hi Dustin,
Could you share the custom code here so that we can check and see if it’s correctly written?
Thanks!
May 19, 2017 at 6:41 pm #379181This reply has been marked as private.May 19, 2017 at 6:45 pm #379183This reply has been marked as private.May 19, 2017 at 6:47 pm #379184This reply has been marked as private.May 19, 2017 at 6:54 pm #379187This reply has been marked as private.May 19, 2017 at 6:58 pm #379189Hi,
I asked to Giri to follow up, however it is possible that he won’t reply before Monday.
Thanks for your patience,
May 22, 2017 at 11:50 am #379463Hi Dustin,
We faced this problem before.
I added a patch but removed it for some reason.
Can you try applying this patch and let me know whether it works or not?
https://github.com/mistergiri/geodirectory/commit/cdfcd2f8667b3ac6486d5039f2e579d12196f2cc
Thanks
May 22, 2017 at 5:57 pm #379547Hi Giri,
It looks like that is already removed:
if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) { $img_arr = array(); $file_info = pathinfo($file); $sub_dir = ''; if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') { $sub_dir = stripslashes_deep($file_info['dirname']); }
May 22, 2017 at 5:59 pm #379548Here is the full function:
if (!function_exists('geodir_get_featured_image')) { /** * Gets the post featured image. * * @since 1.0.0 * @package GeoDirectory * @global object $wpdb WordPress Database object. * @global object $post The current post object. * @global string $plugin_prefix Geodirectory plugin table prefix. * @param int|string $post_id The post ID. * @param string $size Optional. Thumbnail size. Default: thumbnail. * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false. * @return bool|object Image details as an object. */ function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false) { /*$img_arr['src'] = get_the_post_thumbnail_url( $post_id, 'medium');//medium/thumbnail $img_arr['path'] = ''; $img_arr['width'] = ''; $img_arr['height'] = ''; $img_arr['title'] = ''; return (object)$img_arr;*/ global $wpdb, $plugin_prefix, $post; if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) { $post_type = $post->post_type; } else { $post_type = get_post_type($post_id); } if (!in_array($post_type, geodir_get_posttypes())) { return false;// if not a GD CPT return; }
/**
* Filter to force the list images to be smaller.
* @since 1.6.18
*/
if( $size==’list-thumb’ && apply_filters(‘geodir_use_small_list_img’,false) ){
$fimg = get_the_post_thumbnail_url($post_id,’medium’);
if($fimg){
$uploads = wp_upload_dir();
$uploads_baseurl = $uploads[‘baseurl’];
$file = str_replace($uploads_baseurl,”,$fimg);
}
}$table = $plugin_prefix . $post_type . ‘_detail’;
if (!$file) {
if (isset($post->featured_image)) {
$file = $post->featured_image;
} else {
$file = $wpdb->get_var($wpdb->prepare(“SELECT featured_image FROM ” . $table . ” WHERE post_id = %d”, array($post_id)));
}
}if ($file != NULL && $file != ” && (($uploads = wp_upload_dir()) && false === $uploads[‘error’])) {
$img_arr = array();$file_info = pathinfo($file);
$sub_dir = ”;
if ($file_info[‘dirname’] != ‘.’ && $file_info[‘dirname’] != ‘..’) {
$sub_dir = stripslashes_deep($file_info[‘dirname’]);
}$uploads = wp_upload_dir(trim($sub_dir, ‘/’)); // Array of key => value pairs
$uploads_baseurl = $uploads[‘baseurl’];
$uploads_path = $uploads[‘path’];$file_name = $file_info[‘basename’];
$uploads_url = $uploads_baseurl . $sub_dir;
May 23, 2017 at 9:43 am #379642Hi Dustin,
I know those lines are removed.
Thats why i mentioned like this.I added a patch but removed it for some reason.
I suggested to add those lines back and try.
May 23, 2017 at 2:11 pm #379690Ah, I misunderstood. I have added them back and the logos show up, but I’m still getting duplicate images on top of one another.
May 23, 2017 at 8:37 pm #379755I removed the custom code in functions.php that created the extra div for the company logo and it all seems fine. Anyway, we can call this topic resolved.
May 24, 2017 at 10:56 am #379808Thanks Dustin for letting us know.
-
AuthorPosts
We have moved to a support ticketing system and our forums are now closed.
Open Support Ticket