2 replies [Last post]
2shortstories's picture
Offline
Joined: 08/29/2007
Juice: 73
Was this information Helpful?

First of all, thank you gregmac for updating this much-needed module for alpha7e!

This is concerning the new in-store pickup module here:
http://www.ubercart.org/contrib/1420

I installed it last night, works great, but there's one problem: the shipping method name ("In-store pickup") appears fine in the checkout panes. But once "review order" gets clicked, only the shipping rate shows up. There is a blank space before the colon. Please see attached screenshot.

Any ideas how to fix this? Kinda in a hurry because we want to launch the site this weekend!

Thanks!

PreviewAttachmentSize
Picture%202_0.pngPicture%202_0.png15.23 KB
oslinux's picture
Offline
Joined: 09/06/2007
Juice: 461
Re: new In-store pickup module issue

check the corresponding hook, it is an $op switch somewhere that returns this $review, $output object whatever it is called. You can alter it yourself like

$review[] = line 1;
$review[] = line 2;
return$ review;

or

$output .= line 1;
$output .= line 2;
reutrn $output;

fill the line also with an array ('title' => "card number", 'data' => $arg1->payment-details['cardnumber'];

then you can alter it the way you want...

OK Eye-wink

gregmac's picture
Offline
Getting busy with the Ubercode.
Joined: 09/25/2007
Juice: 87
Re: new In-store pickup module issue

I think this may now be fixed in the 0.2 version, but I never replicated this exact bug in 0.1.1 to know for sure. Can you try 0.2 and let me know if it fixes it?