Search Results

2
votes

How can I change the way my Drupal theme displays the front page

The main css file that drives your content is the styles.css file located in your currently selected theme. In your case that means that most of your site styling is driven by this file: /aroda/ro …
2
votes

How do you remove the default title and body fields in a CCK generated Drupal content-type?

If you're not a developer (or you want to shortcut the development process), another possible solution is to utilize the auto_nodetitle module. Auto nodetitle will let you create rules for generat …
5
votes

How do I create a node from a cron job in drupal?

The best practices method of making this happen is to utilize drupal_execute. drupal_execute will run standard validation and basic node operations so that things behave the way the system expects …
3
votes

What makes Drupal better/different from Joomla

Under the hood, Joomla runs on mostly an OO architecture, whereas Drupal is almost entirely procedural with OO paradigms. Joomla has no form builder (that I am aware of), so you are forced to hand- …
2
votes

Drupal question: Views, arguments and nodequeues

More hacks: A work-around for the behavior your trying to accomplish might be to forgo using nodequeues at all. I'm not sure the entire impetus for using the nodequeues nor the importance of …
1
vote

Drupal: Staying Organized with Module Changes

The way that Eaton describes above tends to be how we handle the situation for relatively large sites. If you keep a running log of patches, you can always re-create changes. One of the …