tamilsweet
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Include individual pageLogin to WordPress admin or dashboard.
Under Settings => Reading
Change Front page displays to “Static Page” and select the new page in the drop down list to show in home page. Also you need to select the page where normal posts can be displayed.Forum: Fixing WordPress
In reply to: Installing plugins on seperate sub domainsI doubt if its possible.
Forum: Fixing WordPress
In reply to: Is there a way to edit the categories page?Category pages use archive.php file to display the content. You can edit that to add image. But that would also affect Archive for day, month, year, tags, author in most templates.
Forum: Alpha/Beta/RC
In reply to: 2.8 beta widget bugWidgets are working properly for me. I’m using 2.8 Beta 2
Forum: Fixing WordPress
In reply to: Blank page appears after posting a commentI guess, this could be due to improper update of WP from previous version!
Please check this!Forum: Fixing WordPress
In reply to: Problem with sidebar (Picture Included)Do you have more than 1 sidebar?
If yes, the recent post widget might have been added in any other sidebar and so its disabled here.Forum: Plugins
In reply to: Looking for a plugin like this, but betterHi lowlight,
I would like to help you add new feature to the existing plugin. suggest a nice name so that i can modify and publish here 🙂Forum: Plugins
In reply to: Write Page sidebar, dbx_post_sidebar problemUse submit_postbox filter.
eg.add_action('submitpost_box', 'wptp_sidebar'); function wptp_sidebar() { echo "<p> Hello! This is test message. </p>"; }?>