- This topic has 1 reply, 2 voices, and was last updated 9 years, 1 month ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP Photo Seller › Photo Seller – Changing Default to Manual Checkout
Tagged: default checkout, Manual Checkout
Me again. I am rushing to get this all set up in time for lots of orders coming up soon!
I sent the link to 8 friends to practice ordering and making sure everything was user friendly. Only ONE noticed the dropdown menu could be changed to manual checkout instead of Paypal and everyone else was unintentionally sent to Paypal.
I think the dropdown menu is not quite noticeable on my page for people to actually take note of.
I would like to change it to be default to Manual Checkout instead of Paypal, but still have Paypal available in the dropdown menu. Is there a code that can make that swap? Please, please, please!
[http://karismaticimaging.com/client-gallery/gallery3/]
We’ve never really had an issue with this before.
I don’t recommend changing the core code because if and when you update the plugin you will lose your changes and you’ll need to keep modifying the files again.
But if you really must, then open the following file:
wp-photo-sellerviewscart-wps-new-tabular.php
find the following code (around line 649):
if(WPSSetting::getValue('use_paypal_standard_checkout') == 'on')
{
echo '<option value="paypalCheckout">'.__('Paypal Checkout','WPS').'</option>';
}
if(WPSSetting::getValue('use_manual_checkout') == 'on')
{
echo '<option value="manualCheckout">'.__('Manual Checkout','WPS').'</option>';
}
Swap the if statements around so that they are as follows:
if(WPSSetting::getValue('use_manual_checkout') == 'on')
{
echo '<option value="manualCheckout">'.__('Manual Checkout','WPS').'</option>';
}
if(WPSSetting::getValue('use_paypal_standard_checkout') == 'on')
{
echo '<option value="paypalCheckout">'.__('Paypal Checkout','WPS').'</option>';
}
NOTE and disclaimer: We do not support customisations to our code so if you decide to change the code and there are issues then you will need to change it back.