Closed (won't fix)
Project:
Nodewords: D6 Meta Tags
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
6 May 2007 at 04:51 UTC
Updated:
9 Oct 2009 at 08:24 UTC
Jump to comment: Most recent
I would like to able to add custom http-equiv tag to drupal. I just want it for the whole site(global). I need to add my SafeSurf metadata to D5.1. This was the closest modules I found that maybe able to do it. A textarea that dumps the contents of it to the <HEAD></HEAD> would be great.
Comments
Comment #1
Robrecht Jacques commentedMeta tags always are
<meta name="..." content="..." />type of stuff, not<http-equiv name="..." content="..." />.I think the easiest way to add something like that would be to add it to your theme, as you need to include it in any page anyway.
I may consider adding support for
<http-equiv .../>type of things, and why not<link ... />someday.Comment #2
hass commentedSubscribe
Comment #3
Robrecht Jacques commentedComment #4
filipe.guerra commentedHi,
I'd like to help out and try to make this request.
How can I help?
Thanks in advance!
Comment #5
guillaumeduveauHello Jacques,
I think it's important to allow the value noarchive for the robots metatag is important : sometimes you just don't want to allow the robots to keep all your information. How about having the options :
all=index,follow,archive
index,nofollow,archive
index,nofollow,noarchive
index,follow,noarchive
noindex,follow,archive
noindex,nofollow,archive
noindex,follow,noarchive
none=noindex,nofollow,noarchive
Comment #6
Anonymous (not verified) commentedIf the default option on search bot is "index, follow, archive" why we have to display it on the head, I think is better to show nothing when we want that option.
Comment #7
anton_ua commentedI created a new file canonical.inc (source was abstract.inc)
and now I want to create a new entry in the HEAD
<link rel = "canonical" ..... />but nodewords.module creates only
<meta name ="...." content ="....." />What do I need to make changes in code?
to show in HEAD
<link rel = "canonical" ..... />For the data entered in canonical.inc, but not for all existingComment #8
mgiffordMy guess is that this is waiting for the rewrite of this module that's been mentioned elsewhere.
Looks like it almost supports just defining a new_metatag.inc file and loading it up, but not quite.
Hopefully soon though. Would be some great flexibility.
Comment #9
avpadernoBranch 6.x-1.x already supports
<meta http-equiv="XYZ" content="ABC />, even though it doesn't define any of those meta tags.It supports also
<link rev="XYZ" content="ABC" />, and<link rel="XYZ" content="ABC" />(which includes the support for the canonical URL).Comment #10
barwonhack commentedFacebook share specification suggests specific meta tags for specific content types (eg: music or video).
Accordingly the ability to specify meta tags and to populate them *per node* would be a great feature.
For example, If I had a page featuring music, I could specify specific preview image, description, track title, album title and MP3 file. This content appears then in facebook neatly packaged up with an MP3 player when the page is shared.
I'm doing this with a simple hand-coded HTML site: http://www.profilemusic.com.au (want to do it properly as Drupal or Wordpress CMS sometime soon) for a client.
Hit the share link and you will see the detailed level of control over what is shared on facebook (or just go here: http://www.facebook.com/pages/Profile-Music/117669132330)
Here is sample metadata for audio example above:
[Edited to make the meta tags visible]
Comment #11
avpadernoThe topic of this thread is to allow meta tags in the format
<meta http-equiv="XYZ" content="ABC">, which is not the same as the meta tags you are shown.Comment #12
avpadernoBranch 6.x-2 has never been supported, and it is not anymore developed.