Thread Starter
henner
(@henner)
Great, this works now…Thank you very very much, you’re making a really great job…
Henner
Hi beesoft, how did you fix the problem, it seems to be working now. It is not working on my side…first i didn’t see the translate string –> i remove the display: none entries from the ajax….php, but now the JS popup is not opening…
Thread Starter
henner
(@henner)
Now, i detected it is only not woring in the side bar.
I have the follwoing code:
$url = ‘<url of feed>’;
$rss = fetch_rss($url);
if ( $rss ) {
$i = 0;
echo ”
- <h2>Deviantphoto</h2>”;
echo ”
“;
foreach ($rss->items as $item) {
$title = $item[title];
$link = $item[link];
$desc = $item[description];
$desc = change_specialchars($desc);
if($i < $count) {
echo ”
- $title
\n”;
$i++;
}
}echo “
</p>
<br>”;
}
else {
echo “An error occured! ” .
“<br>Error Message: ” . magpie_error();
}
It is working in the dashboard but not in the sidebar.
Can somebody help me?