doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: reinstalling wordpress?fifthhouse,
Not confident that a reinstall will correct the issue, however a reinstall is a simple matter. Download the latest WordPress release then remove/delete the wp-content folder from the downloaded folder (Not from the server). What you want is to preserve the wp-content because it contains all of your plugin, images and theme files. The re-upload everything else. To be safe please read through the upgrade instructions as well.
Forum: Fixing WordPress
In reply to: WP Super Cache Looking WeirdNavie,
If you are in a hurry, open a new window and view all the pages you would like to cache, as TransPersonal says they are only cached once loaded and viewed.
Forum: Fixing WordPress
In reply to: tiny mce advanced with real CSS in the Backend?sepp88,
I thought you were talking about the Style Dropdown which can be added to the menu in the Settings option for TinyMCE Advanced. By selecting the style sheet option as you have done you will see some css carry over but there will be some styles that do not work.
Forum: Fixing WordPress
In reply to: gap under navigationshaaawty,
Just wanting to clear this up. You are referring to the gap under the header image and above the brown “where to” and green “log in” boxes, correct? I ask because there is no gap appearing below the navgation and the header image.
Forum: Fixing WordPress
In reply to: Comment font needs changed and comments are jumbled?dbcjpc,
The Swift theme does not arrive pre-installed with WordPress and therefore it is not an option within our Appearance tab. We are using a custom built theme at this time.
Is this what you are referring to: http://wordpress.org/extend/themes/swift
Forum: Fixing WordPress
In reply to: Creating pages – making them links?arineod,
Making the assumption that the theme is using wp_list_pages for the navigation it would only be a matter of adding your own code for another menu option like so:
<ul> <?php wp_list_pages('title_li='); ?> <li><a href="http://www.anothersite.com">Another Site</a></li> </ul>Forum: Fixing WordPress
In reply to: Disable everything besides posts and single viewiamchel,
What is this plugin you are using? I’m not sure you really need it, but that is besides the point. If you set the About page as a draft others will not be able to see that page. Keep in mind you will be able to see it as long as you are logged in.
Forum: Fixing WordPress
In reply to: Disable everything besides posts and single viewiamchel,
Are you wanting to hide the menu options from others or is this a request to make a simple layout? If looking to hide the navigation there are several plugins that can accomplish this. If looking for a simple layout structure you can always delete the pages you don’t need.
Forum: Fixing WordPress
In reply to: Creating pages – making them links?arineod,
How do you mean? What generally happens is the link is created by the Permalink option shown just below the Page title. The title can be different from the Permalink.
Page Title: About
Page Link: http://www.mysite.com/sampleWhere the above link still takes the user to the About page.
Forum: Fixing WordPress
In reply to: Sidebar Ads Already in Themektankers,
Looks as though you have removed the page.
Forum: Fixing WordPress
In reply to: Putting my cursor after or neath a table in the Wysiwyg editorjeronald12,
I have never seen this issue. Try disabling all of your plugins to see if one of them is causing the problem.
Forum: Fixing WordPress
In reply to: How to show al the comments on the same page?markv,
This is built into WordPress because you don’t want 200 comments directly under each post on the index page. It would difficult to read through the posts if they were separated by hundreds of comments. Likely no one would visit twice.
Take a look at this web site as an example: http://vandelaydesign.com/blog/ Just so you know this isn’t my site but a random example. The index page provides a read more link and displays the number of comments, this is common making it easy for users to understand that they need to click through to read the remainder of the post and to comment. The index page is easy to navigate allowing the user to see many posts at once and choose which they would like to read.
Are you still interested in showing the comments on the index page?
Forum: Fixing WordPress
In reply to: Custom Fields – What’s wrong with my code?Emily1,
Hopefully I am reading this correctly, but try this. Place the following code before the <?php endwhile; ?> tag.
<?php echo get_post_meta($post->ID, 'address', $single=true) ?>Forum: Fixing WordPress
In reply to: How to show al the comments on the same page?markv,
Please post a link to your site. All blogs are different and it helps to visualize what you are referring to.
Forum: Fixing WordPress
In reply to: Can’t get rid of blank space on top of pagealvaradopau,
The following bit of code in the post needs to be deleted to remove the additional post whitespace. Other than that it seems adiant has solved your immediate issue?
<div class="entry"> <p> <br /> <br /> <br /> </p>