albertanthony
Forum Replies Created
-
Forum: Plugins
In reply to: [PPOM - Product Addons & Custom Fields for WooCommerce] Legacy View PopupHello, has it been fixed?
Forum: Plugins
In reply to: [PPOM - Product Addons & Custom Fields for WooCommerce] Upload file errorBut, there are some of my customers who get these erros and some don’t get it
Forum: Plugins
In reply to: [PPOM - Product Addons & Custom Fields for WooCommerce] Image Optioni mean the legacy view not working. Because usually on detail product i click the images that can show up the large popup, now its not working
Forum: Plugins
In reply to: [PPOM - Product Addons & Custom Fields for WooCommerce] Image OptionYes, click for popup modal
Okay thankyou for your support
I’m using PPOM images fields. the price not automaticlly added to cart.
Now im edited the code in ppom_woocommerce_update_cart_fees function
the $total_option_price always 0
ORIGINAL CODE:
case ‘variable’:$option_price = $option[‘price’];
// verify prices from server due to security
if( isset($option[‘data_name’]) && isset($option[‘option_id’])) {$option_price = ppom_get_field_option_price_by_id($option, $wc_product, $ppom_meta_ids);
}$total_option_price = $option_price;
$total_option_price += wc_format_decimal( $option_price, wc_get_price_decimals());
break;EDITED CODE: (WORKS)
case ‘variable’:
$option_price = $option[‘price’];
$total_option_price += $option_price;
break;Add to cart
Forum: Plugins
In reply to: [WooCommerce] Orders page bug after WordPress 5.0.2 UpdateSame with me
Forum: Plugins
In reply to: [PPOM - Product Addons & Custom Fields for WooCommerce] PPOM not showingare you sure? im afraid to update, because every times im update, the errors appers. And i see the changelog in version 12.9+ nothing about it
Forum: Plugins
In reply to: [PPOM - Product Addons & Custom Fields for WooCommerce] PPOM not showingi have tried many times.
how to reverting back to 12.4?
btw, this error is just on select option (combobox)
- This reply was modified 7 years, 11 months ago by albertanthony.