From 623d1308c0dbab0998509a6915f08a201b451e56 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 2 Aug 2013 11:06:51 +0400 Subject: af_natgeo: remove some unneeded elements --- plugins/af_natgeo/init.php | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'plugins/af_natgeo') diff --git a/plugins/af_natgeo/init.php b/plugins/af_natgeo/init.php index 7dc7116dd..72354c1c8 100644 --- a/plugins/af_natgeo/init.php +++ b/plugins/af_natgeo/init.php @@ -27,8 +27,16 @@ class Af_NatGeo extends Plugin { $basenode = false; if ($doc) { + $xpath = new DOMXPath($doc); + $basenode = $doc->getElementById("content_mainA"); + $trash = $xpath->query("//*[@class='aside' or @id='livefyre' or @id='powered_by_livefyre' or @class='social_buttons']"); + + foreach ($trash as $t) { + $t->parentNode->removeChild($t); + } + if ($basenode) { $article["content"] = $doc->saveXML($basenode); $article["plugin_data"] = "natgeo,$owner_uid:" . $article["plugin_data"]; -- cgit v1.2.3