This forum is for module development and code related questions, not general module support. For general support, use the Post installation forum.

New Node Development in Drupal 5.x

Hi, I'm a drupal newbie and I am trying to write a new node type but somethings not going right.
I was trying to follow the tutorial at: http://drupal.org/node/71954 and I got to the part about making the form.
For some reason my form doesn't get rendered on the page. Having installed the module whenever I go to the create content page and select my content type the form doesn't show. It just gives me the part handle by the drupal core that gets rendered for every module.

return 'views bookmarks' in block

anyone have any tips on how to do this? i'm not a programmer by any means and i'm having trouble hacking something together.

what i'm trying to accomplish is return a list of a user's 'bookmarks' as determined by the 'views bookmarks' when viewing their profile.

i'm sure this is pretty simple to someone who can decipher the code and i'm sure it would helpful to the drupal community! any ideas?

Isn't there yet just a simple shopping module?

Hi,
I know about e-commerce moudle. But it's really more than our needs and it loads lots of uneeded data into SQL. (in some places causing error)

We need just a simple shopping module which allows the users have their own basket. Add products to their basket and finally pass them all with needed information to our email address for delivery. Vey simple.

a very light version of e-commerce.

Are ther any suggestion/module?

Thanks.

Alerts

How can I setup my site so that users get alerted when comments have been posted on their posts.
For example. If I post a thread. How can I be alerted when someone has commented that thread?
I am looking for a watchlist of some sort.
Anyone with any help would be great appreciated.

Removing Comment Subjects

This tutorial does more than disable the subject. It removes it completely.

First you want to open you comment.tpl.php file which can be found in drupal directory (on your server) / themes / current theme / comment.tpl.php

Open that file. You will see a code that looks like the following:

<div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>">

  <div class="clear-block">
  <?php if ($submitted): ?>
    <span class="submitted"><?php print t('!date — !username', array('!username' => theme('username', $comment), '!date' => format_date($comment->timestamp))); ?></span>
  <?php endif; ?>

  <?php if ($comment->new) : ?>
    <a id="new"></a>
    <span class="new"><?php print drupal_ucfirst($new) ?></span>
  <?php endif; ?>

  <?php print $picture ?>

    <h3><?php print $title ?></h3>

    <div class="content">
      <?php print $content ?>
    </div>

  </div>

  <?php if ($links): ?>
    <div class="links"><?php print $links ?></div>
  <?php endif; ?>
</div>

Inside that code locate a smaller code that looks like the following:
<h3><?php print $title ?></h3>

Delete that small code.

*SAVE AND CLOSE ALL FILES*

Done. Now you have a site that has subject-free comments.

Help with Webform - Creating multipage fitness assessment form

I'm designing a fitness training website. One module/aspect of it would be where clients are able to take a fitness assessment to determine their fitness level. The assessment would feature a multipage form of video, audio and text and will generate a table showing the client's resulted muscular imbalances and suggested corrective strategies.

I like the currect collapsible webform style. However, the survey / questionaire format doesn't support confidentiality.

Pages

Subscribe with RSS Subscribe to RSS - Module development and code questions