Place an Edit Button on the view node page in Drupal 7 -


i don't use drupal tabs because interfere css need functionality of edit tab on screen user can edit node after reviewing it.
any ideas on how this? functions? tpl placement? thanks!

if you're using views format "fields", 1 of fields can add "edit link." it's pretty flexible; tell text display in link. that's preferred option.

if you're not using "fields" format, gets trickier, since you're interfering basic drupal styling. i'd need more information view , skill set recommend method doesn't cause more problems.

as sidenote: learned drupal theming outside in, , used use css interfere underlying drupal mechanics tabs , contextual links. i've moved away that; find few cases need interfere native styling-- , can use custom .tpl's around.

edit: ah. if you're not using views, custom page .tpl best way go. if you're not familiar, structure node edit link '/node/<nid>/edit' (for clean url's) or '/?q=node/<nid>/edit' old-style url's. depending on how path aliases set up, '/<url-alias>/edit' may work previous ones more reliable.

this link on drupal.org gives few options.


Comments