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
  • Author
    Posts
  • #379061

    Dustin Ames
    Expired Member
    Post count: 28

    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!

    #379062

    Dustin Ames
    Expired Member
    Post count: 28
    This reply has been marked as private.
    #379076

    Kor
    Moderator
    Post count: 16516

    Hi Dustin,

    Could you share the custom code here so that we can check and see if it’s correctly written?

    Thanks!

    #379181

    Dustin Ames
    Expired Member
    Post count: 28
    This reply has been marked as private.
    #379183

    Dustin Ames
    Expired Member
    Post count: 28
    This reply has been marked as private.
    #379184

    Dustin Ames
    Expired Member
    Post count: 28
    This reply has been marked as private.
    #379187

    Dustin Ames
    Expired Member
    Post count: 28
    This reply has been marked as private.
    #379189

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    I asked to Giri to follow up, however it is possible that he won’t reply before Monday.

    Thanks for your patience,

    #379463

    Giri
    Expired Member
    Post count: 3155

    Hi 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

    #379547

    Dustin Ames
    Expired Member
    Post count: 28

    Hi 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']);
                }
    
    #379548

    Dustin Ames
    Expired Member
    Post count: 28

    Here 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;

    #379642

    Giri
    Expired Member
    Post count: 3155

    Hi 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.

    #379690

    Dustin Ames
    Expired Member
    Post count: 28

    Ah, I misunderstood. I have added them back and the logos show up, but I’m still getting duplicate images on top of one another.

    #379755

    Dustin Ames
    Expired Member
    Post count: 28

    I 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.

    #379808

    Giri
    Expired Member
    Post count: 3155

    Thanks Dustin for letting us know.

Viewing 15 posts - 1 through 15 (of 15 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount