Viewing 15 replies - 61 through 75 (of 120 total)
  • I got another question, is it possible to change the positioning of the $topic_text to another location different than under the comments section in the single.php/class.ipbcomments.php files?

    Here’s how it looks like:

    https://www.hardwaremx.com/noticias/28002/

    Instead of showing the link to IPS’ topic between the related entries and the disqus comment system, could it be set to show after the tag and the categories meta?

    Here’s my single.php for reference:

    Pastebin

    Any pointers will be apreciated.

    Thank yo so much!

    Plugin Author Beer

    (@beer)

    @vpador, it’s not really a bug in the sitemap generator but it’s probably just the author of that code didn’t declare his class methods ‘static’ and php is complaining in strict mode. The featured image warning didn’t seem that serious either. I think it’s just the IPB code is making errors that are otherwise invisible noticeable to you. It isn’t a conflict between the plugins. Hope this makes sense. If you turned on WP_DEBUG you’d notice a bunch more, even in the WP code itself. If you let the authors of the other plugins know, they’d probably fix those minor issues and the notices would disappear.

    You could move the comments block
    in class.ipbcomments.php around line 66, the register_comments method:
    add_filter( 'comments_array', array($this,'show_forum_comments') );

    above is the current hook/filter into the comments array, you could change that to appear somewhere else I guess. Look in the Codex for hooks/filters and maybe change ‘comments_array’ to something else.

    You could extract custom postmeta and put the $topic_link somewhere else In your theme, maybe something like this: (untested)

    <?php $meta = get_post_meta($post_ID,'forum_topic_url');
    if ( ! empty($meta) ) : $topic_link = current($meta); ?>
    <a href="<?php echo $topic_link; ?>">Follow the Discussion in Progress</a>
    <?php endif; ?>

    Thanks for replying, I actually created a topic on Google Sitemap plugins’ forum, hope they can take a quick look on it, I’ll try your suggestions and will let you know, thank you so much you rule! ??

    Hello,

    I don’t know if this is related, but somehow the forums posts dissapeared on WP Post’s comments since a few days ago and I’m also getting a lot of this in the error_log:

    Pastebin

    https://www.hardwaremx.com/news/28221/

    BTW, I haven’t modified the class.ipbcomments.php yet, so it’s a standard plugin install.

    Thank you.

    kotaco

    (@kotaco)

    Any plans on bringing this to 3.2?

    bigga

    (@bigga)

    I can’t understand… Does it work with WordPress 3.2.1? If it is, in what way should I paste the path to my forum where initdata.php is located? Like this “/sitename.ru/www/forum/”? The posts are not published in ipb forum after the new topic is made in wp… Help me anybody… Is there any ways to automatically post new topics to forum?..

    Hi there !

    I am really interested in this plugin, which sadly does not work with the latest version of WordPress (3.3.1). I hope you’ll update it, ready to make a donation… ??

    This is really the thing I was looking for ! ??

    Plugin Author Beer

    (@beer)

    I didn’t realize it wasn’t working with WP updates. I’ll take a look at it.

    Plugin Author Beer

    (@beer)

    I’ve updated my WP to 3.3.1 just now.

    Testing it on my machine, the plugin seems to work. I have a few changes on my version however, that haven’t been pushed over to the repository. I’ll update that and you can see if it fixes whatever issue you are having.

    Plugin Author Beer

    (@beer)

    It’s very slow going connecting and updating the wordpress plugin repository, but 1.3.0 of this plugin is there, just waiting for it to finish or show up.

    I just installed your plugin and i noticed the following issues:

    1) If i set “Link text location” before or after comments i don’t see any link text
    2) Forum comments are not showing up: i tried first to allow, then to disallow comments in the article, but still i couldn’t see them nor the “No comments” default value.

    Beside that news are correctly duplicating in my forum, so it seems it’s just a comments issue.
    I made my tests with two different 3.3.1 WP and a 3.2.3 IPB.

    Thanks for your help, your plugin is really promising and i’ll be happy to make a donation if everything works correctly ??

    Oh and, btw, is there a mail i can write to, since I have some custom requests for this mod that i’m willing to pay, if necessary?

    Thanks again

    Plugin Author Beer

    (@beer)

    I’ll remove and reinstall the plugin from the WP Plugin Repository to my test blog and compare. Upon first installation, it’s possible it waits for the cache time to expire before it fetches the comments or displays the No comments value.

    Did it work if you select before/after content?

    If I select before/after i do see the link text, but still no forum comments…!

    If i read correctly in class.ipbcomments cache is set 180 seconds: i waited more or less 15 mins, but nothing changed. Moreover, as i said, i can’t even see the “No comments” default value.

    Thanks

    Plugin Author Beer

    (@beer)

    Ok so it did post to the appropriate forum. It isn’t retrieving the comments. It won’t display the comment values either. That sounds like it might be related to your WP side of things. Do you have a comment form being displayed? Are comments enabled? Can you post a comment on WP and it shows up?

Viewing 15 replies - 61 through 75 (of 120 total)
  • The topic ‘Announcement for IP.Board Comments for WordPress’ is closed to new replies.