Rachel Baker
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My page is all messed up help. www.lifeislikeablogofchocolate.comLooks like you have an errand
</div>
tag in your post on Carl JungForum: Fixing WordPress
In reply to: Wp-Admin does not workhttps://www.maple-news.com/wp-admin is taking me to your WordPress login page.
Forum: Themes and Templates
In reply to: Frameset DTDYes, this can be declared in the header.php file of your theme. Different themes can use different declarations for DOCTYPE, so you may have to manually edit this yourself.
Forum: Fixing WordPress
In reply to: New post are showing in the bottom. Please help!Please provide more information so someone can help you.
Details such as:
– Link to page where this is occurring
– Name of theme
– Any other information relevant to your issueForum: Fixing WordPress
In reply to: Posts disappearing after published & NOT on home pageI can see your “ghost post” on your homepage, as well as the post stating your unhappiness with Bluehost and WordPress.
See my screenshot here: https://skitch.com/rachelbaker/gwi83/a-wanderful-life
Forum: Fixing WordPress
In reply to: Quick — I hope EASY problem. Please Help!Can you please paste the code from the current functions.php to pastebin and supply the link here?
Simply, check line 3 in your functions.php for an errand /
Forum: Fixing WordPress
In reply to: Error establishing a database connectionThere are numerous reasons that may prevent you from connecting to your database.
The database may not exist. If you are unsure, then you may need to ask your Web Host for information on your MySQL database.
Your configuration file may have erroneous information. This is the most common mistake when configuring WordPress.
You may be missing a necessary user prefix. If so in the wp-config.php file modify the “DB_NAME” constant to “yourloginname_wp”, or modify “DB_USER” with “yourloginname_dbuser”.
Check that there is no whitespace at the bottom of your wp-config.php file.Also, check your WordPress configuration values have been set correctly.
Forum: Fixing WordPress
In reply to: How To Create Post Types?Your theme’s functions.php file needs to have an entry specifying which post formats to support. If your theme does not already support the post formats, you can the line below to your functions.php file:
add_theme_support( 'post-formats', array('image', 'audio', 'video', 'link', 'quote', 'aside', 'gallery' ) );
More information: https://codex.www.ads-software.com/Post_Formats
Forum: Fixing WordPress
In reply to: mysterious white boxCan you please share a link to a page that demonstrates the problem you are having? It would be much easier to offer the solution, if we can see the problem.
Forum: Fixing WordPress
In reply to: Styling text adds extra line breaksGlad you resolved your issue.
Forum: Fixing WordPress
In reply to: html in widget text boxOr to help you with the code you may want to look into something like the WYSIWYG Widget Plugin: https://www.ads-software.com/extend/plugins/wysiwyg-widgets/
Forum: Fixing WordPress
In reply to: html in widget text boxYou have to put
<font color="purple">
inside the<a>
element.Forum: Fixing WordPress
In reply to: html in widget text boxPlease provide more specific information so we can help you, such as:
– a link to a page displaying content related to your questions
– the html code in your text widgetForum: Fixing WordPress
In reply to: Styling text adds extra line breaksI would use just one paragraph element and add italics with the
<em>
tag:<p><em>Contributed by</em> <?php the_author()?> <em>on</em> <?php the_date()?></p>
Forum: Fixing WordPress
In reply to: How to stop WordPress from creating extra header images ?WordPress creates a copy of each image file size you have set in Admin > Settings > Media.
To stop this behavior you can disable the default sizes, by setting them all to “0” in Admin > Settings > Media.