jakubl373
Forum Replies Created
-
Forum: Plugins
In reply to: [DPD SK for WooCommerce] Nastavenie dopravy a exportuDobry deň,
?akujem za va?u odpove?.Usudzujem z nej, ?e plugin nemá moc funkcionalít a tá najzásadnej?ia (mana?ment stavov objednávky so sp?tnym API) v ňom absentuje. Rozumiem, ?e to nie je va?a chyba, ale zadanie DPD, ktoré vlastne ni? nerie?i.
O funkcie na mieru nemáme záujem, je to na DPD, aby si platilo vyvoj pluginu.
Forum: Plugins
In reply to: [EWWW Image Optimizer] Optimisation of images – other plugins@emmelinegb our theme has the possibility to lazy load images which can be turned on. This setting is enabled by default and I had no knowledge of it until I checked completely all of the theme settings.
If you are using some optimisation plugins then these usually come with the lazy load function as well. So it needs to be turned off for these plugins as well and enabled only in EWWW.
Forum: Plugins
In reply to: [Faview - Virtual Reviews for WooCommerce] Anonymous reviewsDear Mivtt,
I am enclosing the list of reviews for the product and a comparison between a real review and virtual review (the “real” review is being displayed with a name):
https://pasteboard.co/K8JILbI4.png
https://pasteboard.co/K8JIGkP.pngHowever, I remembered that I have the following in functions.php:
add_filter('get_comment_author', 'my_comment_author', 10, 1); function my_comment_author( $author = '' ) { $comment = get_comment( $comment_ID ); if (!empty($comment->comment_author) ) { if($comment->user_id > 0){ $user=get_userdata($comment->user_id); $author=$user->first_name.' '.substr($user->last_name,0,1).'.'; } else { $author = __('Anonymous'); } } else { $author = $comment->comment_author; } return $author; }
This is to ensure that in case of reviews, only the first name and the initial of the last name is displayed to protect the privacy of buyers (otherwise, the full name would be displayed by default – unless the user changes the display name).
When I commented it out, now the name entered in the virtual reviews is showing.
So I thought – maybe your plugin inputs the whole name as the last name? Is there any possibility to make it compatible?
Thank you.
Forum: Plugins
In reply to: [Faview - Virtual Reviews for WooCommerce] Anonymous reviewsDear Mivtt,
Please see the result on this test page:
https://tst.greenmed.sk/produkt/cbd-pre-zvierata/cbd-konopny-olej-pre-macky/The review is displayed as anonymous but it actually has a name in the backend.
Please, let me know, whether you need more information.
Thank you.
Forum: Plugins
In reply to: [EWWW Image Optimizer] Optimisation of images – other pluginsYou were correct, it was actually my theme. Thank you.
Forum: Plugins
In reply to: [A faster website! (aka defer.js)] CLS – div elements@shinsenter I have done some research and found out that the source of the lazy loaded div elements was EWWW Image Optimizer (which is only supposed to lazy load images, which was turned off in your plugin). Funnily enough, even disabling EWWW Image Optimizer and skipping all lazy loading did not prevent the layout shifts – so I guess it is my theme that is causing this.
Thank you for your help but there is nothing you can do here.