Jack Sarlo
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Adding target_”blank” to all links (with javascript)Someone suggested it’s a good idea to limit the number of plugins we use.
Hi,
Yes, that worked. I used this one:
line-height: 46px !important;
Thanks a bunch!!! ??
Forum: Plugins
In reply to: [Redirection] Redirecting with or without trailing slash…ok, and just so you know when I use the first one it says:
“The source URL should probably start with a /” I don’t know maybe because I input just ^/article-title/[/]? instead of the full url.But anyway thank you!
Forum: Plugins
In reply to: [Redirection] Redirecting with or without trailing slash…ok, which should I use:
^/article-title/[/]?
or this:
/article-title/[/]?
Thanks
- This reply was modified 5 years, 10 months ago by Jack Sarlo.
Yes the culprit is w fastest cache, but I pasted that code in it’s exclusion list and now issue is solved.
So thanks a bunch ??
I’ve contacted you via support twice but never got a reply.
The pin it button is displayed while I’m editing the pages with Elementor, but not on the live site, in any browser I try, even after deleting cache and disabling some other plugins.
Thanks
Forum: Fixing WordPress
In reply to: Comment widget not displaying well in mobilethanks I’ll take a look.
Forum: Plugins
In reply to: [Head, Footer and Post Injections] Fatal Errortry a different plugin
Forum: Fixing WordPress
In reply to: About setting up SSLThe basically said I have to buy ssl for the non www too.
I just figured a positive ssl from namecheap covers both www and non www. About $70 + $50 installation for 7 websites instead of $400 with a multi site ssl.
This code will redirect all to https:
RewriteCond %{HTTPS} !=on [OR] RewriteCond %{HTTP_HOST} !^(www\.example\.com)?$ [NC] RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]
Forum: Fixing WordPress
In reply to: About setting up SSLI’ll contact them, the 24th time I think :).
Thanks for helping.
Forum: Fixing WordPress
In reply to: About setting up SSLalright but when I go to https://mysite.com it’s showing certificate error, it’s not redirecting to https://www.mysite.com.
The ssl I purchased is on https://www.mysite.com
This is the site: https://straighttalkperfectsalesletter.com/
Thanks
- This reply was modified 6 years, 6 months ago by Jack Sarlo.
Forum: Fixing WordPress
In reply to: About setting up SSLI actually forgot one thing.
What code do I use to redirect from https://website.com to https://www.website.com and do I add it after this code or instead of some parts of it:
RewriteCond %{HTTPS} !=on RewriteRule ^(.*)$ https://www.mydomain.com/$1 [R=301,L] RewriteCond %{HTTP_HOST} ^mydomain.com$ RewriteRule ^(.*)$ https://www.mydomain.com/$1 [R=301,L]
Do I use this one instead of the other one:
RewriteCond %{HTTP_HOST} !^www\. [NC,OR] RewriteCond %{HTTPS} off RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC] RewriteRule ^ https://www.%1%{REQUEST_URI} [R=301,L,NE]
Thanks
- This reply was modified 6 years, 6 months ago by Jack Sarlo.
- This reply was modified 6 years, 6 months ago by Jack Sarlo.
Forum: Fixing WordPress
In reply to: About setting up SSLThank You.
Forum: Fixing WordPress
In reply to: How to update plugin’s scripts/libraries after switching to SSL?ok, I see. Thanks
Forum: Fixing WordPress
In reply to: Any plugin to insert code in this location…I want to insert code (tracking pixel) as close to the opening <body> tag as possible, using either a plugin.
The plugins I found so far add the code too far down the <body> tag.
I cannot add the code by editing the header.php file since I use a page builder that uses its own theme. The only way is to modify the functions.php file but I don’t really know how.
Thanks!