Post by Qphoria » Tue Oct 23, 2012 8:11 pm

rph wrote: Does no one actually read what I say before replying? :bang:
I try not to! I swear! :joker:

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by OC2PS » Wed Oct 24, 2012 1:12 pm

Q,

I've used some styling and small tweaks in Uber Checkout to (hopefully) make them seem friendlier. Posting these here humbly in case they are useful when you revise the extension.
page1.JPG

page1.JPG (69.48 KiB) Viewed 8415 times

In page 1, instead of the vertical options, I've opted for the more common horizontal options for new customer or returning customer.

I've also added to the template the already available language fields text_i_am_new_customer and text_i_am_returning_customer

Code: Select all

<div class="register-top"><div class="content" id="register-new"><h1><?php echo $text_new_customer; ?></h1><?php echo $text_i_am_new_customer; ?><br /></div><div class="content" id="login-box"><h1><?php echo $text_returning_customer; ?></h1><?php echo $text_i_am_returning_customer; ?><br />
Further, all I have done is sized the form fields on the page to appropriate sizes (this is an often ignored but important usability practice)
page2.JPG

page2.JPG (107.6 KiB) Viewed 8415 times

Page 2 is more or less as you have included by default in the extension. I think I have just added some language strings to the template file.

In the shipping box

Code: Select all

<h2><?php echo $text_shipping_method; ?></h2>
<?php echo $entry_choose_shipping; ?>
In the payment box

Code: Select all

<h2><?php echo $text_payment_method; ?></h2>
<?php echo $entry_choose_payment; ?>
In the coupon box

Code: Select all

<h2><?php echo $text_discount; ?></h2>
<?php echo $text_coupon; ?>
In the voucher box

Code: Select all

<h2><?php echo $entry_voucher; ?></h2>
(in language file, there is no description field for voucher like text_coupon so couldn't put here...will probably add that in a couple of days)

Also, wanted to put
Enter your comment and click "Update Comment" to add a comment to your order.
in the comment box, but in language file, there is no such description field for comment so couldn't....will probably add that in a couple of days

OC2PS
OC 3.0.3.7, vQmod 2.6.2, Journal3 theme
Arcfesték, Csillámtetoválás, Henna
Image
Check out: All my extensions | My FREE extensions


User avatar
Active Member

Posts

Joined
Wed Jul 22, 2009 4:15 am
Location - Hungary

Post by TToc » Mon Nov 05, 2012 11:36 pm

Hi Qphoria,

Just thought I should let you know, we're still getting the odd users registration details sent to the store's email address even tho this option is definately disabled in the settings. I upgraded to the new version you released as you advised, any idea why this is still happening?

Thanks for any help you can offer.

New member

Posts

Joined
Mon Jun 25, 2012 9:45 pm

Post by Qphoria » Tue Nov 06, 2012 11:05 am

The code looks correct:

Code: Select all

// Send to main admin email if account email is enabled
		if ($this->config->get('config_account_mail')) {
			$mail->setTo($this->config->get('config_email'));
			$mail->send();
		}
You are really sure it isn't set in the system->Settings under the Mail tab? This is for New account email, not order email

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by TToc » Tue Nov 06, 2012 7:28 pm

The settings look ok to me, I took a screenshot, but I'd need to host the image somewhere and link to it to show you, I couldn't find an upload option for this forum.

But the settings read:

New Order Alert Mail: The radio button is set to yes
New Account Alert Mail: The radio button is set to no

Basically, we want to receive an email telling us about new orders, but not an email sending us customer's login details. The only other things I can think of is that either my upload of the updated version didn't overwrite correctly, or there's another extension interfering somehow. But you' d probably know more about that than me! :)


The other extensions I'm using are:

Google Analytics Expert
UKSB Google Merchant / Bing Shopping / Feeds + XML Sitemaps
Detailed Admin Order Notification Email

I'm using 1.5.2.1, and I try to always use VQMODS to avoid any additional complications

Thanks

New member

Posts

Joined
Mon Jun 25, 2012 9:45 pm

Post by OC2PS » Sun Nov 11, 2012 4:42 pm

TToc wrote:I took a screenshot, but I'd need to host the image somewhere and link to it to show you
You can try http://imgur.com/ or http://www.uploadscreenshot.com/

OC2PS
OC 3.0.3.7, vQmod 2.6.2, Journal3 theme
Arcfesték, Csillámtetoválás, Henna
Image
Check out: All my extensions | My FREE extensions


User avatar
Active Member

Posts

Joined
Wed Jul 22, 2009 4:15 am
Location - Hungary

Post by TToc » Fri Nov 16, 2012 12:58 am

Thanks OC2PS.

Here's a screengrab...

Image

New member

Posts

Joined
Mon Jun 25, 2012 9:45 pm

Post by crispylettuce » Wed Dec 05, 2012 8:09 pm

OC2PS wrote:
page2.JPG

page2.JPG (107.6 KiB) Viewed 8146 times

Page 2 is more or less as you have included by default in the extension. I think I have just added some language strings to the template file.
Out of interest how do you add little comments under the Payment Methods? Looks like a nice touch and not seen it before.. :)


Andy

Active Member

Posts

Joined
Fri Aug 03, 2012 8:54 pm

Post by Qphoria » Wed Dec 05, 2012 8:42 pm

crispylettuce wrote:
OC2PS wrote:
Page 2 is more or less as you have included by default in the extension. I think I have just added some language strings to the template file.
Out of interest how do you add little comments under the Payment Methods? Looks like a nice touch and not seen it before.. :)


Andy
That's just part of my mod.

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by crispylettuce » Wed Dec 05, 2012 9:03 pm

Qphoria wrote:
crispylettuce wrote:
OC2PS wrote:
Page 2 is more or less as you have included by default in the extension. I think I have just added some language strings to the template file.
Out of interest how do you add little comments under the Payment Methods? Looks like a nice touch and not seen it before.. :)


Andy
That's just part of my mod.
Oh right, didn't know that. How do i achieve this ?

Active Member

Posts

Joined
Fri Aug 03, 2012 8:54 pm

Post by OC2PS » Thu Dec 06, 2012 8:31 pm

In the default mod, these things are not shown, but the language file does have strings for them.

Go back to my message from which you grabbed the screenshot, and do what I say after
Page 2 is more or less as you have included by default in the extension. I think I have just added some language strings to the template file.

OC2PS
OC 3.0.3.7, vQmod 2.6.2, Journal3 theme
Arcfesték, Csillámtetoválás, Henna
Image
Check out: All my extensions | My FREE extensions


User avatar
Active Member

Posts

Joined
Wed Jul 22, 2009 4:15 am
Location - Hungary

Post by DannyMacD » Sun Dec 09, 2012 10:46 pm

a quick question but important answer hopefully!

I have purchased the Uber checkout and all isntalled ok.

however, the solution i need is when a coupon is added on checkout_two page, the payment options refresh using ajax, like the shipping does.

is this possible?

Active Member

Posts

Joined
Fri Jun 26, 2009 6:39 am

Post by DannyMacD » Tue Dec 11, 2012 4:43 pm

yet again Q has been amazing support. well recommended (on any of his modules)

Active Member

Posts

Joined
Fri Jun 26, 2009 6:39 am

Post by OC2PS » Wed Dec 19, 2012 3:17 am

I have faced a peculiar, perplexing problem in the last couple of weeks. I have received 2 orders without any customer or products details
  • no customer name, email, address, etc
  • no products listed
  • subtotal and total shown as zero
  • no shipment details (no shipping tab in AP)
  • payment method shown as (curiously enough) free shipping
However,
  • From the comments, I can see that the customer actually did try/order several products
  • IP of customer is captured
I can't say categorically that this issue is caused by Uber Checkout. The reason for posting here is simply that I have never had this issue in 3 years of using OpenCart. I installed Uber Checkout about 3-4 weeks ago, and have had 2 orders like this in the last 2 weeks.

Any help would be greatly appreciated.

P.S. In both cases, the order was placed in a non-English language.

OC2PS
OC 3.0.3.7, vQmod 2.6.2, Journal3 theme
Arcfesték, Csillámtetoválás, Henna
Image
Check out: All my extensions | My FREE extensions


User avatar
Active Member

Posts

Joined
Wed Jul 22, 2009 4:15 am
Location - Hungary

Post by Qphoria » Wed Dec 19, 2012 3:23 am

What payment gateway?

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by OC2PS » Wed Dec 19, 2012 3:28 am

That's another weird thing - in Admin Panel, it shows payment mode for this order as "free shipping" (yup, free shipping which is actually a shipping method, not free checkout which is a payment method)

I have free checkout, cod, paypal standard, cheque and bank transfer installed.

OC2PS
OC 3.0.3.7, vQmod 2.6.2, Journal3 theme
Arcfesték, Csillámtetoválás, Henna
Image
Check out: All my extensions | My FREE extensions


User avatar
Active Member

Posts

Joined
Wed Jul 22, 2009 4:15 am
Location - Hungary

Post by OC2PS » Sat Dec 22, 2012 1:50 am

The customer who placed the latest "blank" order discussed above called me. She turned out to be an existing customer who had logged in to check out. She used "cash on delivery" for payment, and also wrote a comment (and clicked update comment button). The comment was one of the few things that was recorded for the order.

To clarify, the comment function seems to be working fine - I receive plenty of comments in other (normal) orders.

I hope the above additional information points to some clues in diagnosing the issue.

P.S. I just realized that I installed "Only Generate Single Temp Order Id" vQmod http://forum.opencart.com/viewtopic.php?f=121&t=9192 around the same time as Uber Checkout (maybe 3 weeks before Uber Checkout).

OC2PS
OC 3.0.3.7, vQmod 2.6.2, Journal3 theme
Arcfesték, Csillámtetoválás, Henna
Image
Check out: All my extensions | My FREE extensions


User avatar
Active Member

Posts

Joined
Wed Jul 22, 2009 4:15 am
Location - Hungary

Post by camaro5 » Sat Dec 22, 2012 6:13 am

OC2PS wrote:Q,

I've used some styling and small tweaks in Uber Checkout to (hopefully) make them seem friendlier. Posting these here humbly in case they are useful when you revise the extension.
page1.JPG
In page 1, instead of the vertical options, I've opted for the more common horizontal options for new customer or returning customer.

I've also added to the template the already available language fields text_i_am_new_customer and text_i_am_returning_customer

Code: Select all

<div class="register-top"><div class="content" id="register-new"><h1><?php echo $text_new_customer; ?></h1><?php echo $text_i_am_new_customer; ?><br /></div><div class="content" id="login-box"><h1><?php echo $text_returning_customer; ?></h1><?php echo $text_i_am_returning_customer; ?><br />
Further, all I have done is sized the form fields on the page to appropriate sizes (this is an often ignored but important usability practice)
page2.JPG
Page 2 is more or less as you have included by default in the extension. I think I have just added some language strings to the template file.

In the shipping box

Code: Select all

<h2><?php echo $text_shipping_method; ?></h2>
<?php echo $entry_choose_shipping; ?>
In the payment box

Code: Select all

<h2><?php echo $text_payment_method; ?></h2>
<?php echo $entry_choose_payment; ?>
In the coupon box

Code: Select all

<h2><?php echo $text_discount; ?></h2>
<?php echo $text_coupon; ?>
In the voucher box

Code: Select all

<h2><?php echo $entry_voucher; ?></h2>
(in language file, there is no description field for voucher like text_coupon so couldn't put here...will probably add that in a couple of days)

Also, wanted to put
Enter your comment and click "Update Comment" to add a comment to your order.
in the comment box, but in language file, there is no such description field for comment so couldn't....will probably add that in a couple of days
Hi,

I was wondering if you could explain what you did exactly here. I mean I understand that you copy/pasted lines from the language file into the template file - I guess I am just having difficulty in getting it to work. Where in the template file did you put the code? Thank you much. I'm using 1.5.4 r990 with the latest vQmod version.

Newbie

Posts

Joined
Sun Apr 15, 2012 5:43 am

Post by OC2PS » Sun Dec 23, 2012 4:31 pm

camaro5 wrote:Where in the template file did you put the code?
This is all I am using (attached)
(remove .txt extension from the css file)

OC2PS
OC 3.0.3.7, vQmod 2.6.2, Journal3 theme
Arcfesték, Csillámtetoválás, Henna
Image
Check out: All my extensions | My FREE extensions


User avatar
Active Member

Posts

Joined
Wed Jul 22, 2009 4:15 am
Location - Hungary

Post by DannyMacD » Sun Dec 23, 2012 11:04 pm

Hi Q,

i have the following errors on checkout_two

Code: Select all

Notice: Undefined index: cost in /websites/123reg/LinuxPackage22/vo/uc/he/voucherconnect.co.uk/public_html/resellersuperstore/vqmod/vqcache/vq2-catalog_model_checkout_order.php on line 10
i think it relates to the following extension i purchased:

http://www.opencart.com/index.php?route ... on_id=4087

would you know why?

im on 1.5.4.1

many thanks

Active Member

Posts

Joined
Fri Jun 26, 2009 6:39 am
Who is online

Users browsing this forum: No registered users and 24 guests