tim9021
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Twenty Seventeen Custom CSS how to override style.cssok, thanks Bcworkz.
Forum: Developing with WordPress
In reply to: Twenty Seventeen Custom CSS how to override style.cssI have created a child theme for twentyseventeen. The sidebar doesn’t realign to bottom below posts. The sidebar and primary content try to squish together.
The occurs on a phone, small display.
Is there a mobile style that I’m interfering with?
Forum: Developing with WordPress
In reply to: Twenty Seventeen Custom CSS how to override style.cssok, thank you.
Forum: Fixing WordPress
In reply to: wp-super-cache (removed) posts showing 404I don’t know what happened, but I had to change the permalink structure back to default then back to my custom structure.
ok now.
Forum: Fixing WordPress
In reply to: custom permalink shown in Matt Cutts videoEsmi,
I changed my permalink structure from default to custom and I see the edit button now.
Thanks for your help.
Forum: Fixing WordPress
In reply to: custom permalink shown in Matt Cutts videoThe link shown on my 2.8.4 version takes me directly to permalink settings where common settings are changed.
Forum: Fixing WordPress
In reply to: custom permalink shown in Matt Cutts videoThat changes the structure across the board; it appeared that Matt could enter a custom permalink right there on his new post panel.
Forum: Fixing WordPress
In reply to: wp_get_archives not listing all postsThis fixed my problem, thanks for your help:
<?php posts_nav_link(‘ — ‘, __(‘« previous page’), __(‘next page »’)); ?>
Forum: Fixing WordPress
In reply to: wp_get_archives not listing all postsI use a template migrated from 1.2, how would I specify a subsequent page?
My archives are pulled using a query like, “m=200603”
Thanks again.
Forum: Fixing WordPress
In reply to: wp_get_archives not listing all postsI just noticed that the amount of archived posts shown for a month (25) is the same amount of posts specified to be displayed on my blogs home page.
How can I get around this?
Forum: Fixing WordPress
In reply to: Trackback Question After Upgrading From 1.2 to 1.5.2Looks like my problem was using comments.php from the default theme. When I used commments.php from Classic, trackbacks and RSS showed up.
Forum: Everything else WordPress
In reply to: Why can’t I post the word “according”?I found out that the problem was mod_security rules on the server. A double ‘cc’ was causing the trouble. The problem has now been resolved.
I still plan to do the upgrade though. Thank you for your help.
Forum: Everything else WordPress
In reply to: Why can’t I post the word “according”?ok, thanks. I’ll go ahead and start planning for the upgrade.
Forum: Everything else WordPress
In reply to: Why can’t I post the word “according”?so you’re saying my blog is exploited. Will the upgrade clear up the exploit? How could that have been done?
Forum: Everything else WordPress
In reply to: Fetch API Request’sI was advised by other bloggers to block it with this code in htaccess:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} (Fetch\ API\ Request)
RewriteRule .* – [F,L]It’s working well.
Someone else recommended some untested code:
SetEnvIf User-Agent “Fetch\ API\ Request$” badrobot
<Directory />
order deny,allow
deny from env=badrobot
</Directory>