nsathees
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Remove RSS feed & Search form in Callar Dark themethis part could be different . . .
<form id=”searchform” action=”http://www.cellarheat.com/” method=”get”>look for
<form id=”searchform” action=”<?php bloginfo(‘url’); ?>” method=”get”>Forum: Themes and Templates
In reply to: Remove RSS feed & Search form in Callar Dark themeIt seems line the search is loacted in header.php file
remove the following lines from header.php file in your template dir. . .
<div id=”search”>
<form id=”searchform” action=”http://www.cellarheat.com/” method=”get”>
</form>
</div>to remove the RSS
remove the following lines from the index.php file
<span class=”rss”>
Syndication feeds available
</span>Forum: Themes and Templates
In reply to: Adding and Reading data to custom tableFor 2 hours no answer, I guess I am left with building a plug-in for this task.
Forum: Themes and Templates
In reply to: How to get the category id (the number) inside the post loop<?php get_cat_ID( $cat_name ) ?>
can read more here: http://codex.wordpress.org/Function_Reference/get_cat_ID
Forum: Themes and Templates
In reply to: template wont show description of catergory how do I add?where do you want to show it? in title tag?
Forum: Themes and Templates
In reply to: How can I edit a theme downloaded?Knowledge of HTML, CSS and PHP required!
Forum: Themes and Templates
In reply to: Can’t download any themeshow are you downloading the theme files?
Download them to your computer extract it and use ftp client to upload to wp-content/theme folder.
log-in to admin panel and activate it
Forum: Themes and Templates
In reply to: Sidebar Widget Weirdness Ocean Mist 2.0 Themein your default.css file on lline 120 find the following . . .
#subCol ul {
list-style-image:none;
list-style-position:outside;
list-style-type:none;}Change the list-style-type:none; to list-style-type:disc;
Forum: Themes and Templates
In reply to: Pyrmont V2 Footer.footer_wrapper {text-align: center;}
place this line in your style.css fileForum: Themes and Templates
In reply to: List categories name in an arraythe template tag wp_list_categories will out put and array
if you want to have it customized then can create your own function in function.php file.
function custom_cat_list($separator) {
$first_time = 1;
foreach((get_the_category()) as $category) {
if ($first_time == 1) {
echo $category->name;
$first_time = 0;
} else {
echo $separator . $category->name;
}
}
}if you want the array then got to build it instate of echo!
hope this helps. It is always better to place your question as clear as possible.
Forum: Themes and Templates
In reply to: Newbie questionshttp://codex.wordpress.org/Template_Tags/wp_list_pages
set link_befor => ‘<li class=”pagenav”>’
and link_after => ”set the category base to “blog”
Forum: Themes and Templates
In reply to: Adding and Reading data to custom tablethe other question is how would I call the do_action >create_post from a form button.
Forum: Themes and Templates
In reply to: What happens when the theme updates?If you custom modify the theme then you don’t want to update it. If you still want to update it, then you have to modify each time. since the original author do not include your modification.
If you are planning on removing the credit tag from the Template author, then I suggest not to do so and go create your own theme.
Forum: Themes and Templates
In reply to: Leading Post & Columnsto do that you will have to call the loop twice.
the first with the_post() and the rest with the_excerpt()Forum: Themes and Templates
In reply to: Move Comments to Left sidewhere do you have a page? post the url here.
what tugbucket said is for the default theme.