chris-kns
Forum Replies Created
-
Hi,
yes, I tested with the latest version and the problem is still there.Forum: Plugins
In reply to: [Library Bookshelves] Capitalization of title and alt textMany thanks for you work!
Hi,
I have the same problem: I haven’t been able to update for several months in the usual way, even though the version is ‘Acymailing Starter’ and no pro version has been installed.
I need to download the extension and add it via the ‘Upload Plugin’ button.Thanks
Bonjour,
je me suis retrouvé dans le même cas de problème de téléchargement avec le statut “Colissimo…”En attendant la correction de l’extension, voici une solution temporaire :
add_filter('woocommerce_order_is_download_permitted', 'mywoo_change_download_permission', 10, 2); function mywoo_change_download_permission($data, $order) { if ( $order->has_status( 'lpc_transit' ) ) { return true; } elseif ( $order->has_status( 'lpc_delivered' ) ) { return true; } elseif ( $order->has_status( 'lpc_anomaly' ) ) { return true; } elseif ( $order->has_status( 'lpc_ready_to_ship' ) ) { return true; } elseif ( $order->has_status( 'lpc_partial_exp' ) ) { return true; } return $data; }
à ajouter dans le fichier functions.php du thème ou dans une extension/mu-plugin…
Merci,
dans ce cas, il faudrait le signaler ou supprimer la 2e ligne sur le formulaire de saisie car cela peut être une source d’erreur si l’adresse n’est pas imprimée dans sa totalité sur l’étiquette.Thanks a lot for your prompt update.
Have a nice day too !
Regards
Hi,
i had an answer shortly after the ticket was submitted.
The problem has been identified and the developers are working on it.We have to wait…
Ticket submitted!
Thanks
Hi,
Same thing on my websites with WordPress 5.2.1.
The top bar disappears and the menu is automatically reduced when editing posts or pages with Gutenberg and Classic Editor.
Forum: Plugins
In reply to: [Scriptless Social Sharing] Error with last update (3.0.0)Sorry, false alert, problem with server cache…
Forum: Plugins
In reply to: [Strong Testimonials] Error with last update (2.38)Forum: Plugins
In reply to: [SEOPress - On-site SEO] Urgent: 3.3.8 causes white screenThanks a lot Benjamin,
it’s ok now.
You are really too fast !Forum: Plugins
In reply to: [SEOPress - On-site SEO] Urgent: 3.3.8 causes white screenHi,
same thing for me, crash with 3.3.8 update.
Site is back after deactivation.i’m trying to list user bookings on a custom page.
Hi Ryan,
i made modifications for the translation and added french language file.
I submited a pull request on Github