Basic Installation tips. Read the full AJAXed Wordpress instructions for more information.
- Download aWP, unzip and upload the entire aWP folder and its contents to your Wordpress plugins folder (/wp-content/plugins/), and activate the plugin in Wordpress.z
- Note that I said upload the entire folder.
- To Enable threaded comments, select the checkbox on the "comments" tab of the admin panel.
- To use inline comments on single post pages, select the "simple comments" checkbox on the "comments" tab of the AWP admin panel.
- To paginate posts without using more tags, select a "split mode" such as "By word count" on the "post and pages" tab of the admin panel and set a default number of words or paragraphs.
If you want to add inline comments or a comment form to your index.php or archive.php file:
- Open your index.php (or post.php depending on your theme) in your themes folder.
- To display comments in-line add
<?php do_action('awp_comments'); ?> where you want the comments to appear when they are loaded and add <?php do_action('awp_comments_link');?> where you want the show/hide comments link to appear.
- To display the add comment form in-line add
<?php do_action('awp_commentform'); ?> where you want the add comment box to appear and add <?php do_action('awp_commentform_link');?> where you want the show/hide add comment box link to appear.
- Save the file and upload it to your current theme folder. This process can be repeated with other files.
If you need more help, feel free to ask