chairbeat
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Minifying HTML in a WordPress themeI’m wondering the same thing as @rubal – is there an .htaccess snippet that will serve minified css / js files? I agree plugins are not optimal.
Forum: Fixing WordPress
In reply to: Upgraded to 3.5 – Database Update FailsThis post just saved me big time. Thank you guys!
Forum: Plugins
In reply to: WP ecommerce product category title also shows as first product titleHeyya linkfr – don’t paste it at the beginning or end of the file, rather paste it at the end of your php loop call like so 🙂 calling this with the loop seems to foce it to work.
Your normal product loop would look like this:
<?php while (wpsc_have_products()) : wpsc_the_product(); ?>Take that line and replace it with this:
<?php while (wpsc_have_products()) : wpsc_the_product(); wpsc_the_product_title();?>Forum: Plugins
In reply to: WP ecommerce product category title also shows as first product titleThanks so much for this! I was having the same problem and this was the most promising google result, and it paid off. 🙂
Forum: Themes and Templates
In reply to: If statement for all pages except arrayHey, thank you alchymyth, That seems to work well. I now am using
if ( !is_page(array(116)) && is_page() || !'products' == get_post_type())