pwallner
Forum Replies Created
-
Forum: Plugins
In reply to: [DSGVO All in one for WP] Google AnalyticsForum: Plugins
In reply to: [DSGVO All in one for WP] Google AnalyticsIch dachte daran, dass ich so die grafischen Auswertungen habe und dein tolles Plugin, ich kaufe mit demn?chst deine Pro weil dein Plugin das Beste ist und als Anerkennung deiner Arbeit! Weiter so!
Forum: Plugins
In reply to: [DSGVO All in one for WP] WP Rocketfolgende Meldung in der Konsole:
“ReferenceError: jQuery is not defined”
Und das Popup erscheint weiterhin nichtEvtl gibt es umschliessende Funktionen “(function ($) {” bzw “jQuery(document).ready(function () {”, dann w?re besser ?document.addEventListener(‘DOMContentLoaded’,function(event){?
Aber ich habe deinen Code noch nicht analysiert, jQuery Fehler ist es jedenfalls…
Ich habe jetzt jQuery auch in der Liste ?JS exclude“ von WP Rocket, dann geht es, aber glücklich bin ich nicht damit
Forum: Plugins
In reply to: [DSGVO All in one for WP] Google AnalyticsBen?tigt man dann eigentlich Google Analytics for WordPress by MonsterInsights noch? Das Plugin ist ja eigentlich nicht so schlecht…
Wenn nein, kannst du dieses nutzen bzw blocken?
LG
PatrickForum: Plugins
In reply to: [DSGVO All in one for WP] Zustimmung Seitenwechsel?Danke dir für die Auskunft! Dann k?nnte dieser Hinweis bei der nicht Pro Version eigentlich entfernt werden…
Aber wie du schon sagst, es ist nicht DSGVO-konform nutzbar, also für mich nicht nutzbar.
LG
PatrickI can. But not today.
Regards
PatUpdate to v2.0.0, it should work with subscriptions! Have fun!
Progress! It will work. Need some tests. But hopefully release in the next few weeks.
Should be fixed, please reopen if the error exists anymore..
Thx for reporting the error!
MCPat
I can try, maybe I get it working with subscriptions… But please be patient, it may takes a while…
Back again, was very busy in the past, but now, I will try to solve all errors mentioned here and at the other posts, but please be patient…
My plugin looks for downloadable products (See the plugin name and Description). This product isn‘t downloadable, so you can repeat purchase…
Regards
PatrickRichard,
I‘m a hobby programmer, so
1. sorry for the bad naming of my plugin
2. yes I looked at your code to get some ideas, but I think there are only a few lines which are the same.
3. I saw your last update was a year ago, so I thougt point 1 and 2 is ok…
4. Thank you for your plugin, without it, my plugin couldn‘t be as it is!
5. Thx for your tribute, I’m not a perfect programmer, so I appreciate it!Regards,
Patrickyou can try this plugin click
This is the message from woocommerce because it isn’t purchasable anymore…
It is annoying..Quick help (in functions php):
//[WooCommerce] Remove the "order again" button remove_action( 'woocommerce_order_details_after_order_table', 'woocommerce_order_again_button' ); //woocommerce remove message (en&de): [Item] has been removed from your cart because it can no longer be purchased. Please contact us for assistance. function customize_wc_errors( $error ) { if ( strpos( $error, 'entfernt' ) !== false ) { return ''; } elseif ( strpos( $error, 'removed' ) !== false ) { return ''; } else { return $error; } } add_filter( 'woocommerce_add_error', 'customize_wc_errors' );