Kapil Chugh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to get current page IDI have checked code it is returning 1 from get_site_location function.
Forum: Fixing WordPress
In reply to: Put Tagline Below Site Title in Twenty Ten ThemeIf you want to put your tagline on RHS then you need to change two styles in style.css
(1) in style.css #site-title on line 337 change width 700px to 650px.
(2) #site-description on line 349 change width 220px to 250px;But if you want tagline beneath site title then you need to change two files.
(1) in header.php change 65 and 66 lines
</<?php echo $heading_tag; ?>>
<div id=”site-description”><?php bloginfo( ‘description’ ); ?></div>to
<span id=”site-description”><?php bloginfo( ‘description’ ); ?></span>
</<?php echo $heading_tag; ?>>(2) in style.css replace this #site-description style with this one
#site-description {
float:left;
font-size:13px;
width:100%;
}Forum: Fixing WordPress
In reply to: Unable to get current page IDuse global keyword
global $wp_query, $post;
$page_ID = $post->ID;and then pass this $page_ID in get_site_location function.
Forum: Fixing WordPress
In reply to: Blank RSS FeedSorry align attribute works with table tag.
Use this one <div style=”padding-left: 30px;”>Forum: Fixing WordPress
In reply to: Category RSS linkuse this one
<?php the_category_rss( $type ) ?>https://codex.www.ads-software.com/Function_Reference/the_category_rss
Forum: Plugins
In reply to: post submission plugin?Forum: Fixing WordPress
In reply to: Blank RSS Feedrather than using center tag use <div align=”center”>
Forum: Fixing WordPress
In reply to: Blank RSS FeedThis is problem of <center> tag that you are using in your theme.Feed is coming on the link that you specified.You can also check it by viewing its source.
The only problem is this one
<Center>
<table id=”Table_01″ width=”434″ height=”35″ border=”0″ cellpadding=”0″ cellspacing=”0″>
<tr><td>
<img src=”https://i28.tinypic.com/sobggn.png” width=”107″ height=”35″ alt=”Home”></td>
<td>
<img src=”https://i30.tinypic.com/28hzkvt.png” width=”109″ height=”35″ alt=”About”></td>
<td>
<img src=”https://i30.tinypic.com/3bo5s.png” width=”109″ height=”35″ alt=”Contact Me”></td>
<td>
<img src=”https://i26.tinypic.com/193xbc.png” width=”109″ height=”35″ alt=”Other Links”></td>
</tr></table></Center>
It is also coming in the source.
Forum: Requests and Feedback
In reply to: Sub-category display problem in 'Edit Post' page…I also faced same issue.To fix this one i had to change wordpress code.
So i just commented these lines on this page wp-admin/includes/template.php from line no 291
/* foreach( $keys as $k ) {
if ( in_array( $categories[$k]->term_id, $args[‘selected_cats’] ) ) {
$checked_categories[] = $categories[$k];
unset( $categories[$k] );
}
}
*/This plugin is working with wordpress 3.0.The only issue that i found is conflict with jquery because this plugin uses mootool.So check this plugin after removing jquery from your theme.
Forum: Plugins
In reply to: [Plugin: Audio Player] Audio Player and Google ChromeI am also facing the same problem.
Plz chk it
https://horo.jagranjunction.com/2010/04/05/5-??????-?????-??????/Forum: Plugins
In reply to: Installation problem of wordbooker plugin with wpmuyes i want to enable it globally for all blogs.