Daynah
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: XML Parsing Error: junk after document elementIf you check the source code of http://techkumar.com, you will see that the <Div> tags are also there. Having the <div> tags before the <!DOCTYPE> tag will definitely not be validated HTML.
Have you tried opening the actual plugin file in a text editor and changing it there? Or you can re-download the plugin and override your current copy. Hope that works!
Can you link us to your site so we can help? 🙂
Forum: Fixing WordPress
In reply to: getting google adsense to work…helpIf your website is not widget-ready, you can add the Google Adsense code in the theme itself.
Just go to your Control Panel -> Appearance -> Editor
(This will allow you to edit your current theme.)Now say you want to add a Google Adsense banner in the header.
Find header.php on the right side and click on it.Now add your Google Adsense code anywhere after the <body> tag. Test it out to position it to where you want it to be.
Other files you can add your Google Adsense code to are page.php, sidebar.php, footer.html, etc.
Good luck!
Forum: Plugins
In reply to: wordpress views per pageYou can try WP-PostViews. It’s very simple.
http://lesterchan.net/wordpress/downloads/Forum: Fixing WordPress
In reply to: Making header image a link?I can’t seem to find this theme to installed, but here’s my guess.
This is the part that prints your text (site description).
<?php bloginfo('description'); ?>If you want to have an image and link instead, you can replace the above with:
<a href="<?php echo get_option('home'); ?>"><img src="<?php bloginfo('template_directory'); ?>/images/REPLACE_IMAGE.jpg" alt="Header Image" border="0" /></a>Hope that works. Be sure to add your header image inside the “images” folder of your theme.
Also check if there’s a header.php file in your template too.
I hope this page helps. Good luck! 🙂
http://codex.wordpress.org/Widgetizing_ThemesForum: Plugins
In reply to: Is this possible?I’m examining your website. It looks like “Post a Ride” is an actual post from your blog. And all the rides are posts as well.
I don’t think there’s an easy plugin for this yet, but another way you can do this is by having your users register on your blog as a contributor. Let them know that they need to write a little blurb and upload a 307x251px image, and select the specific category. And you can review them and approve/edit any submitted posts.
Another way is asking someone to write you a plugin. 🙂
Is your template widget-ready? You may want to look into these plugins:
http://wordpress.org/extend/plugins/recent-posts-plugin/
http://wordpress.org/extend/plugins/recent-posts/Forum: Plugins
In reply to: Looking to make my post url’s seo friendly!Hello jddavin!
To make your URLs SEO-friendly, a plugin is not needed, but instead, you need to change your Permalinks.
To do this, follow these steps:
1) Log into your WordPress Admin Control Panel
2) Click on “Settings” on the top right side
3) Click on “Permalinks” in the second top navigation
4) Select the kind of setting you would like. I would suggest “Day and name” or “month and name”
5) Click on “Save Changes”Hope that works for you. 🙂
Forum: Your WordPress
In reply to: Slapped together a new look, what do you think of it?The website layout is great. 🙂 There’s a small glitch though. If you view “Similar Posts” there’s an extra –> after the post.
Besides that, I like it! Love all the little comments around the headers. 🙂
Forum: Plugins
In reply to: Widget Plugin installation helpIf I’m reading your first post correctly, I think the files are in the wrong places. Everything (except the classical and default folders) should be in a folder called “widgets” which is inside “plugins”, which is inside “wp-content”.
http://automattic.com/code/widgets/use/
wp-content -> plugins -> widgets -> scriptaculousWhich means all the javascript files will be widgets folder as well.
After uploading the files here, you will have to go to Admin -> Plugins
and turn on each widget.
Then go to Presentation -> Sidebar Widgets
Then drag and drop the widgets you want on your page.
“Sidebar Widgets” will only be turned on for themes with widgets.
Forum: Your WordPress
In reply to: New Photoblog ThemeOhmygoodness, that theme is fantastic!! I love it. 😀
Forum: Fixing WordPress
In reply to: Flash header? Help please.Hello.. You’ll have to edit the theme.
Presentation -> Theme Editor
Click on “Header”
Then look for <div id=”page”><div id=”header”>`
Just put your swf code in there, and it should work. 🙂
Forum: Fixing WordPress
In reply to: Listing more than 20 comments in mass edit modeHello there!
If you want to change the default of 20 comments, you would have to change the two occurange of ’20’ in the file wp-admin/edit-comments.php
The first would be line 66
$offset = (int) $_GET['offset'] * 20;and the second one is line 70:
$comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_approved = '0' OR comment_approved = '1' ORDER BY comment_date DESC LIMIT $offset,20");Just change it to the desired number and it should work fine. 🙂
Forum: Plugins
In reply to: New guestbook plugin: RumWallWow, it looks fantastic. Will this be available for WP 2.0 soon? 🙂 I’d love to try it out.