| | | |

FIX for NextGEN Gallery thumbnails not displaying properly in IE8

Problem: On IE8, NextGEN Gallery thumbnails are either missing completely or the thumbnails are all squeezed together. WordPress theme: Twenty Eleven child theme. Solution*: I added the following code to my child theme’s CSS: These pixel amounts are specifically for my needs. Make sure the height and width is the same as in Gallery >…

| | |

How to: Display WooCommerce Product Categories using NextGEN Gallery in Sidebar Widget

PageLines Framework: v2.1.1 WordPress: v3.3.1 NOTE: these edits have to be re-done every time the plugin is updated! Goal: Display 4 WooCommerce Product Categories (images, not links) in a custom Widget in the main content area of the Home page. The image thumbnails must link to specific URLs. The 4 Product Category images must be…

| | |

WordPress Tip: Imbedding NextGEN Gallery Into WP e-Commerce Description Field

Problem: Can’t embed NextGEN Gallery short code (eg: [ nggallery id=1 ]) into WP e-Commerce’s product description field. Partial solution (for version 3.7.7 only): File location: wp-content/plugins/wp-e-commerce/wpsc-includes/wpsc_query.php Line 278 Replace the return statement: return wpautop(wptexturize( wp_kses(stripslashes($wpsc_query->product[‘description’]), $description_allowed_tags ))); WITH: $description2 = wpautop(wptexturize( wp_kses(stripslashes($wpsc_query->product[‘description’]), $description_allowed_tags ))); $description2 = apply_filters(‘the_content’, $description2); $description2 = str_replace(‘]]>’, ‘]]>’, $description2); return…