kcppdevelopers
Forum Replies Created
-
Forum: Plugins
In reply to: [PayPal for WooCommerce] [php] How to check module is enabled?@alx359 @angelleyesupport @angelleye
Here is the code for check specific gateway is enable or not : https://pastebin.com/SBNKtPtJ
Thanks
Do you have logging enabled? If you submit a ticket here and provide a copy of that log file we can take a closer look.
Forum: Plugins
In reply to: [WooCommerce PayPal Checkout Payment Gateway] error after update 1.5.0I am getting same error.
https://github.com/woocommerce/woocommerce-gateway-paypal-express-checkout/archive/master.zip
Used above .zip file, it will resolved your issue.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Adding additional text to PayPal checkout page@dalea I have review your website review page and it seem message is being displayed
Please review above image and let me know.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Adding additional text to PayPal checkout page@dalea, Could you provide website URL or screenshot for understand your issue?
Forum: Plugins
In reply to: [PayPal for WooCommerce] Adding additional text to PayPal checkout page@dalea
We have prepared few lines of code for you, it will display custom message on Express Checkout review page.Sample code: https://pastebin.com/HJzTuhrf
Please Note: used above sample code in your current active theme’s functions.php
Forum: Plugins
In reply to: [PayPal for WooCommerce] Issue refunds Paypal Pro?Forum: Plugins
In reply to: [PayPal for WooCommerce] Errors in log@frizzo It seems above Notice from WooCommerce Pretty Emails plugin. Can you please disable WooCommerce Pretty Emails plugin and recheck again?
Hello @one234,
Can you check what version of PHP your site is running on? Sounds like you must be running a version prior to 5.3.
Thanks!
Hello @one234,
Can you check what version of PHP your site is running on? Sounds like you must be running a version prior to 5.3.
Thanks!
Forum: Plugins
In reply to: [PayPal for WooCommerce] "Proceed to Paypal" button textHello @nichetom,
Below is code it will “Proceed to Paypal” to “Place Order Now” button text.
Add to the functions.php file of your theme
add_filter( 'woocommerce_order_button_text', 'woo_custom_order_button_text' ); function woo_custom_order_button_text() { return __( 'Place Order Now', 'woocommerce' ); }
Thanks!
Forum: Plugins
In reply to: [PayPal for WooCommerce] Template customisation and delivery time not workingDo you have logging enabled in the plugin? I’ll need to get a look at that. If you can submit a ticket here and provide that I can help figure out what’s going on. Thanks!
Forum: Plugins
In reply to: [Offers for WooCommerce] Add icon before Make Offer button TextI have follow above step, now make offer button like this: https://screencast.com/t/NZ1juJQY
Forum: Plugins
In reply to: [Offers for WooCommerce] Add icon before Make Offer button TextNo, this is not correct way to do this and modifying core files is always a bad idea. It may create a security loophole. Also, you will have lost the modification when you upgrade your WordPress installation and plugin as well.
Below are steps for add icon before make offer button text:
1) Use your favorite FTP manager to access the location of your WordPress files. Navigate to wp-content/themes/your-theme.
Open up the functions.php file and add to this code https://pastebin.com/Z4qiQhMk2) Navigate to wp-content/themes/your-theme.
Open up the style.css file and add to this code https://pastebin.com/DhmN5visplease let me know if you need any further assistance.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Template customisation and delivery time not working1) Overriding ‘paypal-review-order.php’ Templates file: You would be able to customise the ‘paypal-review-order.php’ template file using overriding templates via a theme. Example: To copy:paypal-woocommerce\template\paypal-review-order.php to yourtheme/woocommerce/paypal-review-order.php
2) Regarding WooCommerce Delivery Time Slots plugin compatibility: I have checked on my development server it’s working fine for me. please see the URL for more information: https://screencast.com/t/BJPtWvPT
3) Regarding “Enable registration on the “Checkout” disabled: you can remove this using
Enable guest checkout
.
Let me know if any.