Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Gay,

    Are you using the Themeshift widget, or a plugin’s? The theme should automatically be set up photo,name, then title in the Team Section.

    Best,
    – Jacob

    Hi Gay,

    I dug a little deeper, and it looks like Juniper does now order the team widget differently. If you are comfortable with the editor, you can go into the “widgets.php” file, search for the Team Row Content Widget area, and re-arrange a section.

    In this section:
    <h4 class=”team-item-title”>
    <?php if ( ! empty( $instance[‘name’] ) ) {
    echo esc_html($instance[‘name’]);
    } ?>
    </h4>
    ” />

    Take the first 5 rows and put them after the bottom 2, so the new code should look like this:

    ” />

    <h4 class=”team-item-title”>
    <?php if ( ! empty( $instance[‘name’] ) ) {
    echo esc_html($instance[‘name’]);
    } ?>
    </h4>

    This should re-order the widget as Photo, Name, Title.

    Best,
    – Jacob

    Sorry, last post got clipped. Here is the before:

    <h4 class=”team-item-title”>
    <?php if ( ! empty( $instance[‘name’] ) ) {
    echo esc_html($instance[‘name’]);
    } ?>
    </h4>
    ” />

    And here is the after:

    ” />

    <h4 class=”team-item-title”>
    <?php if ( ! empty( $instance[‘name’] ) ) {
    echo esc_html($instance[‘name’]);
    } ?>

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Team Section’ is closed to new replies.