blueinstyle
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Distubed wordpress interface after login.Try clearing your browser cache, and reload page. If that doesnt work, WordPress might not have installed/upgraded completely.
Forum: Fixing WordPress
In reply to: My home page is being redirected to a different page of my siteUnder Settings > General, check to make sure the WordPress address (URL) is https://mybusinessmarketing.org
In Settings > Reading, set front page display as Your latest posts
Forum: Fixing WordPress
In reply to: does WordPress know the day of the week?You could do something like this with basic php
<?php // get current day: $currentday = date('l'); // query posts where category equals current day: query_posts('category_name='.$currentday); // wordpress loop code here if ( have_posts() ) : while ( have_posts() ) : the_post(); .. endwhile; else: .. endif; ?>
Forum: Fixing WordPress
In reply to: Home Page News section</li>
tagForum: Fixing WordPress
In reply to: Home Page News sectionIt looks like you’re also missing a closing </div> and tags at the end. Its important to close all tags in the loop, or else it can break your layout.
Forum: Fixing WordPress
In reply to: Home Page News sectionYou’re missing <?php endif; ?> 2nd to last line
<?php endwhile; ?> <?php endif; ?> <?php } ?>
Forum: Fixing WordPress
In reply to: Site Info settingsFor a new blog, all should be ‘No’ except Public, unless you want a private blog.
Forum: Fixing WordPress
In reply to: Sidebar moves to bottom of pageCould you post up a test post so I could see the sidebars moved at bottom, it will help figure out the problem.
Forum: Fixing WordPress
In reply to: Home Page News sectionYes, but wrap the if statement in php tags
<?php if( is_front_page() ) { ?> // have_posts() loop code here <?php } ?>
Forum: Fixing WordPress
In reply to: Home Page News sectionTake a look at conditional tags like
if( is_home() ) { //do stuff here }
Forum: Fixing WordPress
In reply to: Wondering if a re-install would work for meThe problem could be server related or the version of WP. I suggest setting up a new WP3 installation, and import the content from the old blog to see if it helps with some of those issues.
Forum: Fixing WordPress
In reply to: Stoped displaying postsIf you’re using a custom theme, try applying a different theme or the WP ‘twentyten’ default theme. If the posts show up then, its most likely a problem with the theme you’re using.
Forum: Fixing WordPress
In reply to: using different widgetsYes, thats correct. Any of the widgets can be added or removed from the sidebar at any time. Widgets were designed for this kind of flexibility and ease of use.
I forgot to mention, you can ‘edit’ a widget before actually putting in your sidebar by dragging the Widget to the ‘Inactive Widgets’ section. There you can customize the widget then drag it to your Sidebar tab when its ready.Forum: Fixing WordPress
In reply to: RSS Feed Not WorkingI’m glad it worked!
Im used to using /feed as the default rss feed, however that only works if you have permalinks enabled on the blog, which is why I recommend the 2nd option, which will work whether you have permalinks enabled or not.Forum: Fixing WordPress
In reply to: using different widgetsYou have to add a Widget to your sidebar tab to be able to ‘edit’ or manage that widget.
And yes, your blog should work with or without any widgets in your sidebar, so you should be able to add/remove any of the widgets, and your blog will update in real time with the changes.