0
I Use This!
Inactive

News

Analyzed about 18 hours ago. based on code collected 1 day ago.
Posted almost 15 years ago by martinjbaker
I've got two content types - Company and Product. Product has a node reference field to Company so it can be associated with its manufacturer. Products are also tagged. What I'm trying to is show a list of related Company node titles in a block when ... [More] viewing a particular tag page. Through finally understanding what Relationships do, I've managed to produce a list of Company node titles related to a tag. The problem happens when a company has more than one product using the same tag (very common) and since under the hood, this essentially a list of products, I get duplicates in the company node title list like this: Company 32 Company 32 Company 93 Company 93 Company 93 Company 129 When I want to see: Company 32 Company 93 Company 129 I've tried checking every "remove duplicates" checkbox I can find but can't see how to get around this. Any thoughts? many thanks Martin [Less]
Posted almost 15 years ago by turadg
Somewhat along the lines of http://drupal.org/node/508744 ... Currently the truefalse question type is integrated into the quiz_question module code and directory. In trying to understand how quiz_question works, it's difficult to identity what is ... [More] essential to quiz_question and what is part of truefalse. Let this issue serve to track the progress of refactoring truefalse out of quiz_question. (mbutcher confirmed on IRC this is a good move.) [Less]
Posted almost 15 years ago by effulgentsia
Following up on http://drupal.org/node/447572#comment-1661114, do you have a sense of when you'll release 3.1? Thanks.
Posted almost 15 years ago by threexk
1. Start with Automated Logout's timeout set to Disabled. (e.g., first-time install) 2. Go to User Settings page. 3. Wait 30+ seconds. 4. Change timeout to 30 seconds and submit. You will be immediately logged out. The preferred behavior would be ... [More] that the timeout counter resets after any timeout change. This problem will generally occur if you change to a lower timeout and you've already been on the User Settings page longer than that new timeout. This was seen in Fx 3.0.11. [Less]
Posted almost 15 years ago by wibbla
Hi I am using views for my videos and taxanomy I am trying too do this. I whant the thumbnail too be on the left side and the title right side of the thumbnail and the decriptions under the title. How can I do this?
Posted almost 15 years ago by catch
Splitting off from #484820: Initial D7UX admin header You currently can't get a slice of a menu down to a certain depth, only all items below a certain point in the tree - it might make sense to add a $depth param to menu_tree_all_data() to just be able to get certain levels of the tree at any one time.
Posted almost 15 years ago by tharaJ
I'm creating social networking site. I use organic group module and privatemessage module. When I (admin) send broadcast message it is received only admin. Even when another person send broadcast message it is received by admin. Even sender doesn't receive it. If anyone can help me in this matter please reply quickly. Thanks. tharaJ
Posted almost 15 years ago by WorldFallz
blocked http://drupal.org/user/263305 for link spam -- 25+ links on old threads in 2 hrs is enough imo.
Posted almost 15 years ago by mrfelton
The ability to limit Currencies available for selection would be a great addittion. We're only interested in a couple of currencies here, but are forced to have a full blown list of all world currencies.
Posted almost 15 years ago by awolfey
Hi, I think we need to do a strict search in in_array() like below. Otherwise the js loads on all content types. /** *  Invoke the plugin if we support it for this node type. */function jquery_media_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) ... [More] {  if ($op == 'view') {    if (in_array($node->type, variable_get('jquery_media_node_types', array()), TRUE)) {      jquery_media_add();    }  }} [Less]