Drazen Bebic
Forum Replies Created
-
Forum: Plugins
In reply to: [Safe SVG] PHP 8.3 CompatibilityHello @dkotter
Sorry for the late reply, but here’s the GitHub Issue: https://github.com/10up/safe-svg/issues/194
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] Can not load postageHello @itaticrushde
Thank you for your message and for using our plugin.
I have just tried it with our testing account and it worked perfectly. Could you try logging out and back into your Portokasse account?
Also: Do you maybe have any PHP Error logs? If you do, please forward them to [email protected].
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] Label angeschnittenHallo @rnv77 und @manueldomke
vielen Dank für eure Nachrichten und die Nutzung unseres Plugins.
Das Plugin übermittelt lediglich die Adressdaten an die Schnittstelle der Deutschen Post, welche das Label (sprich PDF) daraufhin generiert.
Wir k?nnen bei der DP nachfragen, falls das Problem in der Zwischenzeit nicht behoben ist?
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] Soap Erroryou can contact them at [email protected]
If they refuse to do anything about it, I’m afraid there’s not much you can do but switch hosts.
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] Soap ErrorHello @budfwaldo
thank you for your message and for using our plugin.
Check out this topic:
You need to ask them to unblock the listed ports for the listed domains. Copy paste the list from the reply to them.
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] Startposition für LabeldruckHallo @anzgar,
Vielen Dank für Ihre Nachricht und die Nutzung unseres Plugins.
Dieses Feature ist derzeit nicht vorhanden, befindet sich jedoch auf der Roadmap und wird in einer der zukünftigen Versionen verfügbar sein. Wann genau das passieren wird, ist derzeit nicht absehbar.
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] “Destination State” errorHello @altercat
This issue has been fixed in the latest version (3.1.2). Please update your plugin.
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] Still a valid Plugin?Hello @kraemit
The plugin has just been updated to the version 3.1.2. It also works in parallel with the DHL Plugin, there are no known conflicts there.
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] kostenlose Beigaben versendenHallo @atanke
bitte folgenden Code im Plugin ?ndern:
\includes\Integrations\Host\PacketPlus.php
, ab Zeile 246 diesen Block:$contents[] = array( 'contentPieceIndexNumber' => $contentPieceIndexNumber++, 'contentPieceHsCode' => $hsCode, 'contentPieceDescription' => $customsDeclaration, 'contentPieceNetweight' => $subtotalWeight, 'contentPieceOrigin' => $countryOfManufacture, 'contentPieceAmount' => $qtySelected, 'contentPieceValue' => number_format($subtotalPrice, 2, '.', '') );
Umschreiben auf:
$contentPiece = array( 'contentPieceIndexNumber' => $contentPieceIndexNumber++, 'contentPieceHsCode' => $hsCode, 'contentPieceDescription' => $customsDeclaration, 'contentPieceNetweight' => $subtotalWeight, 'contentPieceOrigin' => $countryOfManufacture, 'contentPieceAmount' => $qtySelected, 'contentPieceValue' => number_format($subtotalPrice, 2, '.', '') ); $contents[] = apply_filters('internetmarke_content_piece', $contentPiece);
Dann irgendwo in Deiner functions.php diesen Block hinzufügen:
add_filter('internetmarke_content_piece', 'modify_internetmarke_content_piece'); function modify_internetmarke_content_piece($contentPiece) { if ($contentPiece['contentPieceValue'] === '0.00') { $contentPiece['contentPieceValue'] = '0.01'; } return $contentPiece; }
Beim n?chsten update musst du dann genau nichts mehr tun, der Filter wird im Update mit dabei sein.
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] Label l?sst sich nicht ?ffnenHallo @psorn
Vielen Dank für Ihre Nachricht und die Nutzung unseres Plugins.
Ich habe gerade versucht ein Label zu erstellen und herunterzuladen, hat ohne Probleme funktioniert. K?nnten Sie mir mehr Details zu Ihrem Prozess geben (Welches Label, mit oder ohne CN22, usw)?
Gab es au?erdem irgendwelche ?nderungen am System? z.B. PHP Version?nderungen, Plugin-Updates, WordPress-Updates, usw? Eventuell gibt es relevante Eintr?ge in der PHP Error Log Datei?
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] kostenlose Beigaben versendenHallo Andreas,
vielen Dank für Deine Nachricht und die Nutzung unseres Plugins.
Ich habe das mal bei uns aufgenommen, sollte kein Problem sein und daher h?chstwahrscheinlich beim n?chsten Update mit dabei sein.
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] Versandgebühren nicht aktuellHallo @frank_gayer
vielen Dank für Ihre Nachricht und die Nutzung unseres Plugins.
Normalerweise gibt es im Plugin eine Geplante Aufgabe (sprich, Scheduled Task), welche diese Produkt-Preise automatisch aktualisiert. Versuchen Sie bitte die Produktliste manuell über das Dashboard zu aktualisieren.
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] “Destination State” errorAlright. Added as an issue. We’ll take a look. If we have any questions, can we contact you via email? If so, please email us at [email protected] so that I can add your contact info.
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] “Destination State” errorHello @altercat
I’ll add this is a potential bug. Will be investigated and, if a bug is found, fixed.
One question: Do you use the standard WooCommerce fields for States?
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] Automatic shipping emailsHello @altercat
This feature is on the pipeline, however I cannot say anything about a potential release date.