Equal
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Need to change a template pageIf you can provide a link to your site that would help?
Forum: Themes and Templates
In reply to: How do I sdd a Categories dropdown to my menuTake a look here:
http://codex.ww.wp.xz.cn/Template_Tags/wp_dropdown_categories
You will need to implement this in your menu. Perhaps in your themes header.php file?
Forum: Fixing WordPress
In reply to: Remove blank article borderYou just have an empty div class=”post”
Remove that and it should go.
Forum: Plugins
In reply to: How to : article from a category into a static page ?Create a custom page template:
http://codex.ww.wp.xz.cn/Pages#Creating_Your_Own_Page_Templates
At the top you could include a normal loop to get the content of that page like so
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <h2><?php the_title(); ?></h2> <?php the_content(); ?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?>Then under that a custom query to get the post from a given category. The code below will show the title of 5 posts from category 1.
<ul> <?php $recent = new WP_Query("cat=1&showposts=5"); while($recent->have_posts()) : $recent->the_post();?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul>Forum: Themes and Templates
In reply to: current_page_item and background image#menu li.current_page_item a{ margin-top: 14px; border-bottom: 0px; color: #33cc33; text-decoration:none; background-image: url('current.png'); background-repeat:no-repeat; background-position: bottom; padding-bottom: 20px; }Try that but you will have to change the padding-bottom to a little higher than the height or your background image. Hard to diagnose without a live link to the site it may or may not work.
Forum: Themes and Templates
In reply to: Mystique theme not working.That picture looks to me like your theme is not loading its stylesheet. Check it is on the server in the themes folder inside wp-content/themes/themename
Forum: Themes and Templates
In reply to: Mystique theme not working.Looks fine to me in Safari 4 on the Mac
Forum: Fixing WordPress
In reply to: New WP site- How to get traffic?Take a look at the All in one SEO plugin. Well worth activating to your site.
Forum: Fixing WordPress
In reply to: Can’t access website, uploaded new theme=diasterWell I am trying to help so ranting at me isn’t going to encourage me!
The error that you are getting:
Fatal error: Class ‘WP_Widget’ not found in /home/brian/www/www/wp-content/themes/bueno/includes/theme-widgets.php on line 123
is looking for a function in the theme that you mention (Bueno) therefore if you have definately deleted that theme from the wp-content/themes/ folder it should not longer be a problem.
Forum: Fixing WordPress
In reply to: Newbie Question – Making primary links link to other pagesIf you mean you want to link an existing page in WordPress to an external site then what I would do is delete the page and then manually add it to the navigation bar of your theme.
Forum: Fixing WordPress
In reply to: embedding YouTube videos — is it just me?I think (not 100% certain) but with WP 2.9 you should be able to just paste the URL of the YouTube video into the post editor and WordPress will do the rest and display the embedded video.
Forum: Fixing WordPress
In reply to: Can’t get to the admin panel SSL problemsIf you delete the plugin from the plugins folder then that will automatically deactivate it and therefore if the plugin caused the error it should resolve.
Forum: Fixing WordPress
In reply to: Subdomain AutoupdateWhat error messages are you getting?
Forum: Fixing WordPress
In reply to: Can’t access website, uploaded new theme=diasterCan you login to the WORDPRESS dashboard?
Forum: Themes and Templates
In reply to: How do I create a members section in wordpress?A simple way of doing this would be to make your members a registered user of your blog, perhaps at contributor level. Then for content that you only want registered users (members) to see, you could wrap your posts, pages on the following:
<?php if(user_is_logged_in() ) { ?> <!-- normal loop in here --> <?php } else { ?> <p>Sorry but you need to be a registered member in order to see this content.</p> <?php } ?>Take a look here to:
http://penny4them.com/2009/restrict-pages-to-logged-in-users/