Gloria
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How modify function the_metaThanks, I wrote another function in functions.php …
Forum: Fixing WordPress
In reply to: wp_list_pages: I don't want to see the children pagesThanks. It works.
Forum: Fixing WordPress
In reply to: get_posts (exclude sticky posts)Thanks.
Forum: Fixing WordPress
In reply to: Unable to locate WordPress Root directory. Installation failed.@govpatel @esmi
1) I deleted all folders (except the file wp-config.php and the folder /wp-content/) and I sent the new files/folders of the new version. I saw again “upgrade to 3.1.3……” in dashboard.
2) I upgraded with automatically upgrade (to the panel), and I saw again “upgrade to 3.1.3…” in dashboard.
3) I pasted the code into file wp-config.php … I couldn’t see the plugin into panel. But in the header of dashboard I saw the upgrade (but WordPress was already upgrade).
4) I couldn’t upgrade plugins and WordPress. So I deleted that code in wp-config.php . Now I can see the plugins into panel and I can automatically upgrade plugins and WordPress from panel. And I don’t see the warning for upgrade to 3.1.3 version.govpatel and esmi, thanks 🙂
Forum: Fixing WordPress
In reply to: Unable to locate WordPress Root directory. Installation failed.Both before and after, I updated manually.
For many years that I update manually, so the procedure should be accurate…
When I go to => wp-admin/upgrade.php, I read “Your WordPress database is already updated!“.Perhaps I should change or go to see something in the database?
Forum: Networking WordPress
In reply to: There aren't box "excerpt" and "custom fields" in editor postAh! Ok, I resolved, thanks.
Forum: Fixing WordPress
In reply to: Padding around date postedYou should use the CSS file…
But, you can use:
<div style="margin-bottom:10px;"><span style="border-bottom: 1px solid #f51f38;"><strong><?php the_date(); ?></strong></span></div>Forum: Fixing WordPress
In reply to: Padding around date postedHi.
When you go to single.php ( admin panel >> editor >> single.php ), have you about this code?
<span style="border-bottom: 1px solid #f51f38"><strong><?php the_date(); ?></strong></span>If it’s correct, you can add the padding into span.
For example:<span style="padding-bottom:5px;border-bottom: 1px solid #f51f38;"><strong><?php the_date(); ?></strong></span>Forum: Fixing WordPress
In reply to: Adding Signature Image to PostsHi.
Go to admin panel >> editor >> single.phpSearch:
<?php the_content(); ?>
and then paste the html code…
<img src="http://www.tinalicious.com/wp-content/uploads/2010/02/TinaSiggy.png" />Forum: Fixing WordPress
In reply to: How rewrite rules into database? I have no table rewrite_rulesThanks.
I was looking for something like this “ticket”.
It’s a limit for WordPress 🙁
So, I think I use the structure “/%year%/%postname%”.Forum: Fixing WordPress
In reply to: How rewrite rules into database? I have no table rewrite_rulesThanks for your answer.
Try using one of the pre-set custom permalink structures
If I use permalink as:
-Default
-Day and name
-Month and name
-NumericIt’s all ok, and I consume about 20 queries (each page/post).
But, when I try again ” Custom structure: /%category%/%postname% “, the queries are about 2800.If I use “/%year%/%postname%”, the pages have the same permalink (www.nomesito.it/page/sub-page), but the post are “www.nomesito.it/2010/title-article” and before were “www.nomesito.it/category/title-article”.
So, I can return to “/%category%/%postname%” ?Forum: Plugins
In reply to: [Plugin Sendit] Error 500Maybe, I had an error in .htaccess file, or wrong permission…
Now, it’s ok.Forum: Fixing WordPress
In reply to: Can’t Get Search Box to WorkI think it’s a problem of your theme…
Try to download again the orginal template, because, maybe you changed something…Have you any solution?
@shane G.
I set these rules in .htaccess file, is it ok?In my .htaccess file I have this:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # Options +FollowSymlinks RewriteCond %{HTTP_REFERER} cnzz\.cn [NC,OR] RewriteCond %{HTTP_REFERER} qq829\.com [NC] RewriteRule .* - [F] php_value memory_limit 64M php_value upload_max_filesize 32M php_value post_max_size 32M redirect 301 "/example" http://site.it/page/example redirect 301 "http://site.it/example1" http://site.it/page/example1 # I have another redirect 301 </IfModule> # END WordPressWhat’s wrong?
Thanks to both