prasadgupte
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Trouble adding HTML code to sidebar text widgetYeah I’m facing the same issue.
I even tried the HTML Javascript Adder widget, but that doesn’t work too! I had used this plugin before to save HTML!
I also tried different browsers: IE, Moz & Chrome are all dumb to that request!
I too will settle with coding into the sidebar, but at the cost of violating WP design principles!Regards,
PrasadForum: Fixing WordPress
In reply to: [Plugin: Easy AdSense] new version gives Authorisation errorWe don’t know Manoj!
Just auto-upgraded the plugin on WP 2.7.1 and got error about the default.php
Re-activated the plugin and everything was back!Forum: Themes and Templates
In reply to: Adding comments to pagesThis didn’t really work for Pixeled. So I figured this out after some playing around… Wrapped a COMMENT div around the PHP function call, also added CLEARED div because that’s the way it renders on posts. Hope this helps
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="topPost"> <h2 class="topTitle"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2> <div class="topContent"><?php the_content('(continue reading...)'); ?></div><strong> <div class="cleared"></div> <div id="comment"><div class="cleared"></div> <?php comments_template(); ?> </div></strong> </div> <!-- Closes topPost --> <?php endwhile; ?> <?php else : ?>Forum: Themes and Templates
In reply to: Adding comments to pagesHow do I restrict this only for pages with the ‘Allow Comments’ option enabled?