Equal Web Creative
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Allow user to switch stylsheet with single button press?I think there are some plugins that will do this if I remember rightly. Also you could use theme options in order to select a different theme stylesheet
Forum: Fixing WordPress
In reply to: Post ID not going sequentiallyNot a problem at all. Also if you have created a page and then deleted it the id that was used for that page or post will be gone for ever and not used again therefore meaning that your numbering will not be sequential.
Forum: Fixing WordPress
In reply to: Need Help With Cranky Pagination on Page TemplatesI am having the same problem to when used with a custom post type query.
Forum: Themes and Templates
In reply to: Have Posts in a Category Display in a GridTo pull the images from the post you should use the new post_thumbnail function of wordpress. Search for it online it is easily implemented. Aligning your t-shirts is a matter of getting to grips with css
Forum: Fixing WordPress
In reply to: posts not showing upThe page that you have selected to use as the blog page in settings > reading is it set to the default template?
Forum: Fixing WordPress
In reply to: admin panel white screen of deathUsually when this happens there is an issue with your themes functions.php file. Try reverting the to defulat theme and see if that works.
Forum: Fixing WordPress
In reply to: Where do I find the default page templateIf in the setting page you have set the home page as a static page and the posts page as a static page then the template php file in your theme folder that controls the look of the posts page is index.php
Forum: Fixing WordPress
In reply to: urls for blog post end in alph numeric jibberish instead of titleIt should show up by default. You can change the permalink of a post underneath the title. Also check that you are adding a title before the post or page is saved.
Forum: Themes and Templates
In reply to: wordpress 3 – custom menusThere was an extra space in my code above between the second brackets.
Try this:
register_nav_menu();Forum: Themes and Templates
In reply to: site closed unless logged in conditionalI think you will need to add it to the index.php and other template as necessary. This would be the formating of the PHP:
<?php if(is_user_logged_in() ) { ?> //put all content here that you want to show logged in users <?php } else { ?> //put all content here that you want to show none logged in users <?php } ?>Forum: Themes and Templates
In reply to: no “see earlier posts” linkTry replacing this:
<?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?>With this:
<?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div> <?php else : ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?>Forum: Themes and Templates
In reply to: For you designer junkies out there….Looks like Javascript to me. Perhaps jQuery.
Forum: Themes and Templates
In reply to: wordpress 3 – custom menusNot really. Put it right at the bottom after the final
?>Forum: Fixing WordPress
In reply to: check first install date of pluginsI am sure the files will be time stamped on the server as to when they were created. Check the files in the wp-plugins folder for dates that correspond to the time when you first notice this issue.
Forum: Fixing WordPress
In reply to: ExcerptReplace
<?php the_excerpt(); ?>with
<?php the_content(); ?>