0
Welcome Guest! Login
0 items Join Now

SOLVED Wordpress reducing image widths

  • SOLVED Wordpress reducing image widths

    Posted 8 years 9 months ago
    • I'm struggling with an issue which has suddenly arisen on my Wordpress site which uses the Myriad template.

      I have a large image at the top of each post. This should be a full-width image (1150 pixels wide) that spans the whole of the post.

      For some reason, Wordpress seems to be resizing these when it shows the post - typically down to 1000 pixels wide.
      See here for example:

      http://rcka.eu/twisted-house/

      But in other cases the image remains at the correct width, eg. here:

      http://rcka.eu/about-us/contact/

      For some reason Wordpress seems to be adding in the total width as a CSS value within the html:
      <img class="alignnone  wp-image-777" src="http://i0.wp.com/s333158578.websitehome.co.uk/rcka/website2016_2/wp-content/uploads/2016/06/1106_interior_02.jpg?resize=1150%2C766" alt="1106_interior_02" srcset="http://i1.wp.com/rcka.eu/wp-content/uploads/2016/06/1106_interior_02.jpg?w=1600 1600w, http://i1.wp.com/rcka.eu/wp-content/uploads/2016/06/1106_interior_02.jpg?resize=575%2C383 575w, http://i1.wp.com/rcka.eu/wp-content/uploads/2016/06/1106_interior_02.jpg?resize=1024%2C683 1024w" sizes="(max-width: 1000px) 100vw, 1000px" width="1000" height="667">

      Why is Wordpress adding the following when I want the image to be 1150 pixels wide, as selected within the post editor?:
      sizes="(max-width: 1000px) 100vw, 1000px" width="1000" height="667"
    • Damir's Avatar
    • Damir
    • Preeminent Rocketeer
    • Posts: 22450
    • Thanks: 2679
    • Web Developer

    Re: SOLVED Wordpress reducing image widths

    Posted 8 years 9 months ago
  • Re: SOLVED Wordpress reducing image widths

    Posted 8 years 9 months ago
    • This message contains only secure information that is visible to Damir, moderators and administrators
    • Damir's Avatar
    • Damir
    • Preeminent Rocketeer
    • Posts: 22450
    • Thanks: 2679
    • Web Developer

    Re: SOLVED Wordpress reducing image widths

    Posted 8 years 9 months ago
  • Re: SOLVED Wordpress reducing image widths

    Posted 8 years 9 months ago
    • Hi Damir

      No worries - I manually edited the functions file to restore the site. Actually I'm using the functionality plugin (you may have seen this) because I was having some issues with images not appearing and this was corrected using the following:
      function load_functionality_textdomain() {
      	load_plugin_textdomain( 'functionality', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
      }
      
      add_action( 'plugins_loaded', 'load_functionality_textdomain' );

      I see what you were trying to do with the "remove_max_srcset_image_width" hook, but doing this results in a fatal error:
      Fatal error: Cannot redeclare remove_max_srcset_image_width() (previously declared in /homepages/37/d333158550/htdocs/rcka/website2016_2/wp-content/themes/rt_myriad_wp/functions.php:64) in /homepages/37/d333158550/htdocs/rcka/website2016_2/wp-content/plugins/functionality/functionality.php on line 133

      So this function has already been declared directly by the theme (Myriad) in its own functions.php file, which reads as follows:
      function remove_max_srcset_image_width( $max_width ) {
          return false;
      }
      add_filter( 'max_srcset_image_width', 'remove_max_srcset_image_width' );

      ...but weirdly this issue only seems to be affecting some of the images, not all of them.

      Any other ideas?

      Thanks in advance

      Russell
    • Damir's Avatar
    • Damir
    • Preeminent Rocketeer
    • Posts: 22450
    • Thanks: 2679
    • Web Developer

    Re: SOLVED Wordpress reducing image widths

    Posted 8 years 9 months ago
  • Re: SOLVED Wordpress reducing image widths

    Posted 8 years 9 months ago
    • This message contains only secure information that is visible to Damir, moderators and administrators
  • Re: SOLVED Wordpress reducing image widths

    Posted 8 years 9 months ago
    • I think I've identified the problem. By disabling Jetpack the images return to their correct size.

      I then reactivated Jetpack and tried deactivating each of the Jetpack modules. It appears that the "Photon" module was restricting the image size. Deactivating Photon restores the correct behaviour.

      So, problem solved - thanks for your help.
    • Damir's Avatar
    • Damir
    • Preeminent Rocketeer
    • Posts: 22450
    • Thanks: 2679
    • Web Developer

    Re: SOLVED Wordpress reducing image widths

    Posted 8 years 9 months ago

Time to create page: 0.051 seconds