<?xml version="1.0" encoding="UTF-8"?><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"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: Five-Minute-Fix&#8482;</title> <atom:link href="http://buynowshop.com/five-minute-fix/feed/" rel="self" type="application/rss+xml" /><link>http://buynowshop.com</link> <description>WordPress administration, installation, and development.</description> <lastBuildDate>Wed, 16 May 2012 14:32:33 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.4-beta4-20800</generator> <item><title>By: Edward Caissie</title><link>http://buynowshop.com/five-minute-fix/comment-page-1/#comment-13841</link> <dc:creator>Edward Caissie</dc:creator> <pubDate>Wed, 16 May 2012 14:32:33 +0000</pubDate> <guid
isPermaLink="false">http://buynowshop.com/?page_id=702#comment-13841</guid> <description>@TE5LA - If you are interested in having all of these modifications done (for a fee) please fee free to contact us regarding our WordPress Services.</description> <content:encoded><![CDATA[<p>@TE5LA &#8211; If you are interested in having all of these modifications done (for a fee) please fee free to contact us regarding our WordPress Services.</p> ]]></content:encoded> </item> <item><title>By: Edward Caissie</title><link>http://buynowshop.com/five-minute-fix/comment-page-1/#comment-13840</link> <dc:creator>Edward Caissie</dc:creator> <pubDate>Wed, 16 May 2012 14:30:53 +0000</pubDate> <guid
isPermaLink="false">http://buynowshop.com/?page_id=702#comment-13840</guid> <description>@TE5LA - My last comment was not necessarily a solution so much as a suggestion. What you are looking for does not fall under my &quot;Five-Minute-Fix&quot; idea. Although this appears fairly straight-forward it will still require more than a simply line or two of code to do.</description> <content:encoded><![CDATA[<p>@TE5LA &#8211; My last comment was not necessarily a solution so much as a suggestion. What you are looking for does not fall under my &#8220;Five-Minute-Fix&#8221; idea. Although this appears fairly straight-forward it will still require more than a simply line or two of code to do.</p> ]]></content:encoded> </item> <item><title>By: TE5LA</title><link>http://buynowshop.com/five-minute-fix/comment-page-1/#comment-13822</link> <dc:creator>TE5LA</dc:creator> <pubDate>Tue, 15 May 2012 01:42:40 +0000</pubDate> <guid
isPermaLink="false">http://buynowshop.com/?page_id=702#comment-13822</guid> <description>I also noticed that when condensed, the line breaks are ignored and the text all runs together.  Since this is a poetry site, this looks bad.  I would prefer it just keep the format as is and remove some lines.</description> <content:encoded><![CDATA[<p>I also noticed that when condensed, the line breaks are ignored and the text all runs together.  Since this is a poetry site, this looks bad.  I would prefer it just keep the format as is and remove some lines.</p> ]]></content:encoded> </item> <item><title>By: TE5LA</title><link>http://buynowshop.com/five-minute-fix/comment-page-1/#comment-13821</link> <dc:creator>TE5LA</dc:creator> <pubDate>Tue, 15 May 2012 01:40:01 +0000</pubDate> <guid
isPermaLink="false">http://buynowshop.com/?page_id=702#comment-13821</guid> <description>I did the replacement code as you suggested and it did leave the sticky full and condensed the other posts, however, the condensed post were not able to be viewed completely.  There is no link to expand them and they don&#039;t expand even when you click the link and open it in another page.As far as limiting the length of the page, I found you can specify how many posts will appear on the front page in the options.</description> <content:encoded><![CDATA[<p>I did the replacement code as you suggested and it did leave the sticky full and condensed the other posts, however, the condensed post were not able to be viewed completely.  There is no link to expand them and they don&#8217;t expand even when you click the link and open it in another page.</p><p>As far as limiting the length of the page, I found you can specify how many posts will appear on the front page in the options.</p> ]]></content:encoded> </item> <item><title>By: Edward Caissie</title><link>http://buynowshop.com/five-minute-fix/comment-page-1/#comment-13809</link> <dc:creator>Edward Caissie</dc:creator> <pubDate>Mon, 14 May 2012 12:42:33 +0000</pubDate> <guid
isPermaLink="false">http://buynowshop.com/?page_id=702#comment-13809</guid> <description>@TE5LA - First, thank you for the compliment! There are several aspects of the theme and how WordPress works you are addressing here ...
- To show excerpts only on the homepage but have sticky posts show in full should be more or less straight-forward: change the conditional in the main loop (desk-mess-mirrored.php) from:
[code]if ( is_home() &#124;&#124; is_front_page() &#124;&#124; is_single() &#124;&#124; is_page() &#124;&#124; ( is_author() &amp;&amp; ( $count == 1 ) ) ) {[/code]
to: [code]if ( is_sticky() ) {[/code]
- To have a similar effect on the post-format loops you will have to add some conditional code to the effect: if `is_sticky` show `the_content` else show `the_excerpt`.
- Adding a page navigation bar at the bottom would require a bit more code than this comment would be able to convey properly, but you might look at copying the menu code in the header into the bottom of the loops as a starting point.
- Limiting the output on the main page would likely be best managed by adding a `home.php` template using the default loop code as its base.NOTE: All of this should be done in a Child-Theme, too ... and remember to back-up all of your files before making any edits.</description> <content:encoded><![CDATA[<p>@TE5LA &#8211; First, thank you for the compliment! There are several aspects of the theme and how WordPress works you are addressing here &#8230;<br
/> - To show excerpts only on the homepage but have sticky posts show in full should be more or less straight-forward: change the conditional in the main loop (desk-mess-mirrored.php) from:</p><pre class="brush: plain; title: ; notranslate">if ( is_home() || is_front_page() || is_single() || is_page() || ( is_author() &amp;&amp; ( $count == 1 ) ) ) {</pre><p>to:<pre class="brush: plain; title: ; notranslate">if ( is_sticky() ) {</pre><p>- To have a similar effect on the post-format loops you will have to add some conditional code to the effect: if `is_sticky` show `the_content` else show `the_excerpt`.<br
/> - Adding a page navigation bar at the bottom would require a bit more code than this comment would be able to convey properly, but you might look at copying the menu code in the header into the bottom of the loops as a starting point.<br
/> - Limiting the output on the main page would likely be best managed by adding a `home.php` template using the default loop code as its base.</p><p>NOTE: All of this should be done in a Child-Theme, too &#8230; and remember to back-up all of your files before making any edits.</p> ]]></content:encoded> </item> <item><title>By: TE5LA</title><link>http://buynowshop.com/five-minute-fix/comment-page-1/#comment-13800</link> <dc:creator>TE5LA</dc:creator> <pubDate>Sun, 13 May 2012 22:52:57 +0000</pubDate> <guid
isPermaLink="false">http://buynowshop.com/?page_id=702#comment-13800</guid> <description>I read another post of a user who wanted not to show the entire posts on the homepage, but and excerpt only.  I looked at all the files for &quot;the_content&quot;, but it appears only in the files:desk-mess-mirrored.php
desk-mess-mirrored-aside.php
desk-mess-mirrored-quote.php
desk-mess-mirrored-status.phpChanging &quot;the_content&quot; to &quot;the_excerpt&quot; in the first one did indeed produce excerpts on the main page, however, it broke the formatting on other pages, made entire areas disappear, and there was no &quot;read more&quot; link, so it was impossible to view the entire post, even if you clicked the post to view on a single page.The other thing is, I want the first &quot;Sticky&quot; post on the main page to display fully, but the remaining posts below it to be excerpts.Also, how can I limit the length of the main page&#039;s posts and perhaps have a page navigation bar at the bottom?Perhaps I am asking a lot here, but I like this theme a lot.</description> <content:encoded><![CDATA[<p>I read another post of a user who wanted not to show the entire posts on the homepage, but and excerpt only.  I looked at all the files for &#8220;the_content&#8221;, but it appears only in the files:</p><p>desk-mess-mirrored.php<br
/> desk-mess-mirrored-aside.php<br
/> desk-mess-mirrored-quote.php<br
/> desk-mess-mirrored-status.php</p><p>Changing &#8220;the_content&#8221; to &#8220;the_excerpt&#8221; in the first one did indeed produce excerpts on the main page, however, it broke the formatting on other pages, made entire areas disappear, and there was no &#8220;read more&#8221; link, so it was impossible to view the entire post, even if you clicked the post to view on a single page.</p><p>The other thing is, I want the first &#8220;Sticky&#8221; post on the main page to display fully, but the remaining posts below it to be excerpts.</p><p>Also, how can I limit the length of the main page&#8217;s posts and perhaps have a page navigation bar at the bottom?</p><p>Perhaps I am asking a lot here, but I like this theme a lot.</p> ]]></content:encoded> </item> <item><title>By: Edward Caissie</title><link>http://buynowshop.com/five-minute-fix/comment-page-1/#comment-12107</link> <dc:creator>Edward Caissie</dc:creator> <pubDate>Sat, 25 Feb 2012 16:45:19 +0000</pubDate> <guid
isPermaLink="false">http://buynowshop.com/?page_id=702#comment-12107</guid> <description>@Krysania - Thank you. I will definitely add the idea to the project&#039;s todo list.</description> <content:encoded><![CDATA[<p>@Krysania &#8211; Thank you. I will definitely add the idea to the project&#8217;s todo list.</p> ]]></content:encoded> </item> <item><title>By: Krysania</title><link>http://buynowshop.com/five-minute-fix/comment-page-1/#comment-11985</link> <dc:creator>Krysania</dc:creator> <pubDate>Wed, 22 Feb 2012 09:31:50 +0000</pubDate> <guid
isPermaLink="false">http://buynowshop.com/?page_id=702#comment-11985</guid> <description>Thank you for answering :) Let me know if you include it in a future release. I&#039;ll sent back to you the completed translation file when you do. Or maybe I&#039;ll look at how to do it, but I don&#039;t really know the structure of your theme.
Have a nice day :)</description> <content:encoded><![CDATA[<p>Thank you for answering <img
src='http://buynowshop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Let me know if you include it in a future release. I&#8217;ll sent back to you the completed translation file when you do. Or maybe I&#8217;ll look at how to do it, but I don&#8217;t really know the structure of your theme.<br
/> Have a nice day <img
src='http://buynowshop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>By: Edward Caissie</title><link>http://buynowshop.com/five-minute-fix/comment-page-1/#comment-11983</link> <dc:creator>Edward Caissie</dc:creator> <pubDate>Wed, 22 Feb 2012 03:22:36 +0000</pubDate> <guid
isPermaLink="false">http://buynowshop.com/?page_id=702#comment-11983</guid> <description>@Krysania - Although there is no actual French translation currently available I do greatly appreciate you offering one; and, even as WordPress offers core functionality to use translation &quot;files&quot; they are required to be properly prepared in a specific format.Although the theme is written with the intent for translations to be made and I am more than happy to include a proper translation file with future releases I do not currently provide the &quot;pot&quot; file that is required to create these translation files at this time.</description> <content:encoded><![CDATA[<p>@Krysania &#8211; Although there is no actual French translation currently available I do greatly appreciate you offering one; and, even as WordPress offers core functionality to use translation &#8220;files&#8221; they are required to be properly prepared in a specific format.</p><p>Although the theme is written with the intent for translations to be made and I am more than happy to include a proper translation file with future releases I do not currently provide the &#8220;pot&#8221; file that is required to create these translation files at this time.</p> ]]></content:encoded> </item> <item><title>By: Krysania</title><link>http://buynowshop.com/five-minute-fix/comment-page-1/#comment-11977</link> <dc:creator>Krysania</dc:creator> <pubDate>Tue, 21 Feb 2012 22:22:12 +0000</pubDate> <guid
isPermaLink="false">http://buynowshop.com/?page_id=702#comment-11977</guid> <description>Hi,Ok this is not really a five minute fix but I wanted to ask anyway. Is there a simple way to translate the theme &quot;Desk Mess Mirrored&quot; that I missed ? I&#039;d rather not mess with all the code and not being able to get the next update of your theme (which btw I really like ^^). But still, I&#039;m french, all of my friend/visitors are french, the blog is french, so &#039;Posted by&#039; is not pratical nor consistent.If there is none but you wish to internationalize your theme, I may provide the french translation for you. Otherwise, well I&#039;ll manage ^^Krysania</description> <content:encoded><![CDATA[<p>Hi,</p><p>Ok this is not really a five minute fix but I wanted to ask anyway. Is there a simple way to translate the theme &#8220;Desk Mess Mirrored&#8221; that I missed ? I&#8217;d rather not mess with all the code and not being able to get the next update of your theme (which btw I really like ^^). But still, I&#8217;m french, all of my friend/visitors are french, the blog is french, so &#8216;Posted by&#8217; is not pratical nor consistent.</p><p>If there is none but you wish to internationalize your theme, I may provide the french translation for you. Otherwise, well I&#8217;ll manage ^^</p><p>Krysania</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic (User agent is rejected)
Database Caching 8/46 queries in 0.026 seconds using disk: basic

Served from: buynowshop.com @ 2012-05-21 06:29:23 -->
