Equal
Forum Replies Created
-
Forum: Plugins
In reply to: any way to view my hosted videos as a list ?Create a custom page template for the page you want to show them on. This link will help you with custom page templates:
http://codex.ww.wp.xz.cn/Pages#Page_Templates
Then create a custom loop in order to display the posts from the category that contains the videos. Something like this:
<?php $recent = new WP_Query("cat=1&showposts=10"); while($recent->have_posts()) : $recent->the_post(); ?> //do stuff in here like list titles of posts etc. This stuff will be done for each post in the category you chose above where it says cat=1 <?php endwhile; ?>Forum: Themes and Templates
In reply to: Assign a class to the post’s and pages <p> created by wordpressWhy not just make sure that your form has a specific class and then style that?
Forum: Themes and Templates
In reply to: adding <span> tags to wp_list_pages itemsTake a look at this page:
http://codex.ww.wp.xz.cn/Template_Tags/wp_list_pages
Particularly the link_before and link_after parameters. They may do the trick?
Forum: Themes and Templates
In reply to: Theme for Schools?Keep your eye out for Education Themes. We should be launching just before Christmas and will be concentrating on themes for schools. We will be launching the theme which we used for this website as well as many others. Keep up to date by following on Twitter.
Forum: Fixing WordPress
In reply to: Page mailto not workingFirstly I would never advise that you put your email address directly on a page of a website as you will get spammed for sure. However if you insist, using the code editor rather than the visual editor this should do the trick:
<a href="mailto:[email protected]">[email protected]</a>Forum: Themes and Templates
In reply to: Setting up a galleryIf you mean what the end product looks like on your page when viewed them Matt himself uses the gallery WordPress function I believe.
Here is an example:
Forum: Fixing WordPress
In reply to: How can i reinstate the admin user?Yes it is an interface to directly alter your database. Your host will know what it is and tell you how to get at it, however if you are not sure it is probably not a good idea to start messing with it.
Forum: Fixing WordPress
In reply to: Blog Down, email adress provided not working, URGENT helpcheck the details in your wp-config.php file in the root of your website as there is an error connecting to your database. Make sure that the user and password are correct etc.
Forum: Fixing WordPress
In reply to: How can i reinstate the admin user?You could probably manually add it yourself in PHP my admin
Forum: Fixing WordPress
In reply to: I have comments Enabled On My Pages But They Will Not Appear!Check that your page.php file inside your themes folder in wp-content contains a call to:
<?php comments_template(); ?>Forum: Fixing WordPress
In reply to: Footer is not pushing to bottomAdd the following directly above
div id="footer"<div style="clear: both;"></div>Forum: Plugins
In reply to: Manage -> Redirection -> OptionsTry under tools or settings
Forum: Plugins
In reply to: “user” custom field?Forum: Plugins
In reply to: More Fields messing up ability to add “Post Tags”What version of more fields are you all using? I am using the latest version with WP 2.8.5 and have no problems like those you are mentioning.
Forum: Fixing WordPress
In reply to: Add a homemade image to theme header.The image that contains the ‘X’ is here:
http://randythetechprofessor.com/wp-content/themes/xMark/images/bodybg.png
Replace that with one of your own keeping the file name the same.
To move the title to the right replace the rule .site-title on line 55 of your stylesheet with this:
.site_title { font-size:30px; height:35px; overflow:hidden; padding:4px 0 0 180px; }