Title: Jamie Thingelstad's Replies | WordPress.org

---

# Jamie Thingelstad

  [  ](https://wordpress.org/support/users/thingles/)

 *   [Profile](https://wordpress.org/support/users/thingles/)
 *   [Topics Started](https://wordpress.org/support/users/thingles/topics/)
 *   [Replies Created](https://wordpress.org/support/users/thingles/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/thingles/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/thingles/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/thingles/engagements/)
 *   [Favorites](https://wordpress.org/support/users/thingles/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HipChat] Bad auth token or room name](https://wordpress.org/support/topic/bad-auth-token-or-room-name/)
 *  Thread Starter [Jamie Thingelstad](https://wordpress.org/support/users/thingles/)
 * (@thingles)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/bad-auth-token-or-room-name/#post-4415333)
 * I tried this again today and it now worked fine. Not sure what I had done wrong
   but all seems well.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[P2 Resolved Posts] Limit access to flag as (un)resolved](https://wordpress.org/support/topic/limit-access-to-flag-as-unresolved/)
 *  Thread Starter [Jamie Thingelstad](https://wordpress.org/support/users/thingles/)
 * (@thingles)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/limit-access-to-flag-as-unresolved/#post-3240010)
 * Thanks! That would be great!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Perfect Images: Regenerate Thumbnails, Image Sizes, WebP & AVIF] [Plugin: WP Retina 2x] Bug when using Autofocus Pro theme](https://wordpress.org/support/topic/plugin-wp-retina-2x-bug-when-using-autofocus-pro-theme/)
 *  Thread Starter [Jamie Thingelstad](https://wordpress.org/support/users/thingles/)
 * (@thingles)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-wp-retina-2x-bug-when-using-autofocus-pro-theme/#post-3065661)
 * [@sam](https://wordpress.org/support/users/sam/),
 * You didn’t post a link to your site so I’m just going to guess. I would suspect
   that your logo image tag doesn’t have a set width and height parameter. By commenting
   out the size lines when the src of the image is swapped an image that doesn’t
   have fixed width and height would get bigger.
 * See if that does the trick. Just set a width and height parameter on the image.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Perfect Images: Regenerate Thumbnails, Image Sizes, WebP & AVIF] [Plugin: WP Retina 2x] Bug when using Autofocus Pro theme](https://wordpress.org/support/topic/plugin-wp-retina-2x-bug-when-using-autofocus-pro-theme/)
 *  Thread Starter [Jamie Thingelstad](https://wordpress.org/support/users/thingles/)
 * (@thingles)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-wp-retina-2x-bug-when-using-autofocus-pro-theme/#post-3065653)
 * Hello Jordy —
 * I upgraded the plugin and everything seems fine, **however**, I did still have
   to comment out the two lines that I mentioned before in order to make it work
   on images that are in a carousel/slideshow.
 * Once I commented those out it was working again.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Perfect Images: Regenerate Thumbnails, Image Sizes, WebP & AVIF] [Plugin: WP Retina 2x] Bug when using Autofocus Pro theme](https://wordpress.org/support/topic/plugin-wp-retina-2x-bug-when-using-autofocus-pro-theme/)
 *  Thread Starter [Jamie Thingelstad](https://wordpress.org/support/users/thingles/)
 * (@thingles)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-wp-retina-2x-bug-when-using-autofocus-pro-theme/#post-3065359)
 * Okay. I’ve been hunting this down and I definitely think this is something going
   on it retina.js but I’m not completely sure. I’ve stepped through with the Javascript
   debugger and it clearly shows that in the `.swap()` method the values for `that.
   el.offsetWidth` and `that.el.offsetHeight` are 0.
 * In fact, since I don’t think there is any reason for WP Retina 2x to actually
   change the size of an image I commented out these two assignments and now the
   plugin works in multi-image posts.
 * Edit in `js/retina.js`:
 *     ```
       RetinaImage.prototype.swap = function(path) {
           if (typeof path == 'undefined') path = this.path.at_2x_path;
   
           var that = this;
           function load() {
             if (! that.el.complete) {
               setTimeout(load, 5);
             } else {
               // Commenting these assignments out, they set the value to 0
               // that.el.setAttribute('width', that.el.offsetWidth);
               // that.el.setAttribute('height', that.el.offsetHeight);
              that.el.setAttribute('src', path);
             }
           }
           load();
         }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[FitVids for WordPress] [Plugin: FitVids for WordPress] No menu option in Appearance](https://wordpress.org/support/topic/plugin-fitvids-for-wordpress-no-menu-option-in-appearance/)
 *  Thread Starter [Jamie Thingelstad](https://wordpress.org/support/users/thingles/)
 * (@thingles)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-fitvids-for-wordpress-no-menu-option-in-appearance/#post-2876245)
 * Thanks Kevin — updated and all works fine after the update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[FitVids for WordPress] [Plugin: FitVids for WordPress] No menu option in Appearance](https://wordpress.org/support/topic/plugin-fitvids-for-wordpress-no-menu-option-in-appearance/)
 *  Thread Starter [Jamie Thingelstad](https://wordpress.org/support/users/thingles/)
 * (@thingles)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-fitvids-for-wordpress-no-menu-option-in-appearance/#post-2876216)
 * Thank you! I switched it from edit_themes to switch_themes and it works great
   for me.
 * And, as you reference, I have define(‘DISALLOW_FILE_EDIT’,true); in my wp-config.
   php which is why it wasn’t working for me. Thanks.
 * Kevin, would be great to have this changed in the distribution.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[FitVids for WordPress] [Plugin: FitVids for WordPress] No menu option in Appearance](https://wordpress.org/support/topic/plugin-fitvids-for-wordpress-no-menu-option-in-appearance/)
 *  Thread Starter [Jamie Thingelstad](https://wordpress.org/support/users/thingles/)
 * (@thingles)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-fitvids-for-wordpress-no-menu-option-in-appearance/#post-2876206)
 * Kevin, thanks for the post. Any news? Anything I can provide to help out?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form by BestWebSoft - Advanced WP Contact Form Builder for WordPress] [Plugin: Contact Form] can't access settings page from within amin panel](https://wordpress.org/support/topic/plugin-contact-form-cant-access-settings-page-from-within-amin-panel/)
 *  [Jamie Thingelstad](https://wordpress.org/support/users/thingles/)
 * (@thingles)
 * [14 years ago](https://wordpress.org/support/topic/plugin-contact-form-cant-access-settings-page-from-within-amin-panel/#post-2590754)
 * I’m using WordPress 3.4.1 and Contact Form 3.20 and I get the same error when
   I click on settings.
 * I get sent to
 * `/wp-admin/admin.php?page=contact_form.php`
 * and this is the error presented
 * `You do not have sufficient permissions to access this page.`
 * I’ve looked at file system permissions and they are fine. And I am logged in 
   as a WordPress Administrator.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Twitter Tools problem with Sidebar Modules](https://wordpress.org/support/topic/twitter-tools-problem-with-sidebar-modules/)
 *  [Jamie Thingelstad](https://wordpress.org/support/users/thingles/)
 * (@thingles)
 * [19 years, 3 months ago](https://wordpress.org/support/topic/twitter-tools-problem-with-sidebar-modules/#post-537211)
 * This fix worked for me, but note that as of March 24th it is not line 567, but
   instead line 537 where this line is.
 * It does seem to make it work fine with Sidebar Modules (I’m using K2 as well).

Viewing 10 replies - 1 through 10 (of 10 total)