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:
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) {
Viewing 15 lines of 29 lines. View entire code block.
thanks for the fast reply - I found another solution that worked
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.
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.
http://www.concrete5.org/documentation/developers/system/performanc...