Eric4381
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Recipe Maker] Export Recipes to New SiteOk I definitely must be missing something as I don’t see ANY of those options. Check this out.
Forum: Themes and Templates
In reply to: [Inspiro] Change Hero Header to Solid ColorAfter staring at my code and the CSS on the site the fix was easier than I was making it!
.has-header-image .navbar {
background-color: #ff8d1c;
}Forum: Plugins
In reply to: [WooCommerce] Shipping class costs not workingForum: Fixing WordPress
In reply to: Permalinks change breaks all linksYou need to use putty or an ssh client to access the apache files so you need console or server access to do this. If your using a host provider they should have given you instructions on how to do this.
Forum: Fixing WordPress
In reply to: Featured Image wont resizeBrilliant! For some reason, I would have never have checked there. Thank you. Fixed!
Forum: Plugins
In reply to: [WooCommerce] Returning Customer Link BrokenLooking into this further, it was easier to remove the default Woocommerce “Returning User” link and edit the checkout page with my own link and specify the my account page.
This fixed the issue.I know that plugins can definitely affect site flows but its hard to just disable all plugins on a live site to test this out, especially when you have 10-20 plugins that run the site. This is usually the first in line test to narrow things down but sometimes its not possible. Unless I am being unreasonably difficult ??
- This reply was modified 5 years, 8 months ago by Eric4381.
Forum: Plugins
In reply to: [WooCommerce] Returning Customer Link BrokenI have not yet tried disabling all plugins as that will break a lot of our sales and invoicing on a live site. Will disabling all plugins cause me to have to recreate their settings? I can try this if it will not and it only can be for a small window of time that we can take the site down.
Forum: Plugins
In reply to: [WooCommerce] Returning Customer Link BrokenI am testing this on the twenty nineteen theme and yes I figured it would have a pop out window but it only returns you to the top of the page. Checked ad blocker and browser setting and still will not work.
Forum: Fixing WordPress
In reply to: Permalinks change breaks all linksYou are welcome. I posted results no matter what I found in case it helps even a single person! I am glad I could help ??
Forum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.Ever heard the statement that says “You can lock things down and secure things so tight that you cant get any work done”… I just did it to myself.
So my rambling statement got me thinking and I decide to play with the htaccess rules we worked with but I edited to firewall to allow port 80 requests instead of only having port 443 open. (Side note… to auto renew SSL Certs with say CertBot you NEED port 80 open anyway or the secret challenges will error out which I was working on at the same time as this)
In the end my two codes to change WWW to non-ww and http to https work! The site does it all now.
Here is what I have for those two things:
# BEGIN WordPress .....other code that does other stuff... #Force non-www V1 RewriteCond %{HTTPS} on RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R=301,L] #Force all HTTP to HTTPS V1 RewriteCond %{HTTPS} !=on RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L] </IfModule> #End WordPress
@autotutorial…. Thank you so much for working with me on this!! You are awesome!
Forum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.I am wondering if this would temporarily need port 80 for the non secure web traffic BEFORE its forced to SSL? If I dont have port 80 available the request traffic may not make it back to the client to switch to https but you would think it would since this should all be happening server side. Just throwing out ideas.
Forum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.That also gets me a 500 error
Forum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.That gave me a 500 error on all pages. Did you post then modify again by chance?
Forum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.Forum: Fixing WordPress
In reply to: Forcing http to https and non-www. to www.So this is all i have currently being used in htaccess but i still get a too many redirects
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]# FOrce ALL to HTTPS
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^stonesorganics\.com [NC,OR]
RewriteCond %{HTTPS} !On
RewriteRule [^/]? https://stonesorganics.com%{REQUEST_URI} [R=301,L]