mchll98989
Forum Replies Created
-
Hi, can you confirm that this issue was fixed? I can’t find any mention of these problems (miscalculations and unsaved forms after PayPal payment in the changelog). I see that this was marked as resolved.
Is this still being worked on? It looks like @zigzywno is indeed having the same issue as me. I would think making sure forms that are integrated with PayPal function properly would be a TOP priority. Getting a payment from a customer, but not receiving their order form is frustrating, embarrassing, and makes us look bad to our customers.
I just tested another form I have with the mu-plugin uploaded. This form has page breaks, and the mu-plugin adds the confirm button on the first page of the form. Here you can see both “confirm” and “next” buttons: https://imgur.com/E7DTLEd
If you click “confirm” this is what happens: https://imgur.com/CtJk4K1
Form: https://www.lovingfromadistance.com/engraved-wallet-cards/
Yes, I have tried after clearing my browser cache. I also have cleared the cache on my site before each attempt.
I’m on a desktop using chrome. I have tried incognito. I have tried chrome on my iPad. I also have tried the Microsoft Edge browser on desktop. Ad-block is disabled. The Paypal window does not load and the “Error! Something went wrong when verifying the payment” message is displayed.
Also in every instance, despite the total calculating correctly on the form, the total saved in the database and sent via email are incorrect. It removes 2 different fields from the calculation upon submitting for some reason – even though these selections are still in the confirmation emails and database. Which doesn’t make any sense because the total displayed on the form is correct and the formula for the calculation is correct. This error ONLY happens when the mu-plugin is uploaded.
New issue: I just realized, the form as it is on my site now, without the mu-plugin, calculates initial selections correctly. If I unselect something, it changes the total $ accurately, but when I make a new selection, it does not add the new item to the total. I have to unselect and reselect a few times for it to add the new item to the total. https://www.lovingfromadistance.com/braceletorderform/
Hello,
Thanks for working on this. Unforunately, the fix is not working. The payment options show up now, but after you click on the “Paypal checkout” button, there is an error message. The paypal window pops up for a brief second and then disappears and the error message gets displayed.
Also, the total $ on my form and the total $ in the email are not the same. When I tested it, my total on the form was $14.00 (correct total), and the order form submission email said the total was $13.50.
Correct total on form: https://imgur.com/1BedmF3
After clicking confirm: https://imgur.com/0PTSVVI
Error after clicking Paypal Checkout: https://imgur.com/dUo0xyV
Incorrect total in confirmation email: https://imgur.com/WImsyii
Incorrect total in forminator admincp: https://imgur.com/AcSKZU4https://drive.google.com/file/d/1xmjaRPB8jzSrx8_zAWX9DiB-a0ecnL8e/view?usp=sharing
I appreciate the help. Thank you!
Thank you for your reply. I tried the plugin and it does save the form before the payment step. However, after submitting the form, it says this message:
Your information has been submitted. In order to verify please complete payment bellow.
But the payment buttons are not displayed.
I have the same issue. Getting the payment but form submission not saved.
In one case, it was because someone had an error on the form (they tried to upload a file upload that was larger than the limit) but it didn’t prompt the person before they paid. Immediately after paying they got an error message.
Can you please make it so all forms are saved, regardless if there is an error on someone’s form?
Forum: Plugins
In reply to: [WP Meta SEO] Category description now showing above headerThey still don’t know what you’re talking about. Please see this link: https://community.theme.co/forums/topic/custom-imagehtml-for-categories/page/2/#post-751693
I wish that you would make this optional instead of a forced feature. I will have to find a new seo plugin if you don’t, and it’s going to suck to have to tediously do the meta stuff for every page and post of my website all over again.
Forum: Plugins
In reply to: [WP Meta SEO] Category description now showing above headerX themes wants to know what you mean by the public part.
Forum: Plugins
In reply to: [WP Meta SEO] Category description now showing above headerRight now the problem is not showing because I am running version 1.6.0 of the plugin, but here is a page that shows a category description: https://lovingfromadistance.com/ldr/miss-you-issues/
I am running the latest version of X theme. It has been customized to display the category description.
The code X theme support gave me to do this was:
// Displays category descriptions // ============================================================================= remove_filter( ‘pre_term_description’, ‘wp_filter_kses’ ); remove_filter( ‘term_description’, ‘wp_kses_data’ ); function display_category_descriptions(){ if ( is_category() ) : ?> <div class=”category-desc”> <div class=”x-container max width”> <div class=”category-desc-contents”> <?php echo category_description(); ?> </div> </div> </div> <?php elseif( is_single() ) : ?> <?php $f_category = get_the_category(); if ( $f_category[0]->category_parent != 0 ) { $f_category_name = get_cat_name( $f_category_id ); } else { $f_category_name = $f_category[0]->name; } ?> <div class=”category-desc”> <div class=”x-container max width”> <div class=”category-desc-contents”> <?php echo category_description( get_category_by_slug($f_category_name)->term_id ); ?> </div> </div> </div> <?php else : ?> <?php endif; } add_action(‘x_after_view_global__slider-below’, ‘display_category_descriptions’); // =============================================================================
Forum: Plugins
In reply to: [WP Meta SEO] Category description now showing above header1.7.0 is the version causing the problem because:
“Automatic meta SEO addition for category view: add category title as meta title and category description as meta description“
This is putting the category description above my header and logo.
I had to go back to version 1.6.0.
You need to make the category description as meta description OPTIONAL and not forced so I can stop this from happening.
Forum: Plugins
In reply to: [WP Meta SEO] Category description now showing above headerI have installed the last version (1.6.0) so the category description stops displaying above my header. My category description is completely gone though, as it was when I deactivated the plugin. I need to know was changed permanently so I can fix this so it will display as it should.
Forum: Plugins
In reply to: [WP Meta SEO] Category description now showing above headerAlso, I have tried deactivating WP meta seo and this makes my category description completely disappear instead of just going back to where it should be above my posts, so this update that you made permanently changed something on the site. Please help me fix this.
Forum: Plugins
In reply to: [WP Meta SEO] Category description now showing above headerFound this in your “other notes”:
Category view like a blog of a category of posts meta title and description is now automatic taking the category title and description as meta content.
This is ruining my site, because I have code in my functions.php to display the category description in my theme above posts. Please make this optional.