Totally Zenned
- Join Date:
- Apr 2006
- Location:
- West Salem, IL
- Posts:
- 2,841
- Plugin Contributions:
- 0
One-Page Checkout [Support Thread]
Has this been tested with the Tax Cloud addon?
Views: 629,265
Totally Zenned
Has this been tested with the Tax Cloud addon?
Administrator
barco57:
Has this been tested with the Tax Cloud addon?
I haven't, nor have I seen a report that anyone has validated the combination.
Totally Zenned
Didn't want to go through 57 pages of comments, but i want to test this plugin and i can't find the installation instructions. The README file only gives me "Welcome to the repository for the One-Page Checkout plugin for Zen Cart versions 1.5.4 and later."
Am i missing something? likely so could you direct me please?
Administrator
@CaroleAs, look in the plugin's /docs directory for the readme. Alternately, you can view the current readme here.
Zen Follower
Located in Docs file.
Totally Zenned
lat9:
@CaroleAs, look in the plugin's /docs directory for the readme. Alternately, you can view the current readme here.
Thanks. I didn't look further than the Docs folder; had to go deeper. Thanks again.
Totally Zenned
Are the steps to install in 1.5.5e the same as explained in 1.5.5a or 1.5.5 or neither?
Totally Zenned
Have you read step D of installation?
Totally Zenned
dbltoe:
Have you read step D of installation?
Oops... trying to figure out how to "Merge the core-file and template-override modifications" and i missed that one. Sorry! (still a newbie after having installed my store 8 years ago!)
Totally Zenned
:P
Society today stands in front of a microwave and hollers, "HURRY UP!"
Slow and steady. You will make mistakes but taking time to read each step can make it go much smoother.
When I had a cubicle, I had a big sign that said, "Pobody's Nerfect!"
Totally Zenned
dbltoe:
:P
Society today stands in front of a microwave and hollers, "HURRY UP!"Slow and steady. You will make mistakes but taking time to read each step can make it go much smoother.
When I had a cubicle, I had a big sign that said, "Pobody's Nerfect!"
Yes. I am doing this and it is scary. Yes, ONE step at the time. ONE instruction line at the time. I'll do it. I know. I have had so much help in this forum in the past, i know i can always count on you all!
Totally Zenned
So yes, my next question (to follow to the letter), what does MERGE mean when i want to add a file. Using ftp, i don't have the option to MERGE, but only OVERWRITE. Is that the case? I don't want to make more trouble than I need!
Totally Zenned
You'll need something like winmerge for windows. You'll look at two files and determine which parts need to be merged together in order to make the particular mod work.
Totally Zenned
dbltoe:
You'll need something like winmerge for windows. You'll look at two files and determine which parts need to be merged together in order to make the particular mod work.
Oh ok... that is clearer, thanks.
Totally Zenned
I followed all the instructions, to the letter, uploaded all the files, etc.
However, I don't see anything similar to the jpg image that is included in the package. I double checked all the instructions and the files being uploaded correctly.
Anything you can suggest I triple-check?
Zen Follower
CaroleAs:
I followed all the instructions, to the letter, uploaded all the files, etc.
However, I don't see anything similar to the jpg image that is included in the package. I double checked all the instructions and the files being uploaded correctly.Anything you can suggest I triple-check?
Did you enable One-Page Checkout in Admin>Config>One Page Checkout Settings?
Cheers,
jpda
Totally Zenned
Hum, no I had not done that. (didn't see it in the instructions) But it is done now.
It is one step further. When I click on the Shopping Cart, I still see the old checkout format. If i click on the checkout, I get this warning popping up: "Please contact the store owner; some required elements of this page are missing." and a blank page below the header/navigation.
Thinking it was because it was on Maintenance mode, I disabled it, but I get the same thing.
Zen Follower
CaroleAs:
Hum, no I had not done that. (didn't see it in the instructions) But it is done now.
It is one step further. When I click on the Shopping Cart, I still see the old checkout format. If i click on the checkout, I get this warning popping up: "Please contact the store owner; some required elements of this page are missing." and a blank page below the header/navigation.
Thinking it was because it was on Maintenance mode, I disabled it, but I get the same thing.
The checkout starts after clicking the checkout button on the Shopping Cart.
Did you enable One-Page Checkout Debug in Admin>Config>One Page Checkout Settings? If so, you can find which elements are missing in the log files in your logs folder, also very useful when you get blank pages.
I guess you did not upload some files correctly.
Here below is a part of the code (in "\includes\modules\pages\checkout_one\jscript_main.php") that popped up the warning.
Don't worry about the code itself, it might give you an idea about what might be missing.
<?php
// -----
// There are a bunch of "required" elements for this submit-less form to be properly handled. Check
// to see that they're present, alerting the customer (hopefully the owner!) if any of those elements
// are missing.
//
?>
var elementsMissing = false;
if (jQuery( 'form[name="checkout_payment"]' ).length == 0) {
elementsMissing = true;
zcLog2Console( 'Missing form[name="checkout_payment"]' );
}
if (jQuery( '#orderTotalDivs' ).length == 0) {
elementsMissing = true;
zcLog2Console( 'Missing #orderTotalDivs' );
}
if (jQuery( '#current-order-total' ).length == 0) {
elementsMissing = true;
zcLog2Console ( 'Missing #current-order-total' );
}
if (jQuery( '#opc-order-confirm' ).length == 0) {
elementsMissing = true;
zcLog2Console( 'Missing #opc-order-confirm' );
}
if (jQuery( '#opc-order-review' ).length == 0) {
elementsMissing = true;
zcLog2Console( 'Missing #opc-order-review' );
}
<?php
if (!$is_virtual_order) {
?>
if (jQuery( '#otshipping' ).length == 0) {
elementsMissing = true;
zcLog2Console ( 'Missing #otshipping' );
}
<?php
}
?>
if (elementsMissing) {
alert( 'Please contact the store owner; some required elements of this page are missing.' );
}
Look at the log files anyway!
Hope this will help a bit,
Cheers,
jpda
Administrator
CaroleAs:
Hum, no I had not done that. (didn't see it in the instructions) But it is done now.
It is one step further. When I click on the Shopping Cart, I still see the old checkout format. If i click on the checkout, I get this warning popping up: "Please contact the store owner; some required elements of this page are missing." and a blank page below the header/navigation.
Thinking it was because it was on Maintenance mode, I disabled it, but I get the same thing.
http://challengemehq.com
When you get that warning popup, you need to look in your browser's console log ... where the plugin's jQuery identifies what is missing.
On most Windows browsers today, that's accomplished by pressing the F12 key and then clicking the *Console *tab in the browser-development window that's brought up.
I'll get these instructions added to the readme's ***Troubleshooting ***section.
Totally Zenned
lat9:
When you get that warning popup, you need to look in your browser's console log ... where the plugin's jQuery identifies what is missing.
On most browsers today, that's accomplished by pressing the F12 key and then clicking the *Console *tab in the browser-development window that's brought up.
I'll get these instructions added to the readme's ***Troubleshooting ***section.
I tried to read the troubleshooting section, but it was way over my understanding. Didn't even understand it if was explaining anything close to what I was experiencing.
The checkout starts after clicking the checkout button on the Shopping Cart.
Did you enable One-Page Checkout Debug in Admin>Config>One Page Checkout Settings? If so, you can find which elements are missing in the log files in your logs folder, also very useful when you get blank pages.
I guess you did not upload some files correctly.
Yes, I did enambe the One Page Checkout s under Admin > Config > One page Checkout
Here is one of the several identical logs that was produced.
[25-Aug-2017 02:48:25 America/New_York] Request URI: /index.php?main_page=checkout_one, IP address: 142.167.45.240
#1 require() called at [/home/creat419/public_html/challengemehq.com/includes/templates/responsive_cassel/common/tpl_main_page.php:171]
#2 require(/home/creat419/public_html/challengemehq.com/includes/templates/responsive_cassel/common/tpl_main_page.php) called at [/home/creat419/public_html/challengemehq.com/index.php:97]
[25-Aug-2017 02:48:25 America/New_York] PHP Warning: require(includes/templates/template_default/templates/tpl_checkout_one_default.php): failed to open stream: No such file or directory in /home/creat419/public_html/challengemehq.com/includes/templates/responsive_cassel/common/tpl_main_page.php on line 171
[25-Aug-2017 02:48:25 America/New_York] Request URI: /index.php?main_page=checkout_one, IP address: 142.167.45.240
#1 require() called at [/home/creat419/public_html/challengemehq.com/includes/templates/responsive_cassel/common/tpl_main_page.php:171]
#2 require(/home/creat419/public_html/challengemehq.com/includes/templates/responsive_cassel/common/tpl_main_page.php) called at [/home/creat419/public_html/challengemehq.com/index.php:97]
[25-Aug-2017 02:48:25 America/New_York] PHP Warning: require(includes/templates/template_default/templates/tpl_checkout_one_default.php): failed to open stream: No such file or directory in /home/creat419/public_html/challengemehq.com/includes/templates/responsive_cassel/common/tpl_main_page.php on line 171
[25-Aug-2017 02:48:25 America/New_York] PHP Fatal error: require(): Failed opening required 'includes/templates/template_default/templates/tpl_checkout_one_default.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/creat419/public_html/challengemehq.com/includes/templates/responsive_cassel/common/tpl_main_page.php on line 171
I am not sure how to interpret this message, but I checked and the file tpl_main_page.php is not missing. Does it say that it has to be edited?
Fields marked required must be completed.
Tell staff why this post should be reviewed.