Drazen Bebic
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] Position Absender zu weit obenHallo @ceekay88!
K?nntest Du mir bitte ein Screenshot davon schicken? Ich würde das gerne sehen. Per E-Mail an die [email protected] geht auch.
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] Internetmarke mit PHP aufrufen?Hallo @ceekay88!
Vielen Dank für Ihre Nachricht und die Nutzung unseres Plugins.
Diese Funktionalit?t ist derzeit im Plugin nicht m?glich. Ich bin mir auch nicht sicher, ob wir solch ein Feature jemals umsetzen werden. Ich setze mal einen Task bei uns an, es hat jedoch eine eher niedrige Priorit?t.
Hallo @markusssk!
Freut mich zu h?ren! Wenn sonst noch was ist, bitte schreiben.
Forum: Reviews
In reply to: [WooCommerce Deutsche Post Internetmarke] Critical error, zero supportHallo @markusssk
entschuldigen Sie bitte die Betriebsst?rung. Leider ist unser Plugin direkt an diverse Schnittstellen der Deutschen Post gekoppelt. In solchen Situationen haben wir eigentlichen nur wenig M?glichkeit zu reagieren.
Funktioniert das Plugin in der Zwischenzeit wieder bei Ihnen?
Forum: Reviews
In reply to: [WooCommerce Deutsche Post Internetmarke] Stopped workingHello @danielboe
thank you for your message and for using our products.
The issue you have experienced had to do with various changes made at the end of the year. The issue should be fixed by now and you might need to log back into your Portokasse or update your product list.
Hallo @markusssk!
Vielen Dank für Ihre Nachricht und die Nutzung unseres Plugins.
Das Problem dürfte mit den Umstellungen um die Jahreswende zusammenh?ngen und sollte in der Zwischenzeit bereits gel?st sein.
In einzelnen F?llen wird wom?glich ein erneutes Einloggen, bzw. ein Update der Produktliste erforderlich sein.
Hallo @pitti1307, @greyfields!
Vielen Dank für Ihre Nachricht und die Nutzung unseres Plugins.
Das Problem dürfte mit den Umstellungen um die Jahreswende zusammenh?ngen und sollte in der Zwischenzeit bereits gel?st sein.
In einzelnen F?llen wird wom?glich ein erneutes Einloggen, bzw. ein Update der Produktliste erforderlich sein.
Forum: Plugins
In reply to: [License Manager for WooCommerce] Plugin sold ?@botprophet they did, cant complain ??
Forum: Plugins
In reply to: [License Manager for WooCommerce] Plugin sold ?@koullis I think they will make a pro version, which I also intended to do. The free version will most likely remain.
Forum: Plugins
In reply to: [License Manager for WooCommerce] Plugin sold ?Hello @koullis
Yes, the plugin has been sold to the capable developers over at @wpexpertsio. It just wasn’t that fun for me anymore and felt more like a burden than anything else. The new developers will take good care and I’ll be around in the forums to help out with what I (still) know!
Forum: Plugins
In reply to: [License Manager for WooCommerce] Changelog missingHello @mvsup
Should be there now, thank you for reporting this.
Hello @ehtmlu
This is something that needs to be decided based on the business logic of the application/plugin.
The conclusion I came to is: If I allow a certain number of activations/license keys in the free plugin, it might cover the use-case for a high percentage of potential customers, who will then see no need to switch to the paid version.
I honestly don’t know what kind of limits to set, but I do know that a lot of people have been asking for this feature, saying that they would gladly pay for it.
I’m afraid I don’t have a definitive answer for you, but I hope that my insight will help out at least a little bit ??
Forum: Plugins
In reply to: [License Manager for WooCommerce] lmfwc_rest_cannot_view Error 401Also: Please make sure that your API keys are assigned to an administrator, it will only work with users who have the
manage_options
capability, which usually is the administrator.Forum: Plugins
In reply to: [License Manager for WooCommerce] lmfwc_rest_cannot_view Error 401Very strange… Please send me screenshots from POSTMAN:
1. Request body
2. Request headers
3. Request URLWe’ll go from there.
Forum: Plugins
In reply to: [License Manager for WooCommerce] Account menu Link positionThere’s a helper function which I like to use for this purpose:
function lmfwc_array_insert_after( $needle, $haystack, $new_key, $new_value ) { if ( array_key_exists( $needle, $haystack ) ) { $new_array = array(); foreach ( $haystack as $key => $value ) { $new_array[ $key ] = $value; if ( $key === $needle ) { $new_array[ $new_key ] = $new_value; } } return $new_array; } return $haystack; }
The function looks for the “needle” in the “haystack”, and once it finds it, inserts the “new_value” using the “new_key”. It returns the modified array.
If anything’s unclear let me know ??