- This topic has 3 replies, 2 voices, and was last updated 10 years, 4 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 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 – add text to dropdown menu in manual payment
Tagged: Label, manual payment
Hi..
is it possable to add text to dropdown menu in manual payment ie.
Choose Payment Type
paypal
cash
if it’s not possible put to the side of the dropdown
Thanks in advance
Task001
OK i think i’ve sorted it or i should say temp work round…
i’ve added this below:
{
echo ‘<option value=”PleaseSelectPayment”>’.__(‘Please Select Payment’).'</option>’;
}
so it looks like this in “wp-photo-seller/views/cart-wps.php” below:
{
echo ‘<select name=”checkout_select” id=”checkout_select”>’;
{
echo ‘<option value=”PleaseSelectPayment”>’.__(‘Please Select Payment’).'</option>’;
}
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>’;
}
echo ‘</select>’;
}
hope something like this gets put in an update or i’ll be having to add in all updates lol
Hi,
I think a label for that field might be the best solution instead of adding an extra dropdown option.
We will add a “Choose Payment Type” label.
Thanks