The button default at the bottom of the views, whish makes it not obvious to find.
How to move it to the top instead?
Thanks

Comments

jvieille created an issue. See original summary.

theemstra’s picture

Status: Active » Closed (outdated)
petednz’s picture

Version: 6.x-3.x-dev » 7.x-3.x-dev
Status: Closed (outdated) » Active

I have this exact question for d7 so rather than opening a new Issue I reset this and reopened. hope that is okay

jvieille’s picture

This is fine, even better: D6 is somewhat banned from this site - hopefully submitting under D7 might trigger interest and solutions.

I normally fake my requests as D7, improving chances of getting some hints to fix my good old D6.

pinueve’s picture

Greenman77’s picture

pinueve stack exchange link information was the best for me and worked perfect although there are two answers here. I used the my theme hook to implement as per below on a Drupal 8 website. Thanks

/**
 * Implements hook_preprocess_views_view().
 */
function mysite_preprocess_views_view(array &$variables) {
  // Move feed icon to the top of the result, instead of buttom.
  if (isset($variables['feed_icons'])) {
    $variables['attachment_before'] = array_merge($variables['attachment_before'], $variables['feed_icons']);
    unset($variables['feed_icons']);
  }
}
Adamam’s picture

Thanks, #6 was helpful

vinyl_roads’s picture

Thanks, #6 is perfect.

plousia’s picture

#6 worked for me, thanks.

jhedstrom’s picture

Status: Active » Fixed

Thanks all!

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.