vankaa
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Multiple Woo Commerce Issues1. The products are displayed in 3 per line
All points sound more like design issues than WooCommerce ones. Try: https://wordpress.org/support/theme/trusted, too
Forum: Plugins
In reply to: [WooCommerce] How to install woocommerce on localhost?https://wordpress.org/about/ – about WordPress
https://codex.wordpress.org/Writing_a_Plugin -write a plugin.WooCommerce is a WordPress plugin – you read about it on the plugin page or use Google and search “what is WooCommerce”
https://codex.wordpress.org/Installing_WordPress – install WordPress
Forum: Plugins
In reply to: [WooCommerce] [REST API] variable product created without given attributesIt is very much possible that the problem comes because you did not provide the attribute options.
Here is how the docs define it:
"attributes": [ { "id": 6, "position": 0, "visible": false, "variation": true, "options": [ "Black", "Green" ] }, { "name": "Size", "position": 0, "visible": true, "variation": true, "options": [ "S", "M" ] } ],Forum: Plugins
In reply to: [WooCommerce] Block Admin loginThere are a few ways to do that. here is one: https://gist.github.com/vanbo/01540c86271a742b6796bc0a32737749
Forum: Plugins
In reply to: [WooCommerce] Sending proccessing order emailYou have the order object as a second argument in the function. Now that you know how to add a second email, get anything you need for the order and add your own logic.
Forum: Plugins
In reply to: [WooCommerce] Shipping SettingsForum: Plugins
In reply to: [WooCommerce] Change shopping basket icon with WordPress Storefront ThemeThat should do it:
.storefront-primary-navigation .site-header-cart .cart-contents:after { content: "\f07a"; }Forum: Plugins
In reply to: [WooCommerce] Out-of-stock items – can’t make payment any more.I would not recommend removing core code. Instead go the
filter route and instead of always adjusting in stock status, do so on the Pay page, where this error message is actually checked and displayed.To answer your question, though, yes, if you remove this part behavior will be the same as it was in previous version.
Forum: Plugins
In reply to: [WooCommerce] TypeError: e(…).selectWoo is not a functionCheck that the script that throws the error is included after the selectWoo script.
Forum: Plugins
In reply to: [WooCommerce] Multiple cart on cart page separated by root product categoryWhich part?
Forum: Plugins
In reply to: [WooCommerce] Set Order Status to completed when payment is done with PaypalNot really, read the docs, setup the gateway and if it does not work may be try the IPN Debugging
Forum: Plugins
In reply to: [WooCommerce] Zoom not working on hoverZoom does work for the product you poted
- This reply was modified 8 years, 8 months ago by vankaa.
Forum: Plugins
In reply to: [WooCommerce] Set Order Status to completed when payment is done with PaypalIf the order is set to Pending, there is some issue with your IPN and the order is not properly processed after payment. Instead of looking to change the status, investigate why your orders are not processed after payment. I believe there are alternatives to the IPN that you can set up.
Forum: Plugins
In reply to: [WooCommerce] mark-up of the goodsAre you changing the price for the product passed from the filter or you are changing the price of the global product?
add_action( 'woocommerce_get_price', 'change_price_regular_member', 10, 2 ); /** * @param $price * @param WC_Product $product * * @return float */ function change_price_regular_member( $price, $product ) { $mark_up = (int) get_field( 'markup_for_the_goods', $product->get_id() ); $price = ( $price * $mark_up / 100 ) + $price; return $price; }Forum: Plugins
In reply to: [WooCommerce] Cannot get rid of updated database messageHere is a gist to hide the update notice:
https://gist.github.com/vanbo/bc26183db3cd0f6ddb8d8e2e591958c7
Have in mind that is only patches the issue, which is that the notice was probably not dismissed correctly.
- This reply was modified 8 years, 8 months ago by vankaa.