Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Enable Add To Cart for specific products Not for all.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
In reply to: [WooCommerce] AuthenticationOut 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
In reply to: [WooCommerce] Custom single-product.php template for a specific product?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
In reply to: [WooCommerce] Woocommerce shop page line spacing issueThere 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
In reply to: [WooCommerce] Enable Add To Cart for specific products Not for all.Yes, go to your menus and simply drag the product category to your menu bar.
Forum: Plugins
In reply to: [WooCommerce] Wrong 'PHP Memory Limit' value in WC's System StatusThat 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
In reply to: [WooCommerce] Downloadable product – include variation@tryyourluck – seems these are your own plugins yes?
Forum: Plugins
In reply to: [WooCommerce] Paypal payment doesnt work.Make sure your settings are not set to “sandbox” mode on your WC payment gateway settings.
Forum: Plugins
In reply to: [WooCommerce] Images on product page are showing up different sizes!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
In reply to: [WooCommerce] Adding custom text box to product pagePerhaps this may help you -> http://www.woothemes.com/products/gravity-forms-add-ons/
Forum: Plugins
In reply to: [WooCommerce] Product variation price not showingIf it works, then you have successfully isolated where the issue is coming from. Your theme.
Forum: Plugins
In reply to: [WooCommerce] Product variation price not showingJust like any other theme, go to appearance->themes and activate 2012 theme.
Forum: Plugins
In reply to: [WooCommerce] Product variation price not showingSwitch to 2012 theme and see if it works.
functions.php of your theme folder.
Forum: Plugins
In reply to: [WooCommerce] PayPal sandboxI 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.