JonasBang
Forum Replies Created
-
Thanks for the tip. I’ll install:
https://www.ads-software.com/plugins/limit-login-attempts-reloaded/
https://www.ads-software.com/plugins/duo-wordpress/Thanks @macmanx.
I have replaced the ISP enabled IP block on “/wp-admin/” folder with the Remove Dashboard Access plugin.
It works as expected, and the config options are really nice.
Only issue is, that if my site will be target of a brute-force attack trying to login, then my ISP will add the IP block on “/wp-admin/” folder again as that is the only measure to effectively block.
Forum: Fixing WordPress
In reply to: Why does all comments get marked as spam?Forum: Fixing WordPress
In reply to: Why does all comments get marked as spam?Solved ??
It was “WP-reCAPTCHA” apparently. I replaced it with “Google Captcha (reCAPTCHA) by BestWebSoft”, and disabled it for comments, and now comments get auto approved, nice ??
Forum: Fixing WordPress
In reply to: How to get sticky footer with Twenty Eleven child?Oh, forgot, one of the methods I tried I found through this old post, but it too doesn’t work:
https://www.ads-software.com/support/topic/sticky-footer-with-twenty-eleven?replies=4Amazing, works like a charm.
Thanks a bunch, really appreciate it.Br,
JonasForum: Fixing WordPress
In reply to: Removing page title on the pageTo remove the page title in Twenty Eleven theme on front page only, add following ‘if’ code to file ‘content_page.php’:
<?php if ( !is_front_page () ) : ?> <h1 class="entry-title"><?php the_title(); ?></h1> <?php endif; ?>
Then on your front page you can make your own header title with the proper css style like this:
<h1 class="entry-title">Velcome to my homepage</h1>
You should ofcourse make a child theme with those changes.
Forum: Themes and Templates
In reply to: Where is the 'skip-link' definition?Mystery solved, thanks :o)
I found the ‘screen-reader-text’ first in the ‘rtl.css’ of Twenty Ten, and copied it to my ‘rtl.css’ … it did not work.
Then I started looking for the definition of ‘skip-link’ because I assumed that that was the reason to why it did not work.
As it now shows, ‘screen-reader-text’ is defined in Twenty Ten both in ‘rtl.css’ and ‘style.css’. So, now I have copied it to both of my files too, and it works without the definition of ‘skip-link’. I have kept your ‘skip-link’ definitions though.
Thanks again, much appreciated.
Br,
JonasForum: Themes and Templates
In reply to: Where is the 'skip-link' definition?It works, thanks a bunch.
But, when I look at other themes which are using ‘skip-link’ they don’t have those definitions in their ‘style.css’. That is what I do not understand.
Have you checked your Twenty Ten style.css? Does it contain those definitions?
Forum: Themes and Templates
In reply to: Where is the 'skip-link' definition?If you have the css code for ‘skip-link’ which should go into ‘style.css’ I would much appreciate it.
Though I still can’t understand it, but that is 2nd prio ;o)
Br,
JonasForum: Themes and Templates
In reply to: Where is the 'skip-link' definition?Sorry, my bad, here is my site:
https://www.uhuru.dk/As you can see in the menu, the ‘Skip to content’ is visible.
When I search the TwentyTen style.css, there is no ‘skip-link’ definition. That is what puzzles me, how can it work in TwentyTen?
Appreciate your time.
Br,
JonasForum: Themes and Templates
In reply to: Where is the 'skip-link' definition?Is it being defined in that div? Not in a css file, or other place?
If that is the case, why isn’t it working? Any clues?
I have copied the ‘screen-reader-text’ definition to my css file.
And changed ‘twentyten’ to the name of my theme, question is if that name need to be defined somewhere else also?Forum: Fixing WordPress
In reply to: Language file editorThanks, I’ll give it a try.
Br,
JonasForum: Alpha/Beta/RC
In reply to: 2.5 image uploadThis solved my ‘HTTP error’ related to not being able to upload images with WP 2.5 :
Read this postHope someone else can get it to work with this solution.
Br,
JonasForum: Installing WordPress
In reply to: Upload errorThis solved the ‘HTTP error’ for me (see my problem and setup above) :
Read this postMy latest uploaded .htaccess file to root dir looks like this :
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressBr,
Jonas