Marcello Scacchetti
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blog disappeared. White screen onlyIf you can still access the database using phpMyAdmin or something like that have a look at: http://perishablepress.com/quickly-disable-or-enable-all-wordpress-plugins-via-the-database/. This site provides instructions on how to manually deactivate all active plugins and get access back to the blog.
Forum: Fixing WordPress
In reply to: blog excerpts helpTry to remove this:
</div><!-- END POST TAGS -->Forum: Fixing WordPress
In reply to: blog excerpts helpFor what i can see there is an additional </div> that closes the left content after the first post. Can you please paste here your page template so i can check it?
Forum: Fixing WordPress
In reply to: blog excerpts helpCheckout http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates and look at section “A Page of Posts” this should be what you are looking for.
Forum: Fixing WordPress
In reply to: Email removal using Blue Grace themeBy default the Blue Grace doesn’t use your email address under posts, so please check inside wordpress under Users that your username is not an email address. If you really want to hide the information open the file: wp-content/themes/blue-grace/index.php at line 53 you should fine:
<?php if (!is_singular()): ?> <div class="endate"><?php the_author(); _e(' on ', 'blue-grace'); the_time(__(get_option( 'date_format' ), 'blue-grace')); ?></div> <?php endif; ?>change it to:
<?php if (!is_singular()): ?> <div class="endate"><?php the_time(__(get_option( 'date_format' ), 'blue-grace')); ?></div> <?php endif; ?>and it should be gone.