drupal

How to use pathauto and transliteration modules together?

it might be obvious, but i couldn't find out how. ...

Drupal 6 sign-up booking, reservation system with payments

Hi Guys. I have tried to find out the working solution for implementing simple events booking system in Drupal 6 (limited places, payment, signing up/buying few places for firends). System does not have to be big but easy to customize events to reserve/book places for. I was surprised of not finding much complete solutions. Most of the ...

Drupal: what's the Drupal id for the "Save Button" ?

hi, what's the hook for the Save Button in Drupal ? I've tried $form['submit']['#weight'] = -50; But it doesn't work. I'm sure the template.php file works because for example: $form['author']['#weight'] = -50; works. Thanks ...

Mysql query in drupal database - groupwise maximum with duplicate data

I'm working on a mysql query in a Drupal database that pulls together users and two different cck content types. I know people ask for help with groupwise maximum queries all the time... I've done my best but I need help. This is what I have so far: # the artists SELECT users.uid, users.name AS username, n1.title AS artist_...

Drupal: how can I add text areas to my menus ?

hi, how can I add text areas to my menus with Drupal ? For example see lancelmaat.nl Menu > Contact... I would like to put some text to a submenu and edit it from backend. Thanks ...

Drupal: template.php in theme, how can I edit the block back-end page ?

hi, I use phptemplate_node_form in template.php to edit my back-end node pages function phptemplate_node_form($form) { Which is the function to edit the blocks instead ? thanks ...

Drupal email when someone posts to forum topic.

Is there a module to email the owner of a post when someone replies to there forum post? ...

Is it possible to override drupal_build_css_cache?

Since it's bad practice to modify drupal_build_css_cache directly , does drupal allow overriding this function somehow? ...

Changing background image of a Drupal page based on user's selection...?

Hi I'm trying to give my users the functionality to change what the background image used on a page is. The list of background images will be a small number that won't really change. I thought I could add a few Taxonomy terms...one for each background type...then apply a class to the body tag when the page is viewed. Does this sound ...

How to add content along with pictures in drupal?

How to add content along with pictures in drupal? ...

Joomla, Drupal, DotNetNuke or something else for a sport club?

I am setting up a web site for a football club and I am wondering which CMS to use. I am a developer but I am doing this as a favour to a friend and would rather grab something with modules in it (registration, events, calendar, etc.) already. I need to be able to customise it but I had a look around and Wordpress looks like a blogging ...

Drupal: jquery update module... is possible to replace jQuery files in it ?

hi, I'm using Drupal jquery_update module to use a more recent version of jQuery. I've enabled the module and the jQuery file included in its folder is used. However it is still old: min.1.2.6.js So, I've tried to replace it with min.1.3.2, by replacing the file in the jquery update module "replace/" folder. Unluckily I get some bugs...

Is it possible to integrate user databases between Drupal and an ASP&SQL Server platform?

We have a game project designed on ASP&SQL Server, and we need to integrate it's user database with Drupal. This would be easier from Project to Drupal (since there is user_save and user_delete functions available globally by using drupal bootstrap) but I'm not sure if we can execute PHP functions on an ASP platform. Is there any docum...

How can I create multiple different blocks in one module in Drupal 6?

I'm using hook_block to create a block with the name of the custom module I'm creating. I'm not being able to create a block without using myModuleName_block. Do I need to do different modules for every different block I want to create? ...

Is it possible to make a shopping cart persistent in Ubercart

I would like users to be able to have persistent shopping carts. In other words, unless they check out the shopping cart explicitly the shopping cart with the same items should be available the next time they visit the site. Obviously this would be through the use of a cookie... Is this possible in Drupal? ...

Get CCK values, without the html in Drupal templates

I'm storing a string in a CCK field. The problem is getting it back out. I have a node-node_type.tpl.php and ask it $node->content['field_custom_map_data']['#value'] That returns html, three nested div's and uses HTML entities, I want the pure text, as entered. What is the Drupal 5 way to fix this? ...

html5 site with drupal

Hi can I implement an HTML5 site with drupal? If yes, how? And which version of drupal I need? Thanks in advance, Regards, Michele ...

Drupal: How can one use Context to trigger a reaction for a Taxonomy Term condition caused by a View?

What I would like to do is use the Context module to insert $body_classes of my choosing based on a Taxonomy Term condition. Fine, that's what the Context module is for. Seems simple enough IF your content/page source is a node that is involved with the appropriate Terms. However, I have a page generated by Views that has the appropri...

Integrating Dokuwiki in a Drupal site

Hi, Does anyone have experience or suggestions on how to integrate Dokuwiki with a Drupal site? What I want to achieve is for a user to only have to log in only once with Drupal and be able to access the wiki when they navigate to it. ...

Show block on nodes the user can edit?

What block visibility PHP snippet would show a block only on node pages that the loged-in user can edit? The user may not own the node. In my case, I want to show the Content Complete block to people who can actually populate missing fields. ...