Equal
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Editable region in templateI think that using Widgets would be the easiest way. If you theme has a sidebar widget area you could add a text widget to this and add the information here.
Forum: Themes and Templates
In reply to: Random Post not showing commentshttp://codex.ww.wp.xz.cn/Function_Reference/comments_template
Not the description in that this will only work for single post or page displays. Therefore if your URL is not the page or post that is being displayed randomly then it won’t work.
Forum: Fixing WordPress
In reply to: Making search results link to pages not postsThis could possibly help:
http://www.wprecipes.com/how-to-exclude-posts-or-pages-from-search-results
Forum: Fixing WordPress
In reply to: Remove date, category and comments offTo remove the comments and date stuff on line 418 of your themes style.css file where you have the following:
#contents .datecomment { font-size: 10px; font-weight: normal; text-transform: uppercase; letter-spacing: 1px; background: #F9F9F9; margin: 0 0 20px 0; padding: 6px 0 8px 0; }replace with:
#contents .datecomment { display: none; }The ‘more’ text is probably hard coded into one of the template files of the theme. Look from the text in home.php in order to replace it.
Forum: Fixing WordPress
In reply to: contact form to csvTry here for some help on page templates:
Forum: Fixing WordPress
In reply to: like button code on every post…If you want to add something below every post you will need to add this inside the loop, wherever you want it to appear. You probably want to add this to your themes index.php and single.php templates.
Forum: Fixing WordPress
In reply to: contact form to csvIf you have all the form and everything do, why not create a page template and then use this for your contact page. Place you form script on that page.
Forum: Themes and Templates
In reply to: next_posts_link/previous_posts_link return blank!<?php previous_posts_link(); ?> <?php next_posts_link(); ?>I think the above should be used on archive pages and the following on single post pages.
<?php previous_post_link(); ?> <?php next_post_link(); ?>That is how they are used in the twenty eleven theme.
Forum: Fixing WordPress
In reply to: changing excerpt to full postThe code you have mentioned is the start of the WordPress loop:
<?php while ( have_posts() ) : the_post(); ?>Just after that you will probably have some code that includes
the_title()and after thanthe_content().To display the full articles you will need to replace
the_content()withthe_exceprt(). This will need to be done on all template you require this to happen e.g. archives.phpForum: Themes and Templates
In reply to: How to show "sidebar" with widgets?Not really sure what you are asking here. Are you asking how to widgetize your sidebar (i.e. allow your sidebar to accept widgets) or how to add widgets to your site?
Forum: Themes and Templates
In reply to: [Twenty Eleven] Borders around menuThat will probably be padding on the list item tag. Can you provide a link displaying the problem and then I could take a look at the CSS.
Forum: Fixing WordPress
In reply to: Sticky Post – In special Category (not front page)Put it right at the bottom before the closing
?>Forum: Fixing WordPress
In reply to: limit wordcount in loopYou could replaced
the_content()withthe_excerpt()Forum: Fixing WordPress
In reply to: Sticky Post – In special Category (not front page)Perhaps this will help:
http://interconnectit.com/2146/how-to-make-sticky-posts-even-stickier-in-wordpress/
Forum: Fixing WordPress
In reply to: htaccessTry this plugin: