eddioot
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Nextgen gallery] RSS does not show the imageHi DoubleSixx,
sorry for my late response.
It should be the media-rss.php
Forum: Plugins
In reply to: [Plugin: Nextgen gallery] RSS does not show the imageI solved it, in case anybody else needs this, i changed the following line:
$out .= $indent . "\t<description><![CDATA[" . nggGallery::i18n($desc, 'pic_' . $image->pid . '_description') . "]]></description>\n";to:
$out .= $indent . "\t<description><![CDATA[<a href='" . $image->imageURL . "' target='_blank'><img src='". $image->thumbURL ."'></a><br />" . nggGallery::i18n($desc) . "]]></description>\n";Forum: Plugins
In reply to: [Plugin: Nextgen gallery] RSS does not show the imageHi DoubleSixx,
the problem is that i would like the thumbnails to be displayed in the RSS message 🙂
I believe the following part does the output but I have no idea what to edit there:
$title = html_entity_decode(stripslashes($image->alttext)); $desc = html_entity_decode(stripslashes($image->description)); $thumbwidth = $ngg_options['thumbwidth']; $thumbheight = ($ngg_options['thumbfix'] ? $ngg_options['thumbheight'] : $thumbwidth); $out = $indent . "<item>\n"; $out .= $indent . "\t<title><![CDATA[" . nggGallery::i18n($title, 'pic_' . $image->pid . '_alttext') . "]]></title>\n"; $out .= $indent . "\t<description><![CDATA[" . nggGallery::i18n($desc, 'pic_' . $image->pid . '_description') . "]]></description>\n"; $out .= $indent . "\t<link><![CDATA[" . $image->get_permalink() . "]]></link>\n"; $out .= $indent . "\t<guid>image-id:" . $image->pid . "</guid>\n"; $out .= $indent . "\t<media:content url='" . esc_url($image->imageURL) . "' medium='image' />\n"; $out .= $indent . "\t<media:title><![CDATA[" . nggGallery::i18n($title, 'pic_' . $image->pid . '_alttext') . "]]></media:title>\n"; $out .= $indent . "\t<media:description><![CDATA[" . nggGallery::i18n($desc, 'pic_' . $image->pid . '_description') . "]]></media:description>\n"; $out .= $indent . "\t<media:thumbnail url='" . esc_url($image->thumbURL) . "' width='" . $thumbwidth . "' height='" . $thumbheight . "' />\n"; $out .= $indent . "\t<media:keywords><![CDATA[" . nggGallery::i18n($tag_names) . "]]></media:keywords>\n"; $out .= $indent . "\t<media:copyright><![CDATA[Copyright (c) " . get_option("blogname") . " (" . site_url() . ")]]></media:copyright>\n"; $out .= $indent . "</item>\n";Forum: Plugins
In reply to: [Plugin: Facebook connect] cannot log outHi ZilverDragOn,
i use this plugin now:
http://www.oneall.com/services/It takes some time to configure but it works great!
Good luck
Forum: Fixing WordPress
In reply to: Problem with paging and new postsOk, i thought it was a general question so i did not include the link 🙂 The link is http://picturepalace.eu
In the future the intention is that a lot of people will upload on the site so the problem will get bigger. Now i only noticed it a couple of times when i was browsing the website and someone uploaded a couple of posts.
Maybe also usefull, i use the paginate plugin. But the same thing also happened with the default wordpess paging.
Forum: Fixing WordPress
In reply to: Custom hidden profile field dynamically filledOk i got the $user variable working
Forum: Hacks
In reply to: Delete post without access to wp-adminHi Jonathan,
The posts are created through a form on the frontend. It is a website where everyone can register and upload. I don’t want them to see the wordpress backend 🙂
I will look into your suggestion!
Thanks.
Forum: Fixing WordPress
In reply to: Background Color Stays YellowLooks good now. You changed it?
Forum: Localhost Installs
In reply to: Connecting to localhost…You can set the status to resolved on the right side 🙂
Forum: Fixing WordPress
In reply to: Most recent post not displayingHi nate,
do you have the link to your website?
Could you also provide the query that the page is using? Or is it the default index.php?
Forum: Fixing WordPress
In reply to: Background Color Stays YellowI see a yellow background for a second and then it turns black.
In you CSS file you can have a look at html{ } or body{ }
Is there a background-color set? If not, you can add:
html{
background-color:#000;
}Forum: Fixing WordPress
In reply to: Blog showing server's ip instead of Domain NameCould you provide a link to your website?
You can have a look in your header.php of your theme if there is anything between <title> </title>
Forum: Plugins
In reply to: [Plugin: Facebook connect] cannot log outI was able to resolve it by using another plugin for it.
Forum: Fixing WordPress
In reply to: using php variable in loopIt was indeed fixed by using custom fields.
Forum: Fixing WordPress
In reply to: Author page not working when username has spaceI was able to fix this by using the following url for the author pages:
<a href="<?php echo home_url() . '/author/' . get_the_author_meta( 'user_nicename', wp_get_current_user()->ID ); ?>the user_nicename did the trick 🙂