<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>Wordpress and Webdesign Forum go41 &#187; Tag: video - Recent Posts</title>
		<link>http://forum.go41.de/tags/video</link>
		<description>How To, tips, php and css code for your WordPress site</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Feb 2012 17:52:16 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://forum.go41.de/rss/tags/video" rel="self" type="application/rss+xml" />

		<item>
			<title>Annie on "Arthemia, language"</title>
			<link>http://forum.go41.de/topic/arthemia-language#post-1032</link>
			<pubDate>Tue, 13 Sep 2011 10:13:58 +0000</pubDate>
			<dc:creator>Annie</dc:creator>
			<guid isPermaLink="false">1032@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Hi Joern!<br />
It worked - again - like a charm!<br />
The dotted line reapered, but disapered in another place, when I made these changes.<br />
I probably will come back :)<br />
Thank you for all your help!!!<br />
Best regards Annie
</p>]]></description>
					</item>
		<item>
			<title>Joern on "Arthemia, language"</title>
			<link>http://forum.go41.de/topic/arthemia-language#post-1031</link>
			<pubDate>Tue, 13 Sep 2011 08:52:20 +0000</pubDate>
			<dc:creator>Joern</dc:creator>
			<guid isPermaLink="false">1031@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Hi Annie, you are right, there is no category assigned to display.<br />
The line generating this text is in header.php, in my copy of this theme it looks like this:</p>
<pre><code>&#60;div class=&#34;label&#34;&#62;&#60;a href=&#34;&#60;?php echo get_category_link($ar_headline);?&#62;&#34;&#62;&#60;?php single_cat_title(); ?&#62; &#38;raquo;&#60;/a&#62;&#60;/div&#62;</code></pre>
<p>I can't open your site to see if you use the same version, on colorlabs demo it starts with div .. h2 class="label" ..</p>
<p>anyway, your site can't read 'get_category_link($ar_headline)' and the respective 'single_cat_title'</p>
<p>you might delete this line completely, the title of this post should be beside the image anyway - I would do this.</p>
<p>You are free to write anything there too, like:<br />
<pre><code>&#60;div class=&#34;label&#34;&#62;&#38;raquo; latest post&#60;/div&#62;</code></pre>
<p>the &#38; r a q uo ; is actually the &#62;&#62; sign, this sample has no 'a href' link around, it will display just the text.</p>
<p>The dotted line: I should see your site to find out where it is...<br />
In colorlabs demo it's an image set in style.css<br />
#paged-list .clearfloat {<br />
	background:url(images/dots_content.gif) repeat-x bottom;<br />
    padding-bottom:1px;<br />
	}<br />
you might have removed this dots_content.gif from images folder or changed div id="paged-list" to another name?<br />
If I see your site I could tell, but I get redirected to your login screen...
</p>]]></description>
					</item>
		<item>
			<title>Annie on "Arthemia, language"</title>
			<link>http://forum.go41.de/topic/arthemia-language#post-1030</link>
			<pubDate>Mon, 12 Sep 2011 22:00:54 +0000</pubDate>
			<dc:creator>Annie</dc:creator>
			<guid isPermaLink="false">1030@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Hi Joern! </p>
<p>Thank you!<br />
It was not so complicated, I just removed the whole list.<br />
Now there are just some cosmetic issues with my web-page, then I'm ready to go.<br />
Maybe you can help me there also?! </p>
<p>Now that the headline category is changed to 'all category's the text on top, where the category was, is empty, there is just this sign: &#62;&#62;<br />
It would look better if the headline of the post was in that place. Is it possible? Or could I write 'latest post' after the &#62;&#62; sign? </p>
<p>Something strange happened when I moved the list. The dotted line, that separated the 3 and 4 latest-posts-excerpt-list disappeared?! Is there any way to fix it? </p>
<p>The rest of it I think I will find in you answers to other people in here :) </p>
<p>Thank you so much Joern, you are a life savior! </p>
<p>Best regards Annie
</p>]]></description>
					</item>
		<item>
			<title>Joern on "Arthemia, language"</title>
			<link>http://forum.go41.de/topic/arthemia-language#post-1029</link>
			<pubDate>Fri, 09 Sep 2011 14:54:45 +0000</pubDate>
			<dc:creator>Joern</dc:creator>
			<guid isPermaLink="false">1029@http://forum.go41.de/</guid>
			<description><![CDATA[<p>it's going to be complicated ..</p>
<p>I just tried to 'read' index.php again and realized, that the first post here (your second oldest post) is formatted different, it shows: the_content ...</p>
<p>the following posts show this post again, because there is an offset=1 again.</p>
<p>ALLWAYS KEEP A COPY OF A WORKING INDEX.PHP !!</p>
<p>ONE WAY:<br />
you might replace the line with ... the_content with<br />
<pre><code>&#60;?php the_excerpt() ?&#62;</code></pre>
<p>to show the excerpt here only<br />
now you should also change all lines with $myOffset = 1; to $myOffset = 2; to let the list below start with the third post</p>
<p>ANOTHER WAY:<br />
just remove this top post in your lower list completely and leave the list as it is.<br />
This post with the full content got a kind of border around, it is in div id="front-list"<br />
all other posts are in div id="paged-list"</p>
<p>to remove this one post in front-list (your second post in an extra framed part) you might remove the full query for it in index.php</p>
<p>In my unchanged index.php it is this part you could just delete completely:<br />
<pre><code>&#60;?php if(!is_paged()) { ?&#62;	

	&#60;div id=&#34;front-list&#34;&#62;	

	&#60;?php $width = get_settings ( &#34;cp_thumbWidth_LatestPost&#34; );
		$height = get_settings ( &#34;cp_thumbHeight_LatestPost&#34; );
		if ( $width == 0 ) { $width = 150; }
		if ( $height == 0 ) { $height = 150; }
	?&#62;

	&#60;?php query_posts(array(
			&#39;category__not_in&#39; =&#62; array($ar_headline,$ar_featured),
			&#39;showposts&#39; =&#62; 1,
			)); ?&#62;

	&#60;?php while (have_posts()) : the_post(); ?&#62;		

	&#60;div class=&#34;clearfloat&#34;&#62;
	&#60;h3 class=&#34;cat_title&#34;&#62;&#60;?php the_category(&#39;, &#39;); ?&#62; &#38;raquo;&#60;/h3&#62;
	&#60;span class=&#34;title&#34;&#62;&#60;a href=&#34;&#60;?php the_permalink() ?&#62;&#34; rel=&#34;bookmark&#34;&#62;&#60;?php the_title(); ?&#62;&#60;/a&#62;&#60;/span&#62;
	&#60;div class=&#34;meta&#34;&#62;&#60;?php the_time(&#39;D, j/m/y&#39;) ?&#62; &#8211; &#60;?php the_time(&#39;G:i&#39;) ?&#62; &#124; &#60;?php comments_popup_link(&#39;No Comment&#39;, &#39;One Comment&#39;, &#39;% Comments&#39;);?&#62;&#60;/div&#62;		

    &#60;?php $status = get_settings ( &#34;cp_postThumb&#34; );
		$status2 = get_settings ( &#34;cp_thumbAuto&#34; );

		if (( $status2 != &#34;first&#34; ) &#124;&#124; ( $status != &#34;no&#34; )) { ?&#62;

	&#60;?php $values = get_post_custom_values(&#34;Image&#34;);
	if (isset($values[0])) { ?&#62;
	&#60;p&#62;&#60;img src=&#34;&#60;?php echo bloginfo(&#39;template_url&#39;); ?&#62;/scripts/timthumb.php?src=&#60;?php echo get_option(&#39;home&#39;); ?&#62;/&#60;?php
$values = get_post_custom_values(&#34;Image&#34;); echo $values[0]; ?&#62;&#38;w=&#60;?php echo $width; ?&#62;&#38;h=&#60;?php echo $height; ?&#62;&#38;zc=1&#38;q=100&#34;
alt=&#34;&#60;?php the_title(); ?&#62;&#34; class=&#34;left&#34; width=&#34;&#60;?php echo $width; ?&#62;px&#34; height=&#34;&#60;?php echo $height; ?&#62;px&#34;  /&#62;&#60;/p&#62;
	&#60;?php } ?&#62;

	&#60;?php } ?&#62;

	&#60;?php the_content(&#39;Read the whole story &#38;raquo;&#39;); ?&#62;
	&#60;/div&#62;

      	&#60;?php endwhile; ?&#62;
	&#60;?php wp_reset_query(); ?&#62;

	&#60;/div&#62;

	&#60;?php } ?&#62;</code></pre>
<p>above starts with 'if(!is_paged()) {' eg: if it is not paged - on first page only<br />
and the end is the closing bracket for that stuff '}'</p>
<p>keeping a backup of a working index.php you can't do anything bad to your wordpress installation, just put it back if a change doesn't work.</p>
<p>btw: did you replace your timthumb.php with an updated version??<br />
see <a href="http://forum.go41.de/topic/security-vulnerability-in-timthumbphp-of-some-themes" rel="nofollow">http://forum.go41.de/topic/security-vulnerability-in-timthumbphp-of-some-themes</a>
</p>]]></description>
					</item>
		<item>
			<title>Annie on "Arthemia, language"</title>
			<link>http://forum.go41.de/topic/arthemia-language#post-1028</link>
			<pubDate>Fri, 09 Sep 2011 13:26:58 +0000</pubDate>
			<dc:creator>Annie</dc:creator>
			<guid isPermaLink="false">1028@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Hi Joern!<br />
Thank you!</p>
<p>1. worked - its now the newest post, despite what category its in. But I would like to exclude the featured category. It must only be showed on featured, nowhere else.<br />
2. I have a One-column list, but the first post i shown in full lenght. I would like them all to be just excerpts.</p>
<p>You can see my page here: <a href="http://www.familjan.fo/" rel="nofollow">http://www.familjan.fo/</a></p>
<p>Annie
</p>]]></description>
					</item>
		<item>
			<title>Joern on "Arthemia, language"</title>
			<link>http://forum.go41.de/topic/arthemia-language#post-1027</link>
			<pubDate>Fri, 09 Sep 2011 09:37:44 +0000</pubDate>
			<dc:creator>Joern</dc:creator>
			<guid isPermaLink="false">1027@http://forum.go41.de/</guid>
			<description><![CDATA[<p>to make it short (eg: I didn't test)</p>
<p>to show your latest post in headline, no matter which category:<br />
in header.php is the query for headline posts, this query checks for the category you choose for headlines, should be now like this:</p>
<pre><code>&#60;?php
		//Get value from Admin Panel
			$cp_categories = get_categories(&#39;hide_empty=0&#39;);
			$ar_headline = get_settings( &#34;ar_headline&#34; );
			if( $ar_headline == 0 ) { $ar_headline = $cp_categories[0]-&#62;cat_ID; }
			query_posts( &#39;showposts=1&#38;cat=&#39; . $ar_headline );
		 	?&#62;</code></pre>
<p>change just the query_posts line to get:</p>
<pre><code>&#60;?php
		//Get value from Admin Panel
			$cp_categories = get_categories(&#39;hide_empty=0&#39;);
			$ar_headline = get_settings( &#34;ar_headline&#34; );
			if( $ar_headline == 0 ) { $ar_headline = $cp_categories[0]-&#62;cat_ID; }
			query_posts( &#39;showposts=1&#39; );
		 	?&#62;</code></pre>
<p>this should show your latest post only ..</p>
<p>Featured stay as you set the category ..</p>
<p>In the 'front-list' in index.php are all posts from your featured and headline category excluded, so these post will not show up twice.<br />
BUT your post from the new headline, your latest post, will show (if it's not in headline or featured category)<br />
You could avoid this by starting the front-list at the second post only (offset=1)<br />
this is done in index.php where you should have now:<br />
<pre><code>&#60;?php query_posts(array(
			&#39;category__not_in&#39; =&#62; array($ar_headline,$ar_featured),
			&#39;showposts&#39; =&#62; 1,
			)); ?&#62;</code></pre>
<p>here you add the offset like this:<br />
<pre><code>&#60;?php query_posts(array(
			&#39;category__not_in&#39; =&#62; array($ar_headline,$ar_featured),
			&#39;showposts&#39; =&#62; 1,
			&#39;offset&#39;=&#62;1,
			)); ?&#62;</code></pre>
<p>now fron-list will start with the second post.</p>
<p>question no.2 I do not get: 'without having to set in the 'The More Tag' every time'<br />
where is latest posts?</p>
<p>question no.3 video embed code, is this for the latest video post? no idea, try any youtube embed code you find under the clips in youtube</p>
<p>Comments off: here <a href="http://wordpress.org/support/topic/how-to-remove-comments-off-section" rel="nofollow">http://wordpress.org/support/topic/how-to-remove-comments-off-section</a> you could find a solution, Justin Tadlock says:<br />
Using false removes the "Comments Off" message.<br />
<pre><code>&#60;?php comments_popup_link(&#39;No Comment&#39;, &#39;One Comment&#39;, &#39;% Comments&#39;, &#39;comments-link&#39;, false); ?&#62;</code></pre>
<p>you have to change this where ever the 'comments_popup_link' is called, try it in index.php in the front-list part.
</p>]]></description>
					</item>
		<item>
			<title>Annie on "Arthemia, language"</title>
			<link>http://forum.go41.de/topic/arthemia-language#post-1026</link>
			<pubDate>Thu, 08 Sep 2011 16:25:03 +0000</pubDate>
			<dc:creator>Annie</dc:creator>
			<guid isPermaLink="false">1026@http://forum.go41.de/</guid>
			<description><![CDATA[<p>By the way, I have seen your guide to:<br />
Modify the front page view of arthemia to show most recent (newest) post as 'headline', next four older posts as 'featured' and the subsequent posts continuing below.</p>
<p>I donÂ´t want to change 'featured', just show most recent (newest) post as 'headline' and the subsequent posts continuing below.</p>
<p>:)<br />
Annie
</p>]]></description>
					</item>
		<item>
			<title>Annie on "Arthemia, language"</title>
			<link>http://forum.go41.de/topic/arthemia-language#post-1025</link>
			<pubDate>Thu, 08 Sep 2011 13:49:28 +0000</pubDate>
			<dc:creator>Annie</dc:creator>
			<guid isPermaLink="false">1025@http://forum.go41.de/</guid>
			<description><![CDATA[<p>OK, the webpage went back to normal, I calmed down, and decited to continue with Arthemia :)<br />
But there is still no contact to the ColorLab support theme :(<br />
I have four questions more, and then Im done. (I hope ;)<br />
Can you help me please?</p>
<p>1.I would like to have the latest post where the 'headline' in the headline spoiler is.<br />
2. I would like to only have excerpt in the 'latest post list' (without having to set in the 'The More Tag' every time)<br />
3.Where do I find the video 'Embed Code'? (What is it?)<br />
4. How do I remove 'Comments off'</p>
<p>I changed the language, it worked like a charm, even without the 'non-latin-codes'<br />
Thank you!</p>
<p>Best regards Annie
</p>]]></description>
					</item>
		<item>
			<title>Annie on "Arthemia, language"</title>
			<link>http://forum.go41.de/topic/arthemia-language#post-1024</link>
			<pubDate>Mon, 05 Sep 2011 23:24:19 +0000</pubDate>
			<dc:creator>Annie</dc:creator>
			<guid isPermaLink="false">1024@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Hi Joern!<br />
Thank you so much :)<br />
I do have so many problems with ColorLabs and Arthemia thou, when I opend my page today, everythig was a complete mess, and I canÂ´t get in contact with them. Their webpage just sends me in loops.<br />
So I think I will try to find another theme. This is impossible :(<br />
To sad, because it is beautifull, and I did pay for it.<br />
Best regards Annie
</p>]]></description>
					</item>
		<item>
			<title>Joern on "Arthemia, language"</title>
			<link>http://forum.go41.de/topic/arthemia-language#post-1023</link>
			<pubDate>Mon, 05 Sep 2011 00:01:58 +0000</pubDate>
			<dc:creator>Joern</dc:creator>
			<guid isPermaLink="false">1023@http://forum.go41.de/</guid>
			<description><![CDATA[<p>hi Annie, that's quite some work, you have to edit the theme files in arthemia-premium folder.</p>
<p>let's say you take index.php or header.php (headline/featured), you should find as example:</p>
<pre><code>&#60;?php comments_popup_link(&#39;No Comment&#39;, &#39;One Comment&#39;, &#39;% Comments&#39;);?&#62;</code></pre>
<p>In german I would change to:<br />
<pre><code>&#60;?php comments_popup_link(&#39;kein Kommentar&#39;, &#39;ein Kommentar&#39;, &#39;% Kommentare&#39;);?&#62;</code></pre>
<p>same way it works with all english text you like to change to your language, like:</p>
<pre><code>&#60;?php the_content(&#39;Read the whole story &#38;raquo;&#39;); ?&#62;</code></pre>
<p>where you could change 'Read the whole story'</p>
<p>having 'Umlauts' you might have to use html entities like:</p>
<pre><code>for this: fjÃ¸ruti, fÃ½rati

write in html encoded: fj&#38;oslash;ruti, f&#38;yacute;rati</code></pre>
<p>(hope to see a difference after saving..)</p>
<p>best would be to find any theme localized to fo and look how they did it
</p>]]></description>
					</item>
		<item>
			<title>Annie on "Arthemia, language"</title>
			<link>http://forum.go41.de/topic/arthemia-language#post-1022</link>
			<pubDate>Sun, 04 Sep 2011 19:08:39 +0000</pubDate>
			<dc:creator>Annie</dc:creator>
			<guid isPermaLink="false">1022@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Hi Joern!<br />
I can see that you are a very helpfull guy. I bought Arthemia, by ColorLabs, unfurtunally I cant get in to their support site, so I wonderet if you could help me.<br />
1.The usual wordpress lauange transmitter dosnÂ´t work for me in Arthemia.<br />
I would like to change the "comments", "read full text" and so on to Faroese (wich means manually), how do I go about doing that?<br />
Sincerly Annie
</p>]]></description>
					</item>
		<item>
			<title>Joern on "add latest video from a post in WordPress sidebar"</title>
			<link>http://forum.go41.de/topic/add-latest-video-from-a-post-in-wordpress-sidebar#post-838</link>
			<pubDate>Wed, 16 Feb 2011 15:54:19 +0000</pubDate>
			<dc:creator>Joern</dc:creator>
			<guid isPermaLink="false">838@http://forum.go41.de/</guid>
			<description><![CDATA[<p>An addition:<br />
Here we take an embeded video from a post in a certain category. The code above in sidebarclip.php loads by default only one latest post. You can however change:<br />
query_posts('posts_per_page=1&#38;cat=$category_id');<br />
to load let's say 4 posts where each has another video embeded:<br />
query_posts('posts_per_page=4&#38;cat=$category_id');<br />
now you load 4 players.</p>
<p>The size of the player you can set in sidebarclip.php:<br />
	'width'=&#62;300,<br />
	'height'=&#62;250 ));<br />
to another value<br />
use style.css to arrange that players as you like - first you have to get them to show up..
</p>]]></description>
					</item>
		<item>
			<title>Joern on "Add a YouTube user channel video to WordPress"</title>
			<link>http://forum.go41.de/topic/add-a-youtube-user-channel-video-to-wordpress#post-837</link>
			<pubDate>Wed, 16 Feb 2011 15:47:57 +0000</pubDate>
			<dc:creator>Joern</dc:creator>
			<guid isPermaLink="false">837@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Above in this thread you get your user-channel feed from YouTube as feed. Either you display 4 stills linking to the video in youtube (this changes if you add something to your channel)<br />
or<br />
you load the latest clip in a player as alternative. In this second choice with the player you could load more clips than one, to be set in this line:<br />
php if ($success): foreach ($feed-&#62;get_items(0, 1) as $item)<br />
get_items(0, 1) reads get from the first item (0) just one clip (1)</p>
<p>you might try get_items(0, 4) to get 4 latest clips and or change the player size from '300','250' to any other size you like</p>
<p>That's about your user channel feed.</p>
<p>In the new post I use a very different way, taking any video of anyone from your latest post in the category you choose.<br />
That is explained here:<br />
<a href="http://forum.go41.de/topic/add-latest-video-from-a-post-in-wordpress-sidebar" rel="nofollow">http://forum.go41.de/topic/add-latest-video-from-a-post-in-wordpress-sidebar</a>
</p>]]></description>
					</item>
		<item>
			<title>raf_79 on "Add a YouTube user channel video to WordPress"</title>
			<link>http://forum.go41.de/topic/add-a-youtube-user-channel-video-to-wordpress#post-836</link>
			<pubDate>Wed, 16 Feb 2011 15:11:54 +0000</pubDate>
			<dc:creator>raf_79</dc:creator>
			<guid isPermaLink="false">836@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Thank you for the coding to add the latest video from a WP post on your site into a sidebar widget. This information will be very useful for me. :)</p>
<p>I'd like to ask, and pray I don't offend you, does this mean that you can only pull those 4 stills (as the coding in an earlier post in this thread shows how to do) in from offsite using SimplePie outside a widget? What I was hoping to accomplish was pulling the stills from my YouTube channel and have them update automatically with the latest video stills from there as a teaser on my main site, but control the display pages. Is what I'm asking possible, and if it is, how would I accomplish this?</p>
<p>Again, I thank you for your patience and I'm truly grateful for your continued help.
</p>]]></description>
					</item>
		<item>
			<title>Joern on "Add a YouTube user channel video to WordPress"</title>
			<link>http://forum.go41.de/topic/add-a-youtube-user-channel-video-to-wordpress#post-835</link>
			<pubDate>Tue, 15 Feb 2011 12:42:49 +0000</pubDate>
			<dc:creator>Joern</dc:creator>
			<guid isPermaLink="false">835@http://forum.go41.de/</guid>
			<description><![CDATA[<p>I opened a new topic thread for that:</p>
<p> <a href="http://forum.go41.de/topic/add-latest-video-from-a-post-in-wordpress-sidebar">add latest video from a post in WordPress sidebar</a></p>
<p>other ways to get video code from WordPress post or resize a video here</p>
<p><a href="http://forum.go41.de/topic/get-the-oembed-code-of-a-video-in-a-wp-29-post-from-postmeta">get the oembed code of a video in a WP 2.9 post from postmeta</a></p>
<p>or here</p>
<p><a href="http://forum.go41.de/topic/change-width-and-height-in-oembed-code-on-the-fly-wp-29">Change width and height in oembed code on the fly in WordPress</a>
</p>]]></description>
					</item>

	</channel>
</rss>

