doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hacked WebsiteDave_Carlson,
Save a copy of your backups both database and site and try installing WordPress in a fresh database. Once it’s up and running again delete the original. I just noticed this is a WordPress.com question, you really should inquire in the forums there first.
Forum: Fixing WordPress
In reply to: Moved Site to WordPress and SEOcydneymikel,
You should consider a php redirect at the original domain. This way you can start working on the new site’s SEO while maintaining the original as well.
Forum: Fixing WordPress
In reply to: errors in 2.8.4 downloadlkcarnes,
We have installed version 2.8.4 several times with no issues. What version are you upgrading from?
Forum: Fixing WordPress
In reply to: Customizing Dashboard and Login PageGoHooterGo,
We have a quick tutorial on this very topic. Check it out here: http://www.doc4design.com/articles/wordpress-add-your-own-branding
Forum: Fixing WordPress
In reply to: Next and Previous not showing on homepagevenomshot629,
What do your permalinks look like? Check here: Settings > Permalinks
Thanks
Forum: Fixing WordPress
In reply to: Switching Domain name – help neededkwcdc,
It seems this issue is resolved.
Forum: Fixing WordPress
In reply to: removing drop down in menu bar4alloutdoors,
Can you indicate which theme you are using?
Forum: Fixing WordPress
In reply to: Switching Domain name – help neededkwcdc,
In case what whooami says isn’t clear this is a reference to the settings within the admin panel Settings > General. Then look for the following two fields:
- WordPress address (URL)
- Blog address (URL)
Forum: Fixing WordPress
In reply to: How do I add pictures that are flush with text?MDutmers,
Float both the image and text links left but single them out first like so:
<a class="socialIcon" href="http://www.facebook.com"> <img src="http://riverforkconsulting.com"/> </a> <a class="socialText" href="http://www.facebook.com">Become a Fan</a>Then follow this up with corresponding CSS:
a.socialIcon { float: left; } a.socialText { float: left; margin: 10px 0 0 10px; }The text portion needs a little extra alignment to move it away from the icon and adjustment to center it vertically.
Forum: Fixing WordPress
In reply to: Removing Blogroll & Categoriesmrdov,
Visit Appearances > Editor click on sidebar.php and remove the following code:
<div id="centersidebar"> <!-- sidebar east START --> <div id="eastsidebar" class="sidebar"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('east_sidebar') ) : ?> <!-- categories --> <div class="widget widget_categories"> <h3>Categories</h3> <ul> <?php wp_list_cats('sort_column=name&optioncount=0&depth=1'); ?> </ul></div> <?php endif; ?> </div> <!-- sidebar east END --> <!-- sidebar west START --> <div id="westsidebar" class="sidebar"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('west_sidebar') ) : ?> <!-- blogroll --> <div class="widget widget_links"> <h3>Blogroll</h3> <ul> <?php wp_list_bookmarks('title_li=&categorize=0'); ?> </ul></div> <?php endif; ?> </div> <!-- sidebar west END --> <div class="fixed"></div> </div>Forum: Fixing WordPress
In reply to: ” in posts rather than ‘raindance,
Is this an update to WordPress 2.8.3? We haven’t experienced any of these issues, though we don’t use widgets so I really can’t comment on that portion.
Thanks for the explanation, after reading it your first post makes complete sense 🙂 Take a look at this forum post: http://wordpress.org/support/topic/208934?replies=10
Forum: Fixing WordPress
In reply to: Next and Previous not showing on homepagevenomshot629,
This looks more like the code from the right page. I don’t however see any next/previous post code in there so try this, add the following code directly after the <?php endwhile; ?> tag and don’t modify it until you have verified that it works:
<div id=”pagination”>
<?php posts_nav_link(”,’Next Page »’,’« Previous Page’); ?>
</div>Forum: Fixing WordPress
In reply to: Increase line spacing in theme via CSSjust4lolz,
You got it. Good luck.
Forum: Fixing WordPress
In reply to: Next and Previous not showing on homepagevenomshot629,
Are you certain this is the same code from this page http://wineandbowties.com/wordpress/? I’m not seeing the container div that surrounds the content.
Forum: Fixing WordPress
In reply to: Next and Previous not showing on homepagevenomshot629,
Can you show us the php code you are using, don’t forget there are two types of next previous commands. One controls posts and the other pages.