logo

$20
Community Links Feed Plugin Not Working Properly

I have a tutorial blog here: http://wikispacetutorials.com.

Scroll down, and look at the right sidebar Community Links Feed plugin I have in there. The More link is working, and leads to the Wikispaces Community Feeds Link page that I have set up, but the Add Link link is not working in the right sidebar, nor the Wikispaces Community Feeds Link page.

I have it installed locally on my Mac, and it works fine, so not sure if there's a conflict somewhere between plugins on wikispacetutorials.com.

So, I basically need someone to help me figure out how to get the Add Link button to work...

I'm not sure what I need to send you, or what else I need to post here that might help you find the solution, but just let me know.

Thanks!

Spencer Barfuss | 12/12/09 at 4:14pm | Edit


(3) Possible Answers Submitted...

  • avatar
    Last edited:
    12/13/09
    6:57pm
    Dan Davies says:

    There is a javascript error on that page.

    I would assume it's because of this code in the source:

    <script type='text/javascript' src='http://wikispacetutorials.com/blog/wp-content/plugins/wp-minify/min/?f=blog/wp-content/themes/zinepress/unitpngfix/unitpngfix.js,blog/wp-includes/js/jquery/jquery.js,blog/wp-content/plugins/community-links-feed/assets/jquery-1.3.2.min.js,blog/wp-content/plugins/community-links-feed/assets/theme.js,blog/wp-content/plugins/wp-minify/cache/0cd26ca5683c988458ab0c609f4129d7.js'></script>


    Some how those various javascript files have all been referenced in the same script tags, and probably just need separating out - with jQuery first.

  • avatar
    Last edited:
    12/12/09
    5:44pm
    Dan Davies says:

    Sorry, to clarify "separating out", I mean take that chunk of

    <script>...</script>


    and put each javascript file between its own script tags, like so:

    <script type='text/javascript' src='http://wikispacetutorials.com/blog/wp-content/plugins/wp-minify/min/?f=blog/wp-content/themes/zinepress/unitpngfix/unitpngfix.js</script>
    <script type="text/javascript" src="blog/wp-includes/js/jquery/jquery.js"></script>


    And so on.

  • avatar
    Last edited:
    12/12/09
    6:00pm
    Dan Davies says:

    The javascript is being combined through the WP Minify plugin, which is used to combine javascript files into one to reduce HTTP requests and boost performance. I'd like to minify as many javascript files as I can into one to really boost the performance of my site.

    I just separated out the theme.js, and the default jQuery.js file, and it now seems to work.

    Wondering if there's a way to combine them all though, and still get it to work...


    Just to keep the support in here in case other users have something to add...

    I suppose it might be a matter of trial and error to see how many you can minify, and what order (if it works like that) you minify them in before it stops working, and then identify the error.

This question has expired.





Current status of this question: Completed