Sn00z389
Forum Replies Created
-
Forum: Plugins
In reply to: [IP Geo Block] IP Geo Block Block Googlebot?Hi, yes it is strange, since it is not in the frontend, but in the backend, Googlebot is trying to crawl plugins that are long not on our website, it is also trying to get to the wp-login.php and the plugin blocks it there too.
But I can see that it passes googlebot to the frontpages, so everything should be OK.
Thanks for your reply and the great plugin! It does great job for protecting against Bruteforce and xmlrpc attacks! ??
Forum: Themes and Templates
In reply to: [Pinboard] tinymce is not defined (tools not appearing)Check to see if you have some .htaccess files inside your wp-includes folder! I was having this issue and it seems that it was caused by a .htaccess file in the root of wp-includes!
Forum: Fixing WordPress
In reply to: TinyMCE do not show up in WP 4.8.2Check to see if you have some .htaccess files inside your wp-includes folder! I was having this issue and it seems that it was caused by a .htaccess file in the root of wp-includes!
Hi, there is no need to remove the nofollow on the add to cart links and wishlist links. It is better for them to be there for SEO purposes.
Hi, everything was fixed by adding these lines at the top of the .htaccess:
RewriteEngine On #RewriteCond %{HTTP_HOST} ^SITENAME.com RewriteCond %{HTTPS} !=on [NC] RewriteRule ^(.*) https://SITENAME.com/$1 [R=301,L]
Now all the pages redirect correctly to the https version of the site.
Just tried the:
RewriteEngine On RewriteCond %{HTTPS} !=on [NC] RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R=301,L]
and again it works only for the home page, not the inner pages. All of other pages have the 200OK response when https:// only the home page has the 301 Moved Permanently https://.
Hi, I was having the exact same problem with the redirect loop with the code
<IfModule mod_rewrite.c> RewriteEngine on RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] </IfModule>
but when I tried with this code:
<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTPS} !=on [NC] RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] </IfModule>
the things started to look better.
The main page is 301 redirecting to the https version, but other pages on the site like articles and products http version is not redirecting to the https via a 301 redirect but only with JavaScript.
How can I make all of the pages to redirect via 301 redirect to their https versions, not using JavaScript but with .htaccess???
Thanks myhero. That’s a very appropriate nickname! Your solution has worked like a charm!
Best Regards!
Hi, have you figured out how to fix this? I’m having the same problem with one of my websites…
At first the Lightbox plugin is working just fine, but when I click second time my home page appears instead of my contact form.
Thanks
Forum: Plugins
In reply to: [Simple Cart & Buy Now] [Plugin: Simple Cart & Buy Now] Volume discountsHi again, thank you for the quick response! I have written this code to the templates customize.php and now I get an error: Parse error: syntax error, unexpected T_DOUBLE_ARROW in /home/gtanev89/public_html/blutegelkaufen.com/wp-content/plugins/simple-cart-buy-now/templates/default/customize.php on line 14
here is the code:function getItemPricing($itemname,$qty,$inputprice) { if ($itemname = "piavici" ) { if ($qty => 10) { $inputprice = 2.8; } else if ($qty => 50){ $inputprice = 2.5; } else if ($qty => 100){ $inputprice = 2.2; } else { $inputprice = 3; } $price=$qty*$inputprice; } else if ( $itemname = "Blutegel" ) { if ($qty => 10) { $inputprice = 2.8; } else if ($qty => 50){ $inputprice = 2.5; } else if ($qty => 100){ $inputprice = 2.2; } else { $inputprice = 3; } $price=$qty*$inputprice; } else if ( $itemname = "La Sanguijuelas" ) { if ($qty => 10) { $inputprice = 2.8; } else if ($qty => 50){ $inputprice = 2.5; } else if ($qty => 100){ $inputprice = 2.2; } else { $inputprice = 3; } $price=$qty*$inputprice; } else { //Error return 999999; } return $price; }
And also I have entered 12 Euro shipping and it says: TBD
Forum: Plugins
In reply to: [Simple Cart & Buy Now] [Plugin: Simple Cart & Buy Now] Volume discountsHi, I can’t manage to make a volume discount for 3 different products… Can you please paste the whole code I have to use in the customize.php?
Thanks