I'm writing a form using the Forms API in 4.7. I'd like the user to be able to confirm the values in the form before submission, but after the values have been validated. Is there any way to do this easily with the 4.7 Forms API? (Upgrading to Drupal 5 is non-trivial at the moment =) )
I've looked at the method at http://drupal.org/node/43682, but that moves the $_POST values directly to a confirmation form without first validating them.
The forms API features a property called "size" which defines the width of a textfield.
Unfortunately "node.css" overwrites this by defining "width: 95%" for the class "form-text".
I've installed drupal and Internationalization module. I've two languages. (french, english).
I defined my homepage (node/1) which is a french page.
I traduct this page so i created a new node (node/2).
When I visit my site in french. It's ok.
The breadCrumb is correct.
When I visit my site in english I've got a problem with breadCrumb.
The link Home also redirect to node/1 (but it's a french page). I want define a second homepage (node/2) which is the traducted page.
I'd like to set up some conversion tracking (via google) for our drupal site.
my first thought was to create a custom block,
& paste the required javascript provided by google into the code block with "full html" input mode on,
and only allow the block to display on a specific page ( eg. cart/checkout ) .