dalea
Forum Replies Created
-
Forum: Plugins
In reply to: [PayPal for WooCommerce] Adding additional text to PayPal checkout page@kcppdevelopers, thanks for looking into this issue, I will give it ago.
Also how easy would it be to swap over the cancel order and place order buttons. To have cancel order above place order does not seem a good sale tactic.
Thanks
Forum: Plugins
In reply to: [PayPal for WooCommerce] Adding additional text to PayPal checkout page@angelleye, thank you for getting back to me. I am looking to edit my website checkout page that the user is returned to after they input PayPal card details
Customer steps: Checkout > PayPal > return to junior apparel to confirm transaction ( this is the page I am looking to edit )
Thanks
Forum: Plugins
In reply to: [WooCommerce] Change order of billing fields on checkout pageFor the latest version of Woocommerce (3.2.4) the following method worked.
Added to child theme functions.php
add_filter( ‘woocommerce_default_address_fields’, ‘move_checkout_fields_woo_3’ );
function move_checkout_fields_woo_3( $fields ) {
// default priorities:
// ‘first_name’ – 10
// ‘last_name’ – 20
// ‘company’ – 30
// ‘country’ – 40
// ‘address_1’ – 50
// ‘address_2’ – 60
// ‘city’ – 70
// ‘state’ – 80
// ‘postcode’ – 90// e.g. move ‘company’ above ‘first_name’:
// just assign priority less than 10
$fields[‘company’][‘priority’] = 8;return $fields;
}(Adapted from: https://businessbloomer.com/woocommerce-move-reorder-fields-checkout-page/)
- This reply was modified 7 years ago by dalea.
Forum: Plugins
In reply to: [PayPal for WooCommerce] paypal express button not showing on cart pageIssue was resolved. If using Aelia Currency switcher, ensure that the requirement payment gateway is enabled in the currency switcher settings for the desired currencies. Woocommerce > Currency switcher > Payment gateways
Hi, thanks you for looking into this issue.
I have used the above code. The video now works as desired but the product gallery is now not displayed on the product.
Forum: Plugins
In reply to: [PayPal for WooCommerce] paypal express button not showing on cart page@angelleye, I can confirm that under the “PayPal Express Checkout” tab within WooCommerce > Checkout the option title Checkout Page Display is set to “Display both at the top and in the general list of gateways on the checkout page”.
Previously the site was behind a construction page, the site is now live and tested again with Twenty theme, with no change.
I will submit a ticket now.
Thanks for the help
Forum: Plugins
In reply to: [PayPal for WooCommerce] paypal express button not showing on cart pageThe site url is pokito.net
Please let me know what you find
Thanks
Forum: Plugins
In reply to: [PayPal for WooCommerce] paypal express button not showing on cart pageWe only want the express checkout button to appear on the checkout page. The button appears at the top of the page but not in the regular payment gateways. The option in the settings page is set to both top and in the payment gateways.
We are running the divi theme, which is fully up to date, as well as the latest woocommerce version.
Switching to the Twenty Seventeen theme makes no difference, the top button shows still but it does not show in the payment gateways
Forum: Plugins
In reply to: [PayPal for WooCommerce] paypal express button not showing on cart pageSame issue here. The paypal express button is not showing in the payments area on the checkout page. The only other payment method is stripe.
The Paypal express button shows at the top of the checkout page
Checkout Page Display is set to top and in payment area
Theme is Divi and it is fully up to date
Hi,
An example product can be found at this URL: https://www.globalunderground.co.uk/product/deep-dish-super-deluxe-collectors-edition/
Thanks
Forum: Plugins
In reply to: [YITH WooCommerce Featured Video] Not displaying correctly alongside imagesHi, I have the same issue, has this been resolved?
Forum: Plugins
In reply to: [WC Hide Shipping Methods] More than one free shipping methodCode worked as required, don’t forget to clear WooCommerce transients once implemented
Forum: Plugins
In reply to: [FG PrestaShop to WooCommerce] Connection failed at connection testHi,
You need to have the Prestashop database on the same server as the WordPress database.
So you end with two databases – 1) WordPress db (destination) 2) Prestashop Db (source)Forum: Plugins
In reply to: [WooCommerce Email Test] Duplicate email contentWhen emails are sent as part of a normal order, there are no duplicates in the email. It is only when previewing the email after making content changes that duplicates are seen
Forum: Plugins
In reply to: [FG PrestaShop to WooCommerce] SKU typeWhat is the difference though between Reference and EAN-13?
Do they both just import to the SKU as a number?