Sonjoe
Forum Replies Created
-
Forum: Plugins
In reply to: [Pressidium Cookie Consent] Got stuckHello. Thank you for answer. I came back to the project after weekend and it works right now. Was not able to reproduce the problem. It’s weird cause i did nothing. If happens again, i’ll report a bug. Thanks.
Fixed! Many thanks for the awesome and quick support. The issue was that jQuery was being loaded twice. I left the default WordPress jQuery and removed mine. Now everything works perfectly ??
It really looks like the issue is with jQuery. I’m loading my own version at the end of my custom theme, but WordPress loads its own in the header. When I disabled my jQuery, some parts of the website broke, but the payment still went through successfully. I tried removing the default WordPress jQuery load, but unfortunately,
wp_dequeue_script('jquery');
didn’t work. I need to try a different approach.Thank you. I will dig deeper and try to resolve.
Thanks for quick answer.
I have installed the LearnPress plugin, with LearnPress Woocommerce add-on.
Here is the link for test course/product: https://www.asai.sk/kurzy/lorem-ipsum-kurz-dolor-sit/
It is still in Test Mode, so you can use Stripe test cards.
Thanks
- This reply was modified 1 month, 1 week ago by Sonjoe.
I found out that this might be the reason how the function retrieves the tag names. I modified some code in functions_cf7.php, and although the list no longer displays the tag names in square brackets (it now shows them without brackets), the function works as expected. Additionally, the checkbox remains checked after refreshing or resaving the settings page, so you won’t accidentally uncheck the fields.
function duplicate_killer_CF7_get_forms(){
global $wpdb;
$CF7Query = $wpdb->get_results( "SELECT * FROM $wpdb->posts WHERE post_type = 'wpcf7_contact_form'", ARRAY_A );
if ($CF7Query == NULL) {
return false;
} else {
$output = array();
foreach ($CF7Query as $form) {
preg_match_all('/\[(text|email|tel)[^\]]*\s+([a-z0-9-_]+)/i', $form['post_content'], $matches);
foreach ($matches[2] as $match) {
$output[$form['post_title']][] = $match;
}
}
return $output;
}
}Dobry den. Tak nakoniec to nie je sposobene nadpisom, ale popisom produktu. Pred zaciatok popisu sa vlozi prazdna medzera, ktora zalomi popis. Vid screenshot https://postimg.cc/yWyXC1ss. Po manualnom ulozeni faktury sa tato medzera vymaze a je to v poriadku.
Ok, it works now. I had a historical function in my functions.php for PDF generating before sending the form and this was the issue. I even bought the PRO version, but there was the same issue because my functions.php. Now it works. Thanks for a great plugin ??
- This reply was modified 11 months ago by Sonjoe.
Thanks for answer, i know about it. I am using the free version, so useless. But still, an email notification should be optional to enable and not disable. I had to block those emails server side.
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Customer detailsHello. It was test transaction. What i meant, that direct in the cart there is only products in cart, but no possibility to fill out customers details such as name, address etc. This details you fill out on the Stripe payment page, but those data is not saved to the order in WP. Would by absolutely great, that customer fill out his details on the cart page and on the Stripe payment page he just fill out his credit card details or apple pay click and done.
Another reason is, that Stripe is yet not translated to the Slovak language, so if i create slovak website, the (Stripe) payment page is in different language and also on different website, which looks not good from the customer’s point of view because they used to fill name, address etc on the sellers site not on the payment provider’s site.
Or maybe i just missing som settings?
Thanks
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Stripe Test modeHello, yes a read that. I filled this as it is in documentation, so live keys to live inputs and test keys to test inputs. But only live mode worked though. Even i had Test mode enabled in Stripe account. I had to fill the live inputs with test keys and worked the Test mode.
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Stripe Test modeI just figured out, that if in plugin settings for Stripe i fill the Live inputs with test keys and also Test inputs with test keys, it works in Test Mode. But it is not very obvious. Maybe will be better to make there a checkbox to use the test mode, if keys are filled in test inputs ??
Thanks
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Paid Add-ons stopped workingThanks Iain. I will look on it.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Paid Add-ons stopped workingIt worked without any problem on version 6 till 6.0.7. I just had to make few CSS edit because of UI.
Forum: Plugins
In reply to: [Contact Form 7] Stripe not worksOh, i am so sorry, my bad. Such a rookie mistake. I have black background on page and the button generated by stripe tag was also in default complete black and i was in hurry so did not check the inspect elements, to check if is generated, now i did and everything works like a charm. Thank you ??