Reviewed & tested by the community
Project:
Open Graph meta tags
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
15 Apr 2012 at 19:54 UTC
Updated:
7 Oct 2016 at 11:06 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
Goekmen commentedI have this problem too. Is there a workaround?
Comment #2
chasingmaxwell commentedThe easiest, hackerrific workaround is to just change $form['opengraph_meta']['#weight'] in opengraph_meta_form_alter() (which is currently hardcoded to 100). As to the solution, should this be added as a field instead of through a form_alter function? That way the user would have more control of how it appears on the node form. I could see that being much more complicated though.
Comment #3
capellicOr use the Meta Tag module which includes Open Graph support. http://drupal.org/project/metatag
Comment #4
jenlamptonI'm also having problems with the open graph fieldset. It really belongs in the vertical tabs with all the other fieldsets, updating issue title to match.
Comment #5
gsutcliffe commentedThis is an old thread but it's something I worked on today. Without hacking a solution it can be placed in a custom module. You have no control over the weight within the opengraph_meta form, so instead move what you need under the opengraph_meta section. Below is the code to move the vertical tabs and action buttons to the bottom.
Comment #6
hugronaphor commentedWhy don't we just append the current fieldset to the vertical_tabs group? All other core modules(book, menu,..) do the same.
As quick altering hook implement:
And the patch itself...
Comment #7
Daniel Schaefer commentedApplied patch to latest 7.x-2.0-alpha3 and it worked instantly. I think we can go ahead and commit this change.
Comment #8
rcodinaWorks for me too on 7.x-2.x-dev. Thanks!