Greetings!
Because I am using a certain theme, the code to search and replace for comments to work with the bridge:
Code:
Find this code (or similar code indicating the comment section of your template):
<?php wp_link_pages(); ?>
<!-- <?php comments_popup_link(__('0 Comments'), __('1 Comments'), __('% Comments')); ?>
Do not appear to exist. The only similar strings I have found, were located in 3 separate theme files:
archive.php:
Code:
<?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?>
blog.php:
Code:
<?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?>
page_section.php:
Code:
<?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?>
Other lines with the word 'comment' contained within:
index.php:
Code:
<?php comments_template(); // Get wp-comments.php template ?>
So I'm at a loss for which I am supposed to be replacing to get comments on vB to post to WP.
Does any of this info sound like it might be the right line to replace? 3 of the strings are identical, and I am assuming that the archive.php string wouldn't be the one.
Thanks so much!
~D