• Hi your Sydney theme is perfect and with many options i like ! ?? I wanted to replace the old theme on the my site with this excellent!

    But I’m struggling with it “Blog Layout 4” for the mobile version of the site
    I need the featured image to be below the title of the article on the home page (as well as in the categories) and the meta to be below the title of the article( in mobile version)
    In order like this:
    1 title of the article
    2 meta (data post)
    3 featured images
    4. Excerpt

    In content-single.php I managed to edit and change the positions for headline and post_meta
    I hope you will help me thank you

    P.S. whether the theme uses some flash or not?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter blumen

    (@blumen)

    I would appreciate any help with my question-problem. Anyone?
    thanks ??

    Hi,

    I am sorry for the delay.

    You will need to edit this code block in themes/sydney/inc/classes/class-sydney-posts-archive.php.

    case 'layout4':	
    case 'layout6':
      echo '<div class="list-image image-' . esc_attr( $image_placement ) . '">';
      $this->post_image();
      echo '</div>';
    
      echo '<div class="list-content">';
      if ( 'above-title' === $meta_position ) {
        $this->post_meta( $meta_position );
      }
      $this->post_title();
      $this->post_excerpt();
      if ( 'below-excerpt' === $meta_position ) {
        $this->post_meta( $meta_position );
      }					
      echo '</div>';	
      
      break;						
    }
    Thread Starter blumen

    (@blumen)

    Thank you Kharis ?? for the answer.
    I know that part (I found it) But I don’t know how to “compose” the code (in that part) (In this order) the title of the article, meta data, fetaured images would be displayed on the mobile version of the home page website (version blog layout 4).

    (not single page I managed to change that) Please, would you be kind enough to write me how to properly “compose the code” to get what I want

    I tried in every way to move inside the that part of the code, but without success ??

    • This reply was modified 2 years, 6 months ago by blumen.
    • This reply was modified 2 years, 6 months ago by blumen.
    • This reply was modified 2 years, 6 months ago by blumen.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Need help Blog Layout 4 mobile version featured image’ is closed to new replies.