nsathees
Forum Replies Created
-
Forum: Hacks
In reply to: how to insert in database on pressing the submit button in php with in wordpreswhere do you want to insert the data? It is best to create a table within WP database and insert the data to that table. You can use wp-query to do that.
Forum: Fixing WordPress
In reply to: Can't Upload media file on my blogmake the upload directory writable (777)
Forum: Fixing WordPress
In reply to: Index…The WordPress themes are divided in header.php, footer.php, sidebar.php and index.php
So you need to edit all or some of them to get the desired design. The styles are located in style.css
Forum: Fixing WordPress
In reply to: Custom Content Types and CategoriesYou have to get the category of a post and query for the post from that category.
Forum: Fixing WordPress
In reply to: category name changed and posts not foundtry reassigning the category under edit post
Forum: Fixing WordPress
In reply to: New post, 2nd column blanktry drag and drop.
Forum: Themes and Templates
In reply to: aligning the drop-down menuuse text-align: left; in style.css line 310
Forum: Themes and Templates
In reply to: Pagination doesn't show upAccording to your code you are displaying 2 posts. If you have the default setting in admin area “post to display = 10 then the navigation will not show up. Try setting it to 1 and check it out!
Forum: Themes and Templates
In reply to: Add hr after every second postDeclare a variable and count the post. on even number add hr.
$i = 0;with in loop > at the loop end
$i++; if ($i % 2) { // odd number } else { echo '<br />'; }Forum: Installing WordPress
In reply to: Can't access homepage after installationIt is working. Clear your cache. In FF & Chrome Ctrl+F5.
Forum: Installing WordPress
In reply to: Can't list my categoriesis that plug-in compatible with the WP 3.2.1 and the WP 3.2.1 requires PHP 5 and above. So check the minimum requirement of WP 3.2.1 and the Plug-in is compatible with this version of WP.
Forum: Themes and Templates
In reply to: interphase lost my log.inPost your URL here so that members of this forum could help you out.
Forum: Themes and Templates
In reply to: First comment count appearing separate from postClass comments-link do not have any CSS associated with that. Try creating styles such as width, height and overflow.
Forum: Themes and Templates
In reply to: How do I get my own avatar/gravatar on my blog?Forum: Everything else WordPress
In reply to: How Setup the Default Path of Browse ServerHello, this is a WordPress forum. Please post you question at the appropriate forum with more detail.