shayno90
Forum Replies Created
-
Correct. As it is, the page reloads whenever woo throws a notice except for “adding to cart”. It would be perfect if there is an error or notice, that your modal opens and displays the notice there without reloading the page.
Hi Nithin!
Thank you so much for this. I will give it a try soon and get back to you. I had a quick look through it and I noticed that there is only one mention of “Upload-1” where I have 2 fields (profile photo – Upload-1, and Cover Photo – Upload-2). Does your code support both or do we need to wiggle in another line for Upload-2?
Thanks so much for the help!
I may actually take you up on that offer to have only the cart show the prices including the VAT tax since it doesn’t look as pretty when the prices have decimals (i.e €102.85). Additionally, the gift price also has the same issue: i.e “add another €15,83 to receive X gift”. It might be nicer to just have things being totalled.
That would then mean we’d have to change the label at the bottom from Subtotal to Total (as that’s accurate). Maybe even throw in a little bit of text saying “prices include tax”?
I really appreciate that Giacomo. I just upgraded to Premium not only because I want the added features, but developers like you deserve the support.
Thank you so much for the offer! I’ll ponder if it’s really worth it in the end ?? Have an awesome day!
Gotcha. So it does do this “almost perfectly” just be switching the setting to “include Tax in Cart & Checkout” however it says on the checkout page: Subtotal=’Price_including_tax’. Which is not quite right.
But it’s not a big deal. If it’s not an easy thing to do then don’t worry about it ??
Thanks for your time Giacomo!
Yes ?? Exactly. Is this a ridiculous request?
Hi Giacomo,
Thanks – I had the settings set up incorrectly. But I realise that this may not be a bug but perhaps a request – is it possible to show cart contents including TAX but keep checkout items without tax? As here in Germany, the subtotal can’t contain the Tax.
Solved! Found this after I posted this (sorry): https://www.ads-software.com/support/topic/cart-not-expanding-automatically/
Simply enabled ‘Single product AJAX’ in your settings & it works now.
Awesome – if you’d build that in id be mega stoked!
Oh, what a great idea! Looking forward to seeing it!
Forum: Plugins
In reply to: [J Cart Upsell and Cross-sell for WooCommerce] Feature Request(s)Hi Giacomo!
Thanks so much for getting back to me. Your points make absolute sense ?? Thanks for being super helpful.
Looking forward to finally implementing the premium version!
Cheers
Hey Adam,
Thanks so much for that. I did discover I had those things set on the backend. All is good so far and users have been able to register. Thank you tremendously for the help!
Hey Guys,
Seems to be working at the moment. However, there is no confirmation box after pressing submit/register. don’t know if that’s intentional.
Cheers,
Hi Patrick,
Sure, here is the code contained within the Forminator ACF File Upload:
<?php /** * Plugin Name: [Forminator] - Map ACF to upload field. * Plugin URI: https://wpmudev.com/ * Description: Map ACF fields to upload field of Forminator when adding meta user. * Author: Abdoljabbar Bakhshande * Author URI: https://wpmudev.com/ * Task: SLS-3140 * License: GPLv2 or later * * @package WordPress */ if ( ! defined( 'ABSPATH' ) || ( defined( 'WP_CLI' ) && WP_CLI ) ) { return; } add_filter( 'forminator_replace_form_data', 'forminator_mu_map_acf_upload_field', 10, 4 ); function forminator_mu_map_acf_upload_field( $content, $data, $fields, $original_content ) { if ( 'registration' === $data['form_type'] && ! empty( $original_content ) && empty( $content ) ) { // Check if it is registration form. $form_id = $data['form_id']; $email = $data['email-1']; $original_content = str_replace( array( '{', '}' ), '', $original_content ); // Remove { and }. $entry_model = Forminator_Form_Entry_Model::get_latest_entry_by_form_id( $form_id ); // Get latest entry. if ( $entry_model->meta_data['email-1']['value'] === $email ) { // Check if email is same. if ( isset( $entry_model->meta_data[ $original_content ] ) ) { // Check if field exists. $content = $entry_model->meta_data[ $original_content ]['value']; // Get value. if ( is_array( $content ) && isset( $content['file'] ) ) { // Check if file exists. $file_url = $content['file']['file_url']; // Get file url. $content = attachment_url_to_postid( $file_url ); // Get attachment id because ACF file field only accept attachment id. } } } } return $content; }
Cheers,
Shayne
HI Patrick!
Sorry for the delay. Here is the debug file: https://www.dropbox.com/s/wyqzuqrfldv4lze/debug.log?dl=1
Cheers,