hi guys,
need some help on customizing the manual checkout page. I saw the php file but it seems complex. :( any guidelines on how i can edit it? (if it is possible/advisable to even do so)
thanks in advance
hi guys,
need some help on customizing the manual checkout page. I saw the php file but it seems complex. :( any guidelines on how i can edit it? (if it is possible/advisable to even do so)
thanks in advance
Which aspect of the manual checkout do you want to customize? The look and feel of the checkout page form or the functionality?
Here is an helpful post on this topic:
http://www.tipsandtricks-hq.com/forum/topic/customized-form
hi amin,
i just want to change the look and feel so that it is the same with the page.
my page is this http://thepantrycookeryschool.com/wp/classes/ and it sorta goes to a different page with the default manual checkout.
Chaning the look and feel can be done by modifying the CSS file. There is a CSS file inside the "view" directory of the plugin. This CSS file is responsible for the look and feel of the manual checkout page so customize the CSS on that file to your liking.
thanks amin!
is it possible to change some of the wordings in the form? not sure which if it will affect any of the functionality if i hack away.
Thanks!
You can change the text without causing any problem.
is it in the estore payment submission.php? kinda confused which one to change there
here? $body .= "\n\nCustomer Details";
$body .= "\n-------------------------";
$body .= "\nCustomer Name: ".$_POST['firstname']." ".$_POST['lastname'];
$body .= "\nCustomer Email: ".$_POST['email'];
$body .= "\nCustomer Phone: ".$_POST['phone'];
$body .= "\nCustomer Address: ".$_POST['address'];
$body .= "\nCustomer City: ".$_POST['city'];
$body .= "\nCustomer State: ".$_POST['state'];
$body .= "\nCustomer Postcode: ".$_POST['postcode'];
$body .= "\nCustomer Country: ".$_POST['country'];
$body .= "\nAdditional Comment: ".$_POST['additional_comment'];
//echo $body;
$notify_email = get_option('eStore_manual_notify_email');
$buyer_email = $_POST['email'];
This is the email body that will get sent out tot he buyer and the seller. If you want to change the labels of the fields in the manual checkout page then you can do so from the language files.
Remember, any message that your customers can see can be changed from the language files. This allows you to customize the messages without having to change the code.
thanks amin! saw that in your other post. never realized that they were connected. thank you very much
We also added an option so that you can embed the manual checkout form on a WordPress page. To use this option do the following:
1. Create a WordPress page and use the [wp_eStore_on_page_manual_gateway_form] shortcode on that page.
2. Go to the "Payment Gateway Settings" screen of eStore and Specify the URL of the page that you just created in step 1 in the "Embed Manual Checkout Form on a WordPress Page" field (you can find this field in the manual checkout section).
Now, eStore will send your customers to this page when they choose to pay using manual method.
You must log in to post.