Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Product Gallery changed behaviorWhat you described usually means you have some JS issues. Post a URL.
Forum: Plugins
In reply to: [WooCommerce] Custom attributes on catalog page?has_attributes method returns a boolean true or false…So if your new class is called $_product assuming you used the abstract method of $_product = get_product( $id ); then your code would look something like this:
if ( $_product->has_attributes() ) { echo $_product->get_attribute( 'tagline' ); }Forum: Plugins
In reply to: [WooCommerce] Custom attributes on catalog page?Yes the product class has a method called “has_attributes” which you can use.
Forum: Plugins
In reply to: [WooCommerce] View Cart on single product pageThis requires quite a bit of coding as what you want is “ajax add to cart” on single products page. I have already mentioned this to the developers and they welcome me to do a pull request for them but I currently just don’t have the time to do so. When I do free up, I will definitely submit my pull request for this.
Forum: Plugins
In reply to: [WooCommerce] Finding or Setting ID numberIf you look at the backend products listing, you can see the ID of each one. Just hover your mouse over the product name.
Forum: Plugins
In reply to: [WooCommerce] Change add to cart label after clickYou can still do it but would probably require you to customize the template view in question and add a check for what is in the cart at the time if in the cart, add CSS class or change the text completely.
Forum: Plugins
In reply to: [WooCommerce] Automatically add product categories to custom menusNo, if you want to retain the ability to use the backend wp menus, you need to use a custom walker class…
Forum: Plugins
In reply to: [WooCommerce] Use PayPal to take cards without a PP accountAs stated here -> https://www.paypal.com/cgi-bin/webscr?cmd=p/mer/WAX_landing-outside
Forum: Plugins
In reply to: [WooCommerce] Automatically add product categories to custom menusYou can probably do this by extending the walker menu class.
Forum: Plugins
In reply to: [WooCommerce] Add to Cart Missing for Product VariationsTrans4: this is not a WC plugin issue. It is with your theme. Ask them to update their theme to be compatible with the latest WC plugin version.
Forum: Plugins
In reply to: [WooCommerce] Add to Cart Missing for Product VariationsTrans4: if you go to the demo page of your theme, you can see it works fine. Hence I asked if you were sure you’re using the latest build of your theme. Have you tried contacting them?
Forum: Plugins
In reply to: [WooCommerce] Change add to cart label after clickIf you use ajax add to cart in category view, it does that already. It adds a class of “added” to the button. So using that class you can manipulate it…
The link works for me…try again.
I believe you can use the Gravity Forms Product Add-on plugin.
Forum: Plugins
In reply to: [WooCommerce] Add to Cart missing on variations productYou posted this on another thread and I asked you if you’re using the latest theme version.