doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem editing footerNomadMik,
This is the right track. Try moving the code above the
<?php wp_footer(); ?>to see how the page is affected. How are you saving these files, through FTP or through the WordPress Admin Panel?</div> <div id="footer"> <small>TheDarkTower.info Copyright 2009 by Nastasia.com</small> </div> <?php wp_footer();?> </body> </html>Forum: Fixing WordPress
In reply to: Replybrice83,
It appears that you will need to do some template editing. A good place to start is in the WordPress Codex: http://codex.wordpress.org/Template_Tags/wp_list_comments
Forum: Fixing WordPress
In reply to: Need emails to moderate postsbitemin,
Take a look at this forum post: http://wordpress.org/support/topic/211531?replies=4.
Forum: Fixing WordPress
In reply to: Replybrice83,
Add a link so for clarification. Thanks
Forum: Fixing WordPress
In reply to: Limit User Name Characters when Registeringjwack,
Here is a good place to start: http://scriptplayground.com/tutorials/js/Limit-Textfield-Input/. If the maxlength attribute wasn’t depreciated this would be easier.
This information corresponds to the wp-login.php file at line 415.
Forum: Fixing WordPress
In reply to: Problem editing footerNomadMik,
Show us the code you are wanting to change and we will be able to help quicker. Like esmi says you may be accidentally removing php code wen making the adjustments.
Forum: Fixing WordPress
In reply to: Comment html is being strippedvalendesigns,
Utilizing Flutter 1.0 with WordPress 2.8.4 and Flutter doesn’t seem to be affecting the comment markup.
Forum: Fixing WordPress
In reply to: partly transparent header?formtofollow,
The CSS needs to be cleaned up quite a bit but the problem here is that the white background is an image. For a quick fix add the following:
#page { margin: 200px auto; } #header { position: relative; top: -200px; }Again this is a quick, temporary fix that may not be accessible by all browsers but it should be enough to allow time to make full corrections to the style sheet code.
Forum: Fixing WordPress
In reply to: WordPress.com Popular Posts NOT Showing Posts consistentlyfbahram,
The plugin appears to be functioning correctly under Firefox, has the problem been corrected?
Forum: Fixing WordPress
In reply to: Text doesn’t wrap around imagesRBenzaim,
Add a link to your site so we can take a better look.
Forum: Fixing WordPress
In reply to: blog crashed and I had to move hosts – am i just out of luck?HeroesNHunks,
I think we would all be interested in knowing who the host was. This is not typical behavior.
Forum: Fixing WordPress
In reply to: why do I have to refresh the page to enter my site ?sirsimplysaw,
ryans149 has a good point, check that the file is in place.
Forum: Fixing WordPress
In reply to: Blog post’s title under IE8 just mangledeggsbeer,
Why is the header image surrounded by pre tags?
<div id="header"> <pre> <div id="header"> <h1 class="sIFR-replaced" style=""></h1> </div> <a href="http://thebergblog.com/"> </a> </pre> </div>I also notice some Flash that doesn’t seem to working?
Forum: Fixing WordPress
In reply to: Posting not publishingdvl1980,
Check the php code listed under Appearance > Editor Main Index Template (index.php) for “showposts=5” within the loop in question. What you are looking for looks similar to the following:
<?php query_posts('category_name=special_cat&showposts=5'); ?>Where “showposts” may be the limiting factor.
Forum: Fixing WordPress
In reply to: Security breeched?Energiser,
Does your site address include /blog because http://www.greenfoodsonline.co.nz/ seems to be working correctly. Check that you have listed the address correctly under Settings > General. Look for WordPress address (URL) and Blog address (URL). Let us know what happens next.