Questions tagged [drupal-5]

Drupal 5 is the Drupal version released on January 15, 2007. Drupal 5 is no longer officially supported. Consider asking Drupal questions on Drupal Answers: https://drupal.stackexchange.com.

Drupal 5 is the Drupal version released on January 15, 2007. Drupal 5 is no longer supported.

Related tags:

54 questions
3
votes
2 answers

What is the trick to have 2 separate user registration formin Drupal using different templates?

I have a default user registration form that cannot change. However my boss wants a second registration form that is laid out differently than the first. I am new to Drupal so some explanation would be great. Thank you in advance
user363036
  • 319
  • 1
  • 2
  • 7
3
votes
1 answer

Drupal 5: CCK fields in custom content type

I have module that implements custom content type via NodeAPI hooks (hook_insert, hook_update etc). I want to add CCK field to this content type and populate it via hook_nodeapi calls like create or update (to show content nodes in Views). Problem…
Kuroki Kaze
  • 8,161
  • 4
  • 36
  • 48
3
votes
5 answers

Drupal is allowing viewing of unpublished content

I inherited a Druapl5 site and it's showing content when published is not checked in the Publishing Options section of the Edit Content Form. I confirmed that the status is 0 in the DB for the node. So it should be not visible. My first guess was…
easement
  • 6,119
  • 3
  • 29
  • 36
3
votes
2 answers

How do I add two submit buttons to a Drupal 5 form?

I have two submit buttons on my form. One is the normal submit button that calls `my_form_submit` like-ah-so: $form['fieldset']['submit'] = array( '#type' => 'submit', '#value' => 'Show Applications', ); I want to add another button that will…
Jamison Dance
  • 19,896
  • 25
  • 97
  • 99
2
votes
1 answer

How to know when a Drupal Node is new

I want to do a list of new nodes. I went to the code for the path "admin/content/node" which has a similar list, and I found it considers as "new" when the node timestamp is relatively close to the current date. I'm afraid I can not trust on this…
Javis
  • 843
  • 1
  • 9
  • 16
2
votes
3 answers

What version of TinyMCE will work in Drupal 5 with google chrome?

My drupal site (internal) will not display the TinyMCE editor when using Google Chrome browser. Has anyone gotten TinyMCE to work with Chrome in Drupal 5?
ChuckB
  • 1,326
  • 2
  • 15
  • 17
2
votes
4 answers

The page template is not loading, but the node template is loading

sys info: drupal 6 installation, with tons of modules... too many to list. the problem: only a certain content type will not load it's template file correctly. some nodes that would be displayed on these pages through views are making it to the…
Matt Ryan
  • 1,717
  • 2
  • 20
  • 30
2
votes
4 answers

Un-Published items showing in Drupal search results (google search appliacne)

I inherited a Drupal 5 site recently and have a series of enhancements to make. Several of then revolve around search results. Unpublished pages showing up in search engine results. Some of these are old pages, others are recently unpublished. All…
easement
  • 6,119
  • 3
  • 29
  • 36
2
votes
4 answers

Drupal: How to change "Title" Label when creating a new node?

How can I change the 'Title' Label in creating a specific event using Drupal 5. I am using the event module . Do I need to hack the core codes of Drupal? My current URL add event node is: http://cec5/bhutan/?q=en/node/add/event Screenshot: alt text…
marknt15
  • 5,047
  • 14
  • 59
  • 67
1
vote
3 answers

How to show user e-mail in Drupal 5.x profile (nodeprofile)?

The email field in user profiles in Drupal is as far as i understand not ment to be shown (for good and obvoius reasons). But I still need to know how to show user e-mail in Drupal 5.x profile (nodeprofile)?
pm.
  • 225
  • 1
  • 4
  • 14
1
vote
1 answer

Drupal Notifications - Users receiving duplicate emails

We are using Drupal (5.x) Notifications module. Our users are receiving duplicate emails (related to forum posts) First email has this subject line: "Your Daily xyz Discussion Digest" Second email has this subject line: "xyz subscription update for…
Think Floyd
  • 359
  • 2
  • 8
  • 14
1
vote
1 answer

Values from Drupal's hook_order "new"

In Drupal's hook_order function, I was wondering if anyone can tell me how I could find the values of $arg when the case is "new"? The resulting print_r always show up blank for any checkout value such as "billing_first_name" or "billing_last_name"…
Hybride
  • 322
  • 4
  • 17
1
vote
1 answer

How can I create a search block with Taxonomy terms and Keyword search in drupal 5?

I'm trying to create a search block like the one on Top Notch Themes where the users can choose one or more taxonomy terms and then do a keyword search within content that matches those terms. I was trying to figure out how to do this with Views but…
Ed Haber
  • 1,797
  • 2
  • 14
  • 14
1
vote
1 answer

Where (and when) Ubercart stores CC data?

I use Drupal 5 with Ubercart 1 (latest) and uc_subscribe module. I see in uc_subscribe module that CC data for recurring payment is taken from uc_payment_credit table, but I cannot find the place in code where data is added to this table. I grepped…
Kuroki Kaze
  • 8,161
  • 4
  • 36
  • 48
1
vote
1 answer

Wysiwyg mo editor for Drupal 5 forms (Form API): How to enable it for several textareas?

I am trying to create a form with the Drupal 5 form API that has two textareas, both of which should have have a wysiwyg editor enabled to allow HTML formatted input. However, only the second textarea has the editor enabled, the other one displays…
Ellen
  • 33
  • 6
1
2 3 4