Is it possible to create categories or tags for the Drupal 7 Blog Module.
I have tried creating a new taxonomy, but can not select it as a new field for the content type. Is there an easier way?
You need to create a new field. Make it type "Term Reference" and choose which taxonomy applies. It's not a shared field.
For Drupal 6 or 7, You can visit here too
Related
In Drupal 7, is it possible to add custom field like below in article node?
These values should be fetched from taxonomy terms
Of course it is possible.
What you need to do is to create widget for term reference or entityreference field(if you have module entityreferenceinstalled).
You can read about how to do it here.
http://example.com/siteadmin url addresses
<?php print $messages; ?>
<?php print drupal_render(drupal_get_form('admin_log')); ?>
Admin Login
how to set the url of the custom node in drupal 7 2
0
Drupal 7: how to create hierarchical node structure 3
0
How do you add a taxonomy field to a custom entity in Drupal 7
3
How do I save custom node types in Drupal 7 2
your question is pretty vague. but here goes
to create a custom url use hook_menu
to create url alias for a custom content type you can use url alias
For hierarchical nodes you could use or Drupal's menu system or
Drupal's taxonomy to make such relations. Or you can also use the
Relation module
What do you mean by custom entity do you mean entities defined in hook_entity_info?
or content types created through admin
I'm using drupal 7 to make a kind of humanities collaborative portal.
Let's say I have 3 taxonomies : authors, concepts, dissertation and the corresponding content-types.
I would like to bind the terms in these taxonomies together.
If I write a dissertation, I would like to be able to choose at least one couple of author-concept as though it was one new tag.
For example, I wrote a dissertation about "What is the self ?", and used Husserl's cogito on one hand and Hume's self on the other hand.
I'm coding my own search engine to fetch these couples so that if I search "Hume cogito" my dissertation won't be in the results.
My problem is that I don't know how to bind taxonomies in that way nor linking those taxonomies when the user creates a content.
I thought about hierachical taxonomy but it doesn't seem to make sense.
Any idea welcome !
In our Project we were using a similar functionality for glossary search.
There are 2 methods one is
Create a content-type for Items.
1)Any term can be mapped to multiple other terms by creating two fields of term reference and making the second field with add many(1 term -may terms relationship) .
2)There was a module in drupal 6 called "Term Relations" which i believe has dev version for drupal 7
I have a field in a cms called 'services' the services is a lsit of checkboxes with the values
1|digital
2|web
3|print
4|apps
The issue is each of the options has a related url. Is there way to link a url to a 'service' or am I looking at taxonomy to solve this issue?
You need to use a taxonomy. A select list is simply a key/value pair with no other additional data. If you build a new taxonomy, you can either use the taxonomy URL for your purpose or you can add a Link field and give each term a specific URL and tie that in somehow, maybe through Views or a custom display.
I have been banging my head against this problem all day. I'm using Drupal 7, and I'm trying to create a contextual filter that uses the pathauto string for a taxonomy term, not the taxonomy term ID.
So, I can make this work:
http://foobar.com/tags/1
But not:
http://foobar.com/tags/tagname
I have created a contextual filter of 'Content: has taxonomy term ID'. I have turned on the default taxonomy view and modified the path in it to try to create a URL that will work. I have gone into /admin/config/search/path/patterns and modified the taxonomy term path. As a result I can make the numeric ID appear in almost any URL with any prefacing text, but I can't get my view to use the pathauto-generated string for a taxonomy term instead of the taxonomy ID.
Any ideas? Am I missing something? All help is appreciated.
--Marshall
The default view "Taxonomy term," is using a contextual filter very similar to what you are trying to achieve, so possibly this could assist you in how to set something like this up. I would try creating a view of type taxonomy instead of content though.