dansart
Forum Replies Created
-
Forum: Plugins
In reply to: [Add Customer for WooCommerce] Not unique table/alias: ‘wpu9_usermeta’Hi @birkvally
Since I got no feedback, I assume the issue is solved. Otherwise feel free to reach out again.
Best, DanielForum: Reviews
In reply to: [Add Customer for WooCommerce] Woocommerce needs more useful developersThanks a lot! ??
Forum: Plugins
In reply to: [Add Customer for WooCommerce] Plugin Not WorkingThis is correct. The checkbox only shows in the backend (admin area)
Forum: Plugins
In reply to: [Add Customer for WooCommerce] Plugin Not WorkingHey
Thanks for your feedback.
It is intendet to be used by the admins only. The Plugin does not add anything to the checkout page (frontend), but adds an checkbox to the billing form on the Add/Edit Order screen. If you add a new oder, then filling out the billing information, you will see the checkbox.
Let me know, it that works for you.
Best, DanForum: Plugins
In reply to: [Add Customer for WooCommerce] Cannot Create New Customer@highrollerusa
Do you get a error message when creating a new user?
I installed the plugin but was not able to produce an error…
If so, you can try to add the following code to your functions.php.if (is_admin() and isset($_REQUEST['wac_add_customer']) and $_REQUEST['wac_add_customer'] == 'true') {
add_filter( 'hcap_activate', false );
}Let me know if that works for you.
Best, DanielForum: Plugins
In reply to: [Add Customer for WooCommerce] Cannot Create New CustomerI will look into it
Best, DanielForum: Plugins
In reply to: [Add Customer for WooCommerce] nicht l\u00e4nger als 60 Zeichen sein.Hi Tobias
Thanks for the message. Turns out, this happens, when long names (more than 60 characters) are used. I modified the generation of usernames so that they get cut to the max length.
Install the newest update to apply the fix.
Best, DanielForum: Plugins
In reply to: [AI Alt Text Generator] Creating of Alt text not possible and security issueHi @migkapa
Thanks for the fast response. Now it works almost perfectly.
Except when I try to generate the text for more than 4 pictures. I get a 503 – Service Temporarily Unavailable.You’re right, I missed that prompt customization.
Best, Daniel
Forum: Reviews
In reply to: [Add Customer for WooCommerce] Brilliant Time SaverThanks a lot for your feedback ??
Forum: Reviews
In reply to: [Add Customer for WooCommerce] What support!Thanks a lot! ??
Forum: Plugins
In reply to: [Add Customer for WooCommerce] Cannot Create New CustomerHi @ytian03
Thanks for your patience.
I just published an update that makes the plugin compatible with reCAPTCHA for WooCommerce. ??
Let me know if you’re facing more issues.
Best, DanielForum: Plugins
In reply to: [Add Customer for WooCommerce] Not unique table/alias: ‘wpu9_usermeta’Hi David
Thanks for reaching out.
The problem is, that there is a left join and an inner join which both using the same table.May plugin uses the WP_User_Query function to get the users. It looks like, another plugin filters the query. Are you using any other plugins, that might do something to the user query?
A way to fix that, if you’re familiar with altering querys is, to use a alias.
SELECT SQL_CALC_FOUND_ROWS wpu9_users.ID FROM wpu9_users
INNER JOIN wpu9_usermeta AS um1
ON ( wpu9_users.ID = um1.user_id )
LEFT JOIN wpu9_usermeta AS um2
ON um2.user_id = wpu9_users.ID
WHERE 1=1 AND (user_login LIKE '%cost%' OR ID = 'cost' OR um1.meta_value LIKE '%cost%' OR um2.meta_value LIKE '%cost%')
ORDER BY user_login ASC
Let me know, if that helps
Best, Daniel
- This reply was modified 6 months, 2 weeks ago by dansart.
Forum: Plugins
In reply to: [Add Customer for WooCommerce] Cannot Create New CustomerHi @ytian03
Thanks for reaching out. It seems you have installed the plugin reCAPTCHA for WooCommerce. Can you confirm that?
Best, DanielForum: Plugins
In reply to: [Add Customer for WooCommerce] “Kundenkonto aktivieren” E-Mail wird versendetHi Tobias
Ich habe nun ein update des Plugins gemacht und eine Option hinzugefügt, welche alle Emails blockiert. Da diese aber nach dem gleichen Prinzip funktioniert, kann es sein, dass auch das nicht funktioniert.
Auch wird dies nur Kunden betreffen, welche ab Version 1.9 hinzugefügt wurden.
Sorry, das ich dir hier keine konkretere L?sung anbieten kann.
Lieber Gruss, DanielHi @duongcuong96
I have the same issue.
In my case I use the symfony library in my theme as well. If I switch the theme, it seems to work again.
The solution of @kotatsuhal did not work for me.The theme has the following packages and versions;
symfony/intl v6.0.19 Provides a PHP replacement layer for the C intl
symfony/polyfill-ctype v1.29.0 Symfony polyfill for ctype functions
symfony/polyfill-intl-icu v1.29.0 Symfony polyfill for intl's ICU-related data and classes
symfony/polyfill-mbstring v1.29.0 Symfony polyfill for the Mbstring extension
symfony/polyfill-php81 v1.29.0 Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions
symfony/translation-contracts v3.0.2 Generic abstractions related to translation
symfony/validator v6.0.19 Provides tools to validate valuesThanks for a fast solution
Best, Daniel