Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Satish Kumar Sharma

    (@sakush100)

    Well i had already tested with 3.6. Still i tried again with a fresh install of wp 3.6. It works without any issues. There may be issues with javascript conflicts your other plugins.

    try in a fresh wp, if it works then problem is with your plugins or theme.

    Hi,

    I’m not now if u have found a solution but this one fix the problem for me. Perhaps it could be useful for others.

    Locate the admin.js file into plugins/wp-roundabout-pro/js folder.
    At the end of the file you could see that function

    window.send_to_editor = function(html) {
    imgurl = jQuery('img',html).attr('src');
    jQuery('#upload_image').val(imgurl);
    tb_remove();

    Replace (or put /* */ to keep) it to this code :

    var original_send_to_editor = window.send_to_editor;
    
    window.send_to_editor = function(html) {
         var imgurl = jQuery('img',html).attr('src');
         current_item.siblings('.upload_image').val(imgurl);
         //current_item.siblings('#logo').remove();
         current_item.siblings('.image-preview').html('<img src="'+imgurl+'" >');
         tb_remove();
         window.send_to_editor = original_send_to_editor;
    }

    (found here : https://goo.gl/5HBiQr)
    That’s all ??

    i have the same problem, but changing the js did not work for me.
    I’m with no other plugins active, twenty ten them and wordpress 3.7

    I am using WordPress 3.9.1 with WP Roundabout Pro from this download…not even sure if there is more than one version. I am able to see the “roundabout” in my site, but I too cannot seem to see any images. All I see is the broken image icon. In the admin section where you add images..all SEEMS to work when uploading/inserting, but then there is no thumb in the admin and the images appear broken in the actual front end display. Has anyone heard from this developer???? Is he responding to this forum? Will he help all of us who have downloaded and tried his plugin from this repository?? Do we need to contact WordPress about this no-response??

    Thanks
    CTE2087

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Cannot insert an image’ is closed to new replies.