<?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 for BuyNowShop</title> <atom:link href="http://buynowshop.com/comments/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>Comment on Five-Minute-Fix&#8482; 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>Comment on Five-Minute-Fix&#8482; 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>Comment on Five-Minute-Fix&#8482; 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>Comment on Five-Minute-Fix&#8482; 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>Comment on Five-Minute-Fix&#8482; 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>Comment on Five-Minute-Fix&#8482; 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>Comment on Multi by Edward Caissie</title><link>http://buynowshop.com/themes/desk-mess-mirrored/multi/comment-page-1/#comment-13757</link> <dc:creator>Edward Caissie</dc:creator> <pubDate>Thu, 10 May 2012 22:32:54 +0000</pubDate> <guid
isPermaLink="false">http://buynowshop.com/?page_id=1836#comment-13757</guid> <description>@Joel - Your theme looks more like the original &quot;Desk Mess&quot; and not like my &quot;Desk Mess Mirrored&quot; or this Child-Theme; although I would suspect you would find a more &quot;core&quot; WordPress functions and features supported in my versions, I cannot speak to what the actual differences would be.</description> <content:encoded><![CDATA[<p>@Joel &#8211; Your theme looks more like the original &#8220;Desk Mess&#8221; and not like my &#8220;Desk Mess Mirrored&#8221; or this Child-Theme; although I would suspect you would find a more &#8220;core&#8221; WordPress functions and features supported in my versions, I cannot speak to what the actual differences would be.</p> ]]></content:encoded> </item> <item><title>Comment on Multi by Joel A. Ohmer</title><link>http://buynowshop.com/themes/desk-mess-mirrored/multi/comment-page-1/#comment-13739</link> <dc:creator>Joel A. Ohmer</dc:creator> <pubDate>Wed, 09 May 2012 13:59:14 +0000</pubDate> <guid
isPermaLink="false">http://buynowshop.com/?page_id=1836#comment-13739</guid> <description>i am using Desk Mess on my site (with some customizations), and i LOVE it. Will this version of the theme give me any improvements over what i have now?</description> <content:encoded><![CDATA[<p>i am using Desk Mess on my site (with some customizations), and i LOVE it. Will this version of the theme give me any improvements over what i have now?</p> ]]></content:encoded> </item> <item><title>Comment on BNS Corner Logo by Edward Caissie</title><link>http://buynowshop.com/plugins/bns-corner-logo/comment-page-1/#comment-13696</link> <dc:creator>Edward Caissie</dc:creator> <pubDate>Sun, 06 May 2012 14:28:55 +0000</pubDate> <guid
isPermaLink="false">http://buynowshop.com/?page_id=519#comment-13696</guid> <description>@Tim - Glad it&#039;s working out for you ... and thank you for the compliments, too! That &quot;custom-style&quot; code should be found in all of my plugins (eventually ... as in with their next update if it does not already exist).</description> <content:encoded><![CDATA[<p>@Tim &#8211; Glad it&#8217;s working out for you &#8230; and thank you for the compliments, too! That &#8220;custom-style&#8221; code should be found in all of my plugins (eventually &#8230; as in with their next update if it does not already exist).</p> ]]></content:encoded> </item> <item><title>Comment on BNS Corner Logo by Tim Stewart</title><link>http://buynowshop.com/plugins/bns-corner-logo/comment-page-1/#comment-13694</link> <dc:creator>Tim Stewart</dc:creator> <pubDate>Sun, 06 May 2012 10:14:27 +0000</pubDate> <guid
isPermaLink="false">http://buynowshop.com/?page_id=519#comment-13694</guid> <description>THANKS THANKS THANKS
Works perfectly. I can&#039;t believe I made this noob mistake! But I was pleased to learn about the bns-corner-logo-custom-style.css file and have created that. Appreciate the help. The plug-in (IMHO) is now perfect</description> <content:encoded><![CDATA[<p>THANKS THANKS THANKS<br
/> Works perfectly. I can&#8217;t believe I made this noob mistake! But I was pleased to learn about the bns-corner-logo-custom-style.css file and have created that. Appreciate the help. The plug-in (IMHO) is now perfect</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 27/51 queries in 0.031 seconds using disk: basic

Served from: buynowshop.com @ 2012-05-21 06:19:20 -->
