cerebro420
Forum Replies Created
-
Forum: Plugins
In reply to: [PayPal for WooCommerce] Change PayPal Mark on CheckoutThe code was given by a previous comment in this topic. I’ll leave a review soon. Thank you again I appreciate the help.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Change PayPal Mark on CheckoutHello, changing the hook worked. Thank you for the support.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Change PayPal Mark on CheckoutHello, sorry for the late response. I included the following in the function.php in the child theme:
add_filter('woocommerce_paypal_express_icon', 'angelleye_change_express_checkout_icon', 10, 1); function angelleye_change_express_checkout_icon($icon_url) { $icon_url = '<img src="https://elegant-fashionations.com/wp-content/uploads/paypal/paypal.png" alt="Credit Card Badges">'; return $icon_url; }
There is no change in the PayPal mark on the general list of enabled gateways. Thank you.
Hello, so if I select a “tailor made” variation in the drop down size list it will allow the customer to input their own custom sizes in the pro version? If I purchase the pro version is there a money back option if it does not work as I need?, since I am unable to test it with the free version? Thank you.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Change PayPal Mark on CheckoutI can copy the image over using a custom image, but after updating it put the old image in the wp_content/plugins back to original. The image is not the PayPal Express logo, but the logo on the checkout page. I included a link to a photo to make it more clear. I just updated and it set the logo back to the original and would like to use functions.php to keep it permanently set to a custom logo. Thank you.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Change PayPal Mark on CheckoutHello, I tried that and the logo stayed the same. I am trying to change the logo at the following URL:
/wp-content/plugins/paypal-for-woocommerce/assets/images/paypal-paypal-credit-card-logos.png
I can replace the image and the logo changes, but after updating it is changed back. How would I change that image during the checkout process using the functions.php? Thank you.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Change PayPal Mark on CheckoutHello, not the Express Checkout button, but the PayPal credit card bar image on checkout. The bar with the icons i.e. visa, mastercard, paypal, needs to be changed. I am not using the Express Checkout option and am processing orders through the checkout page. How would I change the PayPal credit card bar of icons through functions.php? I hope this makes sense. Thank you.
Forum: Plugins
In reply to: [Fast Velocity Minify] White Screen when enabling JavascriptHello, thanks for the reply. I disabled the pre-load and excluded some of the scripts. It now seems to be working correctly, but some of the custom CSS I had through the front-end editor are not showing up. Do you know how I can enable the custom CSS that I had? Thank you and I appreciate the help.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Internal Server Error PayPal ExpressI updated to the newest version and I actually have your plugin working on another server using the latest and have not noticed the same error. Perhaps its my template. I’ll wait till you get the new version going. I’ll continue to use the standard until you get the update. Thank you for your help.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Internal Server Error PayPal ExpressHello, I just went through my conf and set the tls to include 1.2 and still get the same error. I also checked the system status and I have no red except for mysql stating that I have mysql 5.5 and wordpress recommends 5.6, but I don’t think that has anything to do with PayPal Express.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Internal Server Error PayPal ExpressHello, You can check out the phpinfo at:
https://forgeoftheancients.com/phpinfo.php
I’m running Debian 8 and installed my SSL certs from GoGetSSL if that helps. Let me know how to enable TLS 1.2, as I would like to get your plugin working. Thank you for the quick response.
Forum: Plugins
In reply to: [Easy HTTPS Redirection (SSL)] non secure pages not being forced to httpHello, here is what I got so far, but it is not working correctly. The ssl pages are being caught in a redirect loop. Please let me know how I can fix this through .htaccess:
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} off RewriteCond %{REQUEST_URI} cart [OR] RewriteCond %{REQUEST_URI} checkout [OR] RewriteCond %{REQUEST_URI} my-account [OR] RewriteCond %{REQUEST_URI} wishlist [OR] RewriteCond %{REQUEST_URI} order-tracking [OR] RewriteCond %{REQUEST_URI} contact-us RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] # force http for all other URLs RewriteCond %{HTTPS} on RewriteCond %{REQUEST_URI} !^/cart/ [OR] RewriteCond %{REQUEST_URI} !^/checkout/ [OR] RewriteCond %{REQUEST_URI} !^/my-account/ [OR] RewriteCond %{REQUEST_URI} !^/wishlist/ [OR] RewriteCond %{REQUEST_URI} !^/order-tracking/ [OR] RewriteCond %{REQUEST_URI} !^/contact-us/ RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
Forum: Plugins
In reply to: [Easy HTTPS Redirection (SSL)] non secure pages not being forced to httpI’m just using opcache and no other caching plugins. I was thinking if there was a way to say that if the page is not equal to the %{REQUEST_URI} than use http instead of https. Not sure how to implement that though. If you cannot provide more help I will see what I can find. thank you for your help. I’ll let you know if I find an answer.
Forum: Plugins
In reply to: [Easy HTTPS Redirection (SSL)] non secure pages not being forced to httpHello, I still want to use https in several chosen pages, but need when viewing a normal page that does not need https I am trying to get the page to be forced to use http. For example I chose /cart/ to be secure, but when I click on my shop pages I am left in https when it needs to be http. I have complete access to the .htaccess file. I was hoping you might now a way to force http on pages that do not need SSL/https. I believe this can be done with .htaccess I just have not found anything that works. Thank you and let me know if you can help.
Forum: Plugins
In reply to: [Easy HTTPS Redirection (SSL)] non secure pages not being forced to httpHello, all the links seem to work correctly. I just would like the pages that I did not assign to https to revert automatically back to http. When I click on the homepage after I clicked on a https page, the url says in https mode instead of being forced back into a http page. I don’t think I setup the SSL incorrectly as it seems to be working fine. Take a look at my site:
forgeoftheancients.com
click on wishlist and you will see it reverts to https, which is what I wanted. But if you then click on home it tries to stay in https and I need it to be forced back to http. I hope I explained it correctly. And I wanted too thank you for a quick reply.