Syndicated content from Cisco - loads double jQuery

Permalink
I am trying to help a Communications company add Cisco syndicated content that they subscribed to to their Concrete5 website. I have the option of adding it with PHP or an iFrame. I would much rather do the PHP option but when I put their PHP code in, it pulls the html content from cisco which includes loading jQuery again and that breaks the page.

I cannot prevent the cisco content from trying to load jQuery.

Does anybody have any ideas on how to get this to work?

Here is the code that pulls the cisco content:

<?php
 // Do not edit below this line
 // ---------------------------------------------------------------------------
 $SVQuerystring = "";
 foreach (($_GET) as $SVGetKey => $SVGetValue) {
   $SVQuerystring = $SVQuerystring.$SVGetKey."=".$SVGetValue."&";
 }
 $SVURL = "http://cisco.sharedvue.net/sharedvue/pull/";
 $SVURL = $SVURL."?svhost=".$_SERVER["HTTP_HOST"];
 if (!empty($_SERVER["PHP_SELF"])) {
   $SVURL = $SVURL.$_SERVER["PHP_SELF"];
  } else if (!empty($_SERVER["SCRIPT_NAME"])) {
   $SVURL = $SVURL.$_SERVER["SCRIPT_NAME"];
 }
 if (strlen($SVQuerystring) > 0) {

 
synlag replied on at Permalink Reply
synlag
well, view does not implement removeHeaderItem(), so the way to prevent your page from loading concrete5 core jquery would maybe work like described at

http://www.concrete5.org/documentation/developers/system/performanc...
mailrth replied on at Permalink Reply
thanks for the fast reply - I found another solution that worked
jkgibbs replied on at Permalink Reply
jkgibbs
To remove the jQuery from the syndicated content, you just need access to the SharedVue Partner Console. Once there, you can select "look/feel" and change the "skin" of the content. None of the alternative skins use jQuery.

Also, you need to make sure that the syndication code is correcthttp://www.typewith.me/bmBj9QuDq2...

Note: I am an employee of SharedVue, the company that made the syndication technology for Cisco.