reVwow
Forum Replies Created
-
I checked options, i have unique parameters in statuses (% and name).
I dont use any cache plugin.regards
Forum: Plugins
In reply to: [WooCommerce Admin] Export report issueSelecting different period doesnt help. For some reason even if i select as exemple :
from 1 OCT to 15 OCT it works and give me instant download but my 16 to 30 OCT perdiod force me to an email way and doesnt work as specified up there.you’re more than welcome to keep an eye on the issue in GitHub.
Sure i will.
Hope for a fix soon anyway thanks !Forum: Plugins
In reply to: [WooCommerce Admin] Export report issueI added wp mail logging.
When i try to export “command” all is fine, and i see the log in the wp mail logging list but when i try to export “revenue” it doesnt send it, and i dont even see it in the log report in wp mail logging list.Forum: Plugins
In reply to: [WooCommerce Admin] Export report issueActually it seems there is an issue with “revenu” export only.
It create the file in FTP woocommerce_upload/reports but nothing is sent.
Also i dont know if it’s normal or not but it doenst create the “.headers” file for “revenue” report.- This reply was modified 4 years, 6 months ago by reVwow.
Biensûr,
alors les points positifs :
– facile d’accès
– jolie carte des points retraits
– ajout de statut personnalisé
– passerelle bien faitePoints négatifs
– passerelle un peu fouillis (notamment les filtres)
difficile de s’y retrouver facilement
– non gestion des commandes dans lesquels se trouve un produit à 0 € ou cadeau ( et non le colis entier)
– accès compliqué du log erreur (je pousse un peu mais rien que le fait d’avoir le log en dehors de la passerelle est pas très bien vu car on en a sans cesse besoin)La raison principale est que nous rentrions dans une période “black friday” nous avions besoin de ne pas perdre de temps à devoir s’habituer à un nouvel outil de gestion.
Maintenant globalement l’outil est très bon par contre pour les 1ere utilisations mais besoin de temps d’adaptation quand on a utilisé CDI (qui lui est simple mais efficace).
J’attend avec impatience vos prochaines mise à jours et améliorations.
Oui mais ça n’a pas marché.
J’ai fini par trouver la solution.L’outil “statistique” de woocommerce arrive a les retrouver, donc j’ai pu les ouvrir une par une et changer le statut.
Serait -il possible de supprimer le topic? histoire de ne pas laisser le log…
MerciJ’ai appelé le service tech, j’aurais ma réponse je pense jeudi j’ai rdv avec un dev.
Merci en tout cas pour les réponses.Oui merci.
Je suis une tete de b….
J’ai modifié.Aussi autre petite question, j’ai fais une commande manuellement (ex : collaboration) mais elle se met pas dans la passerelle colissimo, elle est pourtant en en cours. Comment faire ?
Merci
Forum: Reviews
In reply to: [Gravity PDF] Great Plugin, Great AuthorCant be more agree))
Forum: Plugins
In reply to: [Gravity PDF] Put “products” fields at top instead of bottom of pdfSure you right.
Ok first i use “Code Snippets” plugin to make it easy to add snippet.1st snippet : (Gravityform – disable product table)
***dont forget the id depends on your form id , mine is 1 here***add_filter( ‘gfpdf_disable_product_table’, function( $disable, $entry, $form, $config, $products ) {
if ( $form[‘id’] === 1 ) {
return true;
}
return $disable;
}, 10, 5 );2nd snippet : (Gravityform – enable product table at top)
add_action( ‘gfpdf_pre_html_fields’, function( $entry, $config ) {
GPDFAPI::product_table( $entry );
}, 10, 2 );As Jake said , very easy to make.
have nice day, hope it may help.
- This reply was modified 6 years, 11 months ago by reVwow.
Forum: Plugins
In reply to: [Gravity PDF] Put “products” fields at top instead of bottom of pdfOk found.
Thanks for all previous tips.
Forum: Plugins
In reply to: [Gravity PDF] Put “products” fields at top instead of bottom of pdfI did it good, but one thing, what should i use to enable “product table” in the gfpdf_pre_html_fields ? Seems i did it wrong but i dont know why. Probably a stupid mistake but a little help would be appreciate.
Thanks a lot.Forum: Plugins
In reply to: [Gravity PDF] Put “products” fields at top instead of bottom of pdfThanks for answer am gonna look into it.
have a good day
Forum: Plugins
In reply to: [Gravity PDF] “Multiple columns” plugin compatibleThanks for answer easter even good reason:))
Anyway am not sure you understand what i mean.
i try explain in a simple exemple of 2 column form pdf….with my poor english :
element 1 : text
element 2 : text
element 3 : email
element 4 : adresse
element 5 : text
element 6 : bloc texti want the column in the pdf behave like
element 1 — element 4
element 2 — element 5
element 3 — element 6instead of
element 1 — element 2
element 3 — element 4
element 5 — element 6how to do it ?