andreas.kastl
Forum Replies Created
-
Forum: Plugins
In reply to: [Jobs for WordPress] No Logo in Google JobsI made it now, I think the problem was that the image wasn’t square. I have now taken an image with 1080x1080ps and it is now displayed.
Hi,
sorry for missunderstanding.
Emails are ok, user get email that admin has to prove and admin get also email that new user has registered.
Admin approve new user in backend – user get’s email that he is now approved.
Problem:
If he user will login to his account he get’s the message that admin has to approve.
In Backend in the userlist the new user status is “approved” but user gets always the message that admin has to approve.When I switch to an older version (2.0.40) it works instantly so the user can login – without the admin having to do anything else.
Many thanks!
Forum: Plugins
In reply to: [Email Template Customizer for WooCommerce] Logged-in user detailsHi,
for tests i changed utils.php from your plugin an added a new shortcode with billing_email and that works – crazy.
Sure this option is not perfect because on the next update my additional code disappers.
So i have added this code snipped in my childs functions.php:
add_action ('woocommerce_email_before_order_table', 'get_user_details', 10, 4); function get_user_details ( $order, $sent_to_admin, $plain_text, $email ) { global $current_user; get_currentuserinfo(); $user_billing_email = $current_user->billing_email; echo $user_billing_email; }
It works but it’s strange that the normal user_email won’t displayed in email text.
Forum: Plugins
In reply to: [Email Template Customizer for WooCommerce] Logged-in user detailsHello again!
I have solved this problem with a script which update Billing and Shipping Infos when user registers.
But {user_email} won’t be printed in email.
I can see the correct email in checkout info but inside the email the field {user_email} is alwys empty.Do you have an idea what I’m doing wrong?
MANY THANKS!
Forum: Plugins
In reply to: [W3 Total Cache] Problem with Mega Menu PluginHello again,
it’s a bit strange whats happening because now the menu works again but i havn’t done anything.
Maybe a conflict with cache and borlab cookies?
Because I accepted the cookies and menu was “broken”.
Now – about 2 hours later – it works.Do you have an idea?
Forum: Plugins
In reply to: [W3 Total Cache] Problem with Mega Menu PluginHello!
At this time the issue is present – on the Startpage the Menu switched to “Standard” without pictures.
If I select another Page from the site the Menu is correct – only on the Startpage the problem exist.
Many Thanks!
Forum: Plugins
In reply to: [W3 Total Cache] Problem with Mega Menu PluginHello,
OK – Sorry.
Here is the Link to the live-Page: https://www.hytronics.at/
At this time you can see that on hover Main menu Buttons there are pictures on Submenu.
When the Problem exists there are no pictures – maybe there is a problem with wp-mega-menu stylesheets?
I don’t know how to reproduce the problem.
Can I something do?Forum: Plugins
In reply to: [W3 Total Cache] Problem with Mega Menu PluginHello!
Thanks for the fast response!
Today I will prepare a testpage and hope to reproduce the “problem” and then give you the link and an admin account where you can test all you want OK?Many Thanks!
Forum: Plugins
In reply to: [Page scroll to id] Easing setting does not take effectOne of the best support ever!
It works great with my theme (THE7).
TANKS!!!!!!
Forum: Plugins
In reply to: [Page scroll to id] Easing setting does not take effectHi!
You’re right this is the correct .js which prevents the settings from your plugin.I don’t think that the theme author change anything so i searched the scroll type I want to use in this JS and add a letter e.g. “easeInOutQuintZ” and than it works.
It’s not a nice sollution but it works.
Many Thanks!
Forum: Plugins
In reply to: [Page scroll to id] Easing setting does not take effectURL:
https://kastl-designs.at/DH/produkte/fahrtechnik/with the sidemenu you can test it.
PS: it’s a testsite and passwordprotected: Dorninger1!
Many Thanks!
Forum: Plugins
In reply to: [Page scroll to id] Easing setting does not take effectHello!
I have the same problem but with theme “THE7”.Do you have an idea where I can find here the “problem-js”?
Many thanks!
PS: I made a rollback to Version 2.0.4 and with this Version it works.
Forum: Plugins
In reply to: [Simple Lightbox] change source via javascriptHello,
Yes I made it, the trick was to add timestamp to href link instead to the src.
Thanks!Hi Carlos!
Thank you for your help.
I got it work with this function (If someone has the same “problem”):
startzeit = '2019-12-12 13:00'; endzeit = '2019-12-12 17:00'; jQuery(function($) { $("#wpuf-date-_EventStartDate").datetimepicker({ value: startzeit }); $("#wpuf-date-_EventEndDate").datetimepicker({ value: endzeit }); });
Greetings, Andy