mpbm23
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] wc-product-search not list the variations at non-admin roleWhat about the catalog? Is everything showing up?
Have you tried disabling other plug-ins?Forum: Plugins
In reply to: [WooCommerce] wc-product-search not list the variations at non-admin roleWhat theme are you using? Maybe the theme is overriding the search results. In the catalog is everything showing up?
Forum: Plugins
In reply to: [WooCommerce] wc-product-search not list the variations at non-admin roleCan you please explain more about your problem?
When you search for something, it does not return variable products?Forum: Plugins
In reply to: [WooCommerce] Remove Visual editor row from Login page !It will load the shortcode you will use inside.
Forum: Plugins
In reply to: [WooCommerce] Reduce item stock?Maybe you should contact the myCRED payment gateway author. Because code needs to be added to remove stock on payment checkout
more specifically$order->reduce_order_stock();
Forum: Plugins
In reply to: [WooCommerce] Remove Visual editor row from Login page !If you can not customize the php file by your self, please refer to professional support service or your theme support in order to help you with the customization.
Forum: Plugins
In reply to: [WooCommerce] stock quantities now have 7 decimal places!!!What browser are you using? I am using Firefox and although when I inspect the element the value is 6.000000 in the browser it shows 6.
Forum: Plugins
In reply to: [WooCommerce] Reduce item stock?Can you be more specific?
What version of Woocommerce do you have?
Did it work previously? Does this happens in all payment methods?Forum: Plugins
In reply to: [WooCommerce] Remove Visual editor row from Login page !Log-in and my account is the same page.
You probably need to customize the php code of the my-account page using
<?php if (is_user_logged_in()) { do_shortcode ('Your shortcode'); } ?>
Forum: Plugins
In reply to: [WooCommerce] Multiple product categories for one productYou do not need multiple products. You can assign products to multiple categories using the product categories checkboxes, when editing a product.
Forum: Plugins
In reply to: [Pay for Payment for WooCommerce] disable the charges by user rolesAfter
$cost = round($cost,2);
you can add
global $current_user;
if ( is_user_logged_in() ) {
if(in_array(‘distributor’,$current_user->roles))
{$cost=0;}
}Forum: Plugins
In reply to: [Pay for Payment for WooCommerce] disable the charges by user rolesAll plugins in www.ads-software.com are free software. This means that everyone can see the source code and implement new features.
You can implement this feature and submit it to https://github.com/mcguffin/woocommerce-payforpayment for approval.Forum: Plugins
In reply to: [Pay for Payment for WooCommerce] disable the charges by user rolesYou should ask the developer of the premium plugin if he can customise the plugin to read the roles at the checkout page and then add or remove charges based on the role.
Forum: Plugins
In reply to: [Pay for Payment for WooCommerce] disable the charges by user rolesBecause these roles are not standard woocommerce roles this option is not available. You will need some customization with your wholesaler plugin to implement something like this.
What wholesaler plugin are you using?Probably it is theme related, most people with premium themes that have problems when reloading, problems are related with jquery called in the checkout page.
Contact your theme support if they can help you,also update your theme.