Viewing 15 replies - 1 through 15 (of 27 total)
  • Sorry for the late response, I somehow never received a notification from WP that there where new support topics ??

    What is the url of your site?

    Thread Starter denmoody

    (@denmoody)

    No worries. here’s the page with the map.

    https://oursimpleadventure.com/travel/

    [Moderator Note: Please ensure that you are embedding links correctly in your posts.]

    Thread Starter denmoody

    (@denmoody)

    I only see a single post with the default thumb image?

    Thread Starter denmoody

    (@denmoody)

    Oops. look again. When I try to add a custom thumbnail, it just shows a spinning wheel.

    I thought I responded yesterday, but somehow nothing shows here. Could you maybe send over the ftp details to info at tijmensmit.com then I can try and make some tweaks to the js file and see if that fixes it.

    Thread Starter denmoody

    (@denmoody)

    I’d be happy to, but I’m not quite sure exactly what you need. What do you mean by FTP details? Sorry, I’m not super technical.

    When you signed up for your hosting you must have recieved a welcome email, with your pw and login and so? It should contain an address like https://ftp.yourdomain.com and the pw and login details?

    How do you upload files to your server, new theme files and so? Do you login to an admin panel on your host to manage your files?

    If you can’t find it, but you do know the admin panel login details on your host then that should probably work as well.

    If you could send them to my email address?

    Thread Starter denmoody

    (@denmoody)

    What’s your email address?

    I am having the exact same problem.
    I’m using the post type ‘portfolio’ … could that be correlated to the error?
    The site is live on kkwn.com but requires login.

    Let me know if there’s any debugging you want me to do. I’m fluid in php, css, javascript etc.

    //Andreas

    @denmoody info at tijmensmit.com
    @echogecko if you can send the login details to info at tijmensmit.com as well, then I can take a look.

    So both sites have the same problem, just not sure yet about the fix yet. The thumb path is set to something like this https://i0.wp.com/yourdomain.com instead of just yourdomain.com.

    If I try to open the image on https://i0.wp.com/yourdomain.com in a browser tab then it works just fine, but it can’t be loaded through the plugin. The image does exists on the yourdomain.com but somehow the thumbpath ends up with the wp.com domain it.

    Now I just have to find a fix for it ??

    Hello Tijmen, (thx for the great plugin),
    have solved the issue? I’m experiencing the same here https://bobcap.cz/cestovni-mapa/ (look at last added posts).
    Thank you
    Bob

    Yeah I have a fix, just haven’t had time to include it in the next version. You can however open the /js/nwm-gmap3.js. Then look for the imageLoader function on line 467.

    Replace the code in the function with this, that should fix it.

    var $li	= $map.find( ".nwm-active-destination" ),
         img = new Image(),
         imgTarget = $li.find( ".nwm-thumb" ),
         imgSrc = $li.find( ".nwm-thumb" ).data( "src" ),
         id	= $li.data( "id" ),
         preloader = '<img class="nwm-preloader" id="nwm-preload-img-' + id + '" src="' + nwmSettings.path + 'admin/img/ajax-loader.gif" />';
    
    	if ( $.inArray( id, loadedImageList ) === -1 ) {
    		$li.append( preloader );
    
    		img.onload = function(){
    			$( "#nwm-preload-img-" + id ).remove();
    			imgTarget.attr( "src", this.src );
    			loadedImageList.push( id );
    		};
    		img.src = imgSrc;
    	} else {
    		imgTarget.attr( "src", imgSrc );
    	}

    Thank you.
    Sadly, now there is no map at all. https://bobcap.cz/cestovni-mapa/

    The imageLoader function was on the line 933, but I don’t think that’s the problem.

Viewing 15 replies - 1 through 15 (of 27 total)
  • The topic ‘Thumbnail Not Showing’ is closed to new replies.