intolap
Forum Replies Created
-
Forum: Plugins
In reply to: [Koko Analytics] Analytics not working properlyYes, it has. Anyway, I am frustrated and reset the analytics except post stats and referrer stats from database. Let see
Forum: Plugins
In reply to: [Facebook for WooCommerce] Facebook product does not show the product imagehttps://www.awesomescreenshot.com/image/44700746?key=f6cb48ac57b7fad408a715b46ad48229
Yes it does has featured image as well as gallery image. I have also set the images for all it’s variations to take from parent in the settings, so it should take the product image from there.
https://www.awesomescreenshot.com/image/44700803?key=8ca77faa2e141beaa81a96cefaa97306- This reply was modified 1 year, 2 months ago by intolap.
Forum: Plugins
In reply to: [Facebook for WooCommerce] Facebook product does not show the product imageDoes forminator have any option to add custom settings fields to every form programmatically?
Thanks, now it works. I found the solution in the log.
add_action( ‘forminator_custom_form_submit_before_set_fields’, ‘woow_forminator_beofre_set_handler’, 10, 3);
What was missing is the priority and the number of arguments.Hi Luis,
You picked it right about the public keyword. Well, actually I am using this function inside a class. But just to post it here I extracted the code and forgot to remove the public keyword.
Did you check my lines of code without public keyword?Forum: Plugins
In reply to: [WooCommerce] Custom product pricing and fee not reflecting in orderI am sorry but my problem is not about reflecting the custom fee in the order. It is working.
What is not reflecting is the custom product price. Kindly check the codes that I pasted to understand better.
We have a situation where a product is priced as 1500
Condition A: If user is from ZA, then the price should be X + 15% of X = 1500
Condition B: If not ZA, then it should be just 1500
In “A” the price f the product is also customized in cart and the same is displayed on checkout page as well. But the same price is not carried to the order. The order shows 1500 as the line total which is wrong because we have set custom price for the product.
Hope this time I am clear with my lookout.Forum: Plugins
In reply to: [WooCommerce] Custom product pricing and fee not reflecting in order/* Custom codes by INTOLAP */ add_action('woocommerce_checkout_update_order_review', 'armd_update_order_review'); function armd_update_order_review( $posted_data ) { ? ? // Parsing posted data on checkout ? ? $post = array(); ? ? $vars = explode('&', $posted_data); ? ? foreach ($vars as $k => $value){ ? ? ? ? $v = explode('=', urldecode($value)); ? ? ? ? $post[$v[0]] = $v[1]; ? ? } ? ? $billing_country = $post['billing_country']; ? ? if ($billing_country == "ZA") { ? ? ? ? $tax = 0; $sub_total = 0; ? ? ? ? foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { ? ? ? ? ? ? $product = $cart_item['data']; ? ? ? ? ? ? $price = $cart_item['data']->get_price(); ? ? ? ? ? ? $percentage = 15; ? ? ? ? ? ? $new_price = ($price*100)/(100+$percentage); ? ? ? ? ? ? $sub_total += $new_price; ? ? ? ? ? ? $tax += ($price - $new_price)*$cart_item['quantity']; ? ? ? ? ? ? $cart_item['data']->set_price( floatval($new_price) ); ? ? ? ? } ? ? ? ? WC()->session->set( 'tax' , $tax ); ? ? ? ? WC()->session->set( 'sub_total' , $sub_total ); ? ? }else{ ? ? ? ? WC()->session->__unset( 'tax' ); ? ? ? ? WC()->session->__unset( 'sub_total' ); ? ? } } add_action('woocommerce_cart_calculate_fees','armd_wc_custom_fee'); function armd_wc_custom_fee() { ? ? if(!is_checkout())return false; ? ? $billing_country = WC()->customer->get_billing_country(); ? ? $tax = WC()->session->get( 'tax' ); ? ? if($billing_country == 'ZA' && !empty($tax)){ ? ? ? ? WC()->cart->add_fee('VAT @ 15%:', $tax); ? ? } } We are using woocommerce hooks to achieve this till the display of custom price and the fee on checkout page. But the time I press Place Order button on Checkout page, it creates the order with the original product price and not the custom price.
Forum: Plugins
In reply to: [Country Code Selector] Woocommerce – shipping phoneHello,
Thank you for contacting us about your requirement. By default, WooCommerce does not have a shipping phone field on the checkout page. You must have added a custom shipping phone to the form.
To have multiple country code selectors you have to go for our PRO version. For more details please check https://www.intolap.com/product/country-code-selector-pro/
Best regards,
INTOLAP SUPPORTForum: Plugins
In reply to: [Country Code Selector] Gravity Forms Multi-step FormThank you for your reply. Oh, that’s the limitation of the FREE version. For multiple fields on the same form or basically any form, one has to use our PRO version.
Forum: Plugins
In reply to: [Country Code Selector] wocommarce integration errorHello,
Thank you for contacting us about your issue with our plugin. I will love to assist you in fixing your issue. I doubt you have some setting issue as we have not received any report for this error yet. For better help, I request you to share admin login details with [email protected]
Alternatively, you can clone your site to a subdomain and then share the credentials.
Best regards,
INTOLAP SUPPORTHello,
Thank you for contacting us about your issue with our plugin. I will love to assist you in fixing your issue. For that, I request you to share your FTP and admin login details with [email protected]
Alternatively, you can clone your site to a subdomain and then share the credentials.
Best regards,
INTOLAP SUPPORTForum: Plugins
In reply to: [Country Code Selector] Serbia and Montenegro calling code problemHello Monika,
Apologies for the delay in responding.
Please download the latest version and install it, your issue with the plugin is resolved.
Best regards,
INTOLAP SUPPORTForum: Plugins
In reply to: [Country Code Selector] Gravity Forms Multi-step FormHello,
Thank you for contacting us about your concern. Gravity forms multistep is achieved using add-on on top of Gravity forms. We have not tested our plugin for multi-step add-on but it should work seamlessly. Let me know if you find any issues using our plugin. For that, I request you to share your FTP and admin login details with [email protected]
Alternatively, you can clone your site to a subdomain and then share the credentials.
Best regards,
INTOLAP SUPPORTForum: Plugins
In reply to: [Country Code Selector] Country Code IssueHello,
Thank you for contacting us about your issue with our plugin. I will love to assist you in fixing your issue. For that, I request you to share your FTP and admin login details with [email protected]
Alternatively, you can clone your site to a subdomain and then share the credentials.
Best regards,
INTOLAP SUPPORT