Title: Roy Ho's Replies - page 37 | WordPress.org

---

# Roy Ho

  [  ](https://wordpress.org/support/users/splashingpixelscom/)

 *   [Profile](https://wordpress.org/support/users/splashingpixelscom/)
 *   [Topics Started](https://wordpress.org/support/users/splashingpixelscom/topics/)
 *   [Replies Created](https://wordpress.org/support/users/splashingpixelscom/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/splashingpixelscom/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/splashingpixelscom/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/splashingpixelscom/engagements/)
 *   [Favorites](https://wordpress.org/support/users/splashingpixelscom/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 541 through 555 (of 1,437 total)

[←](https://wordpress.org/support/users/splashingpixelscom/replies/page/36/?output_format=md)
[1](https://wordpress.org/support/users/splashingpixelscom/replies/?output_format=md)
[2](https://wordpress.org/support/users/splashingpixelscom/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/splashingpixelscom/replies/page/3/?output_format=md)…
[36](https://wordpress.org/support/users/splashingpixelscom/replies/page/36/?output_format=md)
37 [38](https://wordpress.org/support/users/splashingpixelscom/replies/page/38/?output_format=md)…
[94](https://wordpress.org/support/users/splashingpixelscom/replies/page/94/?output_format=md)
[95](https://wordpress.org/support/users/splashingpixelscom/replies/page/95/?output_format=md)
[96](https://wordpress.org/support/users/splashingpixelscom/replies/page/96/?output_format=md)
[→](https://wordpress.org/support/users/splashingpixelscom/replies/page/38/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Enable Add To Cart for specific products Not for all.](https://wordpress.org/support/topic/enable-add-to-cart-for-specific-products-not-for-all/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/enable-add-to-cart-for-specific-products-not-for-all/#post-3967742)
 * I don’t think you’re doing it correctly. What I said for you to do is assuming
   you already have setup the Men’s category and Women’s category. If you already
   did that, then in your menus, you just put those categories in. Don’t create 
   your own custom link. The categories is already in your options.
 * If you don’t see them, they are hidden. On the top right corner of your screen
   click the “screen options” and you will reveal all the possible widgets to add.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Authentication](https://wordpress.org/support/topic/authentication-3/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/authentication-3/#post-3974325)
 * Out of the box WC already has a login page. It’s “My Account” which is created
   for you when you installed the plugin.
 * However if you’re looking specifically for a widget, you can use any WP login
   widget and most of the widget plugins have a redirect option which you can set
   to your “My Account” page once they are logged in.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Custom single-product.php template for a specific product?](https://wordpress.org/support/topic/custom-single-productphp-template-for-a-specific-product/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/custom-single-productphp-template-for-a-specific-product/#post-3973858)
 * Well if you already have a working solution and just need to wrap a conditional
   around it, you can always use the trusted post global.
 *     ```
       global $post;
   
       // assume your product id is 1255
   
       if ( $post->ID === 1255 ) {
            // do your special code here.
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Woocommerce shop page line spacing issue](https://wordpress.org/support/topic/woocommerce-shop-page-line-spacing-issue/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/woocommerce-shop-page-line-spacing-issue/#post-3970195)
 * There are different ways to fix that issue based on how your theme/styles were
   intending to do.
 * For example in your all.css stylesheet you have this:
 *     ```
       .page-title { overflow:hidden; }
       ```
   
 * Removing that overflow will take care of that issue. But the question is why 
   is that overflow property there in the first place.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Enable Add To Cart for specific products Not for all.](https://wordpress.org/support/topic/enable-add-to-cart-for-specific-products-not-for-all/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/enable-add-to-cart-for-specific-products-not-for-all/#post-3967736)
 * Yes, go to your menus and simply drag the product category to your menu bar.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Wrong 'PHP Memory Limit' value in WC's System Status](https://wordpress.org/support/topic/wrong-php-memory-limit-value-in-wcs-system-status/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/wrong-php-memory-limit-value-in-wcs-system-status/#post-3973847)
 * That value is what WP is utilizing. To allocate more to WP, you would want to
   define that in your wp-config.php file.
 *     ```
       define('WP_MEMORY_LIMIT', '64M');
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Downloadable product – include variation](https://wordpress.org/support/topic/downloadable-product-include-variation/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/downloadable-product-include-variation/#post-3964222)
 * [@tryyourluck](https://wordpress.org/support/users/tryyourluck/) – seems these
   are your own plugins yes?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Paypal payment doesnt work.](https://wordpress.org/support/topic/paypal-payment-doesnt-work-1/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/paypal-payment-doesnt-work-1/#post-3971578)
 * Make sure your settings are not set to “sandbox” mode on your WC payment gateway
   settings.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Images on product page are showing up different sizes!](https://wordpress.org/support/topic/images-on-product-page-are-showing-up-different-sizes/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/images-on-product-page-are-showing-up-different-sizes/#post-3971575)
 * That is because you have this in your CSS:
 *     ```
       div.product div.images img { width:auto !important; }
       ```
   
 * That tells your site to fill the space up automatically to the size of the actual
   image that is being pulled. So if your image is 480px wide, it will be that wide.
 * So either you change that size setting in your WC settings, or change that CSS
   to:
 *     ```
       div.product div.images img { max-width:100%; }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Adding custom text box to product page](https://wordpress.org/support/topic/adding-custom-text-box-to-product-page/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/adding-custom-text-box-to-product-page/#post-3970974)
 * Perhaps this may help you -> [http://www.woothemes.com/products/gravity-forms-add-ons/](http://www.woothemes.com/products/gravity-forms-add-ons/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Product variation price not showing](https://wordpress.org/support/topic/product-variation-price-not-showing/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/product-variation-price-not-showing/#post-3970111)
 * If it works, then you have successfully isolated where the issue is coming from.
   Your theme.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Product variation price not showing](https://wordpress.org/support/topic/product-variation-price-not-showing/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/product-variation-price-not-showing/#post-3970102)
 * Just like any other theme, go to appearance->themes and activate 2012 theme.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Product variation price not showing](https://wordpress.org/support/topic/product-variation-price-not-showing/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/product-variation-price-not-showing/#post-3970092)
 * Switch to 2012 theme and see if it works.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Replace product short description (excerpt) with long description](https://wordpress.org/support/topic/replace-product-short-description-excerpt-with-long-description/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/replace-product-short-description-excerpt-with-long-description/#post-3228297)
 * functions.php of your theme folder.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] PayPal sandbox](https://wordpress.org/support/topic/paypal-sandbox-2/)
 *  [Roy Ho](https://wordpress.org/support/users/splashingpixelscom/)
 * (@splashingpixelscom)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/paypal-sandbox-2/#post-3968639)
 * I am pretty sure it wasn’t that because as stated, the Paypal sandbox is only
   allowed to take the accounts that was created within the Paypal. All others will
   not work.

Viewing 15 replies - 541 through 555 (of 1,437 total)

[←](https://wordpress.org/support/users/splashingpixelscom/replies/page/36/?output_format=md)
[1](https://wordpress.org/support/users/splashingpixelscom/replies/?output_format=md)
[2](https://wordpress.org/support/users/splashingpixelscom/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/splashingpixelscom/replies/page/3/?output_format=md)…
[36](https://wordpress.org/support/users/splashingpixelscom/replies/page/36/?output_format=md)
37 [38](https://wordpress.org/support/users/splashingpixelscom/replies/page/38/?output_format=md)…
[94](https://wordpress.org/support/users/splashingpixelscom/replies/page/94/?output_format=md)
[95](https://wordpress.org/support/users/splashingpixelscom/replies/page/95/?output_format=md)
[96](https://wordpress.org/support/users/splashingpixelscom/replies/page/96/?output_format=md)
[→](https://wordpress.org/support/users/splashingpixelscom/replies/page/38/?output_format=md)