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

teaser view in ecommerce module

I want to be able to show the quantity box in the teaser view.
Can somebody tell me how this can be done?

ecommerce module

The ecommerce module is missing all payment modules, Do we have download payment module seperately. I can't seem to find find it. Please help me find it

Forms (multistep?) and Cookies.

Using Drupal 5.2

Attempting to create what will be a multistep order form. Trying to incorporate our affiliate tracking system (another drupal module) with it. Basically, when someone comes in via an affilate link, we set two cookies, using standard php cookie setting functions. That part works fine. When someone visits our order form, we want to grab those two cookies and embed them into the form (hidden fields):

The reason I'm giving you all this detail about the cookies is, when I include the code to grab the cookies, the multistep form stops working!

---Example Code (Lifted directly from our order module source, where we're playing with this currently) ---

function abc_module_order_form($form_values = NULL)
{
global $user;

if (!isset($form_values)) {
$step = 1;
}
else {
$step = $form_values['step'] + 1;
}

$form['step'] = array(
'#type' => 'textfield',
'#value' => $step,
);

switch ($step) {
case 1:
if($_COOKIE["cookie1"]){
$c1= $_COOKIE["cookie1"];
if ($_COOKIE["cookie2"]){
$c2=$_COOKIE["cookie2"];
}
}
$form['c1'] = array(
'#type' => 'hidden',
'#default_value' => $c1,
);

Module to vote on meeting date anywhere?

Hi,

is there a module that allows to vote on a date to meet like it is offered by Doodle?

If not, maybe somebody might be interested in developing one?

Kind regards,

Frank

mailto:xyz@yahoo.com

I had installed the drupal 5.x.

I am creating the forum topic, in the body of forum i am writing my mail-id say pkendre@adjility.com. while preview or after submit, i am getting the "pkendre@adjility.com" as hyperlink, and on mouseover am getting the "mailto:pkendre@adjility.com" in status bar.

But after click on the hyperlink, it should be open the outlook express, but in my case it takes me to

Pages

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