Using Drupal 6, I'm trying to create a page with views that shows something like the following:
-Taxonomy Term 1
-- Title and description of a node that contains this term
-- Title and description of a node that contains this term
-Taxonomy Term 2
-- Title and description of a node that contains this term
-- Title and descr...
I want to be able to show or hide a text snippet on a node based on whether or not it was tagged with a specific taxonomy term.
Something along the lines of:
if (term('green')) {
echo"this is green";
}
else {
echo "not green";
}
What is the Drupal way of doing this?
...
Hi all,
I am working on a large site which has around 600 taxonomy terms in one of its taxonomy vocabularies, each with the description field populated.
It's important that the search mechanism searches these term descriptions as well as the nodes themselves.
Drupal does not appear to be doing this by default - is there any way I can ...
I need to change the height of some taxonomy boxes created by me (by register_taxonomy function) in admin area of Wordpress. Is there a way to do this ?
...
Hi everyone. I'm writing an action for Drupal 6.x that gets triggered every time a node is created or updated. In it, I need to add a (pre-existing) taxonomy term (of which I have the tid and vid) to the node that's just been created/edited. I've tried several approaches, none of which seem to work. I know I could, in principle, modify t...
Hi all,
I'm sure I found a similar question on here the other day with no definite answer - now I can't find it to reference it.
A simplistic version of what I'm trying to achieve would be a couple of selects in the form:
color: red, blue or green
flavor: apple, pear, banana
and a keyword text box.
That's it, but I can't work out how ...
trying to setup drupal's taxonomy module (http://drupal.org/project/taxonomy_access) to administer access to specific categories.
i have two categories of users (two kind of roles). all i'm trying to do is to setup that one have access to some category, and other not.
i did made proper(?) changes in admin/user/taxonomy_access and (ie.)...
Textmate's 'go to file' fuzzy search is really awesome.
Wincent's Command-T plugin for vim does something similar and it rocks too.
Can someone explain how these work? Is there a general term for the method they use?
Edit: I little more detail about what those tools do
The tools let you narrow a list of options (in this case file pa...
Briefly: I'm making a custom view, I want a field listing the two taxonomy terms associated with an NID to output as two distinct links which return arguments for the view (term1 to view/term1, term2 to view/term2. Rather, it outputs as one aggregated link (both term1 and term2 output view/term1%0Aterm2.
Am I doing something wrong or i...
Hello, I'm developing a shopping comparison website, and the project is in a very advanced stage. We index 50 million products daily using merchant feeds from various affiliate networks. Most of the problems I had is already solved, including the majority of the performance bottlenecks.
What is my problem: Please, first of all, we are ...
How to set up special sorting for the terms of custom taxonomy? Thank you!
...
The Problem
We upload (large amounts of) files to SharePoint using FrontPage RPC (put documents call). As far as we've been able to find out, setting the value of taxonomy fields through this protocol requires their WssId.
The problem is that unless terms have been explicitly used before on a listitem, they don´t seem to have a WSS ID....
I have a custom post type with multiple taxonomy types. The issue is focused around just one of them.
I need to display all custom posts that have a taxonomy from featured-vendors checked. Right now, there is just one "featured" , but there may be more in the future, such as "highlight" or "sponsor" or something alone those lines.
But, f...
Many people have a problem with "native" Ubercart menu. Since standart Ubercart menu is not "normal" drupal-menu, it can not be used with others modules like Nice Menu etc
Also standart Ubercart catalog provides its own structure - catalog/term_ID, taxonomy/term/id not supported.
So, the question is:
May I use Taxonomy Menu as alterna...
I have a custom post type called 'real-estate' and a bunch posts (listings) within it. What I'm trying to do is create a handful of home styles and within them, specific listings of available homes.
So right now, I have the search query pulling in only the home styles from the search by only showing results with the custom field "model...
Hi,
I've been looking everywhere, I'm trying to query to find the custom posts which are in this post type with a particular taxonomy value set.
register_post_type('toy',$args);
register_taxonomy( 'age_group', 'toy', array( 'query_var' => true, 'hierarchical' => true, 'label' => __('Age Group') ) );
How can I do this?
I tried th...
I looking for the best way to implement a block that lists all terms of a certain vocabulary. Each term should link to page that lists all nodes associated with that term. Any help would be greatly appreciated. Thanks!
...
Hello
Could somebody give an answers for my question?
How to count clicks on outside URL to another webpage.
I have content type that can have one category (taxonomy). In node view I want to add block below with listing of links to nodes from current node category. How can I accomplish this?
Regards
...
I need to build a custom menu structure based on taxonomy terms. The Problem is that only the first level should be a Taxonomy-Term. All nested items must be a node. Each node can have only one Term. And Terms without any nodes associated should not appear in the menu.
How could i do that? Any suggestions for me?
Example Menu:
TERM-1
...
I am looking for a database which could help me group thousands of English-language keywords to few general disciplines.
For example:
I HAVE THIS => I WANT TO HAVE THIS
cat => animal
chair => household
wine => drink
deer => animal
beer => drink
glass => household, drink
total 50 000 keywords => total <100 disciplines
I guess that orga...