PascalBajorat
Forum Replies Created
-
Forum: Reviews
In reply to: [Analytics Germanized for Google Analytics (GDPR / DSGVO)] Zu überladenHallo ohfuchs,
tut mir leid, wenn du nur einen so eingeschränkten Blick auf das Plugin wirfst und anhand längst behobener Bugs bewertest. Denn genau das widerspricht deiner eigenen Aussage einer Bewertung des derzeitigen Zustands.
Deine andere Meldung habe ich gerade überprüft und kann sie nicht bestätigen. Wenn die Cookie Consent Banner abgeschaltet sind, wird davon weder CSS noch sonstiger Code in die Seite geladen. Es ist also nichts vorhanden was dort nicht reingehört.
Ausschließlich der ein KB große Code für den Opt-Out wird geladen und das ist auch korrekt, sonst würde der Opt-Out nicht funktionieren und genau das ist das essenzielle Feature seit der ersten Version, somit kannst du diesen Code nicht meinen.
Es hat also alles seine Richtigkeit. Der Inline-Code gehört zu WordPress localize Funktion, um die Opt-Out Bestätigung in der korrekten Sprache auszugeben und für WPML übersetzbar zu machen. Falls dich dieser stört, kannst du dich direkt im allgemeinen WP Forum beschweren, denn dabei handelt es sich um eine Core-Funktion und WP Vorgabe.
Es ist also weder in der Ausgabe überladen, noch existiert der genannte Bug mit den Daten für Cookie Consent, wenn diese korrekt abgeschaltet sind.
Mit freundlichen Grüßen
PascalForum: Reviews
In reply to: [Analytics Germanized for Google Analytics (GDPR / DSGVO)] Zu überladenHallo ohfuchs,
vielen Dank für dein Feedback. Ich finde es außerordentliche schade, dass du einfach nur eine 1-Sterne Bewertung vergibst, anstatt dich über das Support-Forum konstruktiv an der Weiterentwicklung oder Bugfixing zu beteiligen.
Die neuen Funktionen sind Nutzerwünsche. Bugs die gemeldet werden, haben wir in der Regel umgehend behoben.
Schade das du diese Arbeiten für ein kostenloses Plugin nur mit einem Stern würdigst und auch nicht versuchst konstruktiv über ein Support-Ticket auf das Plugin positiv einzuwirken, dass ist eigentlich nicht der Gedanke für eine gut funktionierende Open-Source Community und Entwicklung.
Deine Bug-Meldungen habe ich notiert. Es würde mich freuen, wenn du deine Bewertung im Sinne des Community und Open-Source Gedanken noch einmal überdenkst.
Beste Grüße
PascalHey,
we’ve updated the plugin.
Since version 1.2.0 you can use the Cookie Consent banner as simple notification but also as opt-in or opt-out for Google Analytics and other scripts.
Thx for your feedback.
Beste Grüße
Pascal BajoratNo, it is only a simple Information.
Generally it’s possible to use the cookie consent banner as opt-in, but we can’t control the other cookies and scripts in your WordPress installation so this feature could be misleading if users think they have a opt-in but it’s only for analytics and not the whole website and other plugins.
That is the reason why we have integrated Cookie Consent only as information banner and not an opt-in.
Hallo Nyks,
danke für dein Feedback. Das Plugin bietet aktuell leider keine Daten direkt aus Google Analytics im Dashboard an, dazu müsstest du Analytics weiterhin ganz normal aufrufen.
Ich habe deinen Funktionswunsch aber notiert und auf die To-Do gesetzt.
Beste Grüße
PascalHi,
danke für dein Feedback.
Du meinst eine Editor Erweiterung, mit welcher der Shortcode gesetzt werden kann oder was genau stellst du dir vor? Habe ich leider noch nicht ganz verstanden.
Hi Felix,
jo, da hat sich ein Bug eingeschlichen, danke für den Hinweis. Wird mit Version 1.1.0 behoben (kommt in den nächsten Tagen).
P.S. Wenn dir das Plugin gefällt, würden wir uns natürlich sehr über eine Review freuen 🙂
https://wordpress.org/support/plugin/ga-germanized/reviews/#new-post
Beste Grüße
PascalForum: Plugins
In reply to: [PB SEO Friendly Images] Proposal for the best replacement in single imagesThank you, this will be included with the next update.
Forum: Plugins
In reply to: [PB SEO Friendly Images] Undefined index errorHi that is only a notice message (not an error) and you can ignore it, generally I recommend to disable debug mode in WordPress for a live site.
It’s on my list for the next update, thx.
Forum: Reviews
In reply to: [PB SEO Friendly Images] Doesn’t work on PHP 7.0Hi Lance,
thank you for this 1-Star-Rating instead of using the support for a free plugin.
That is the right way to use and support open source software.By the way: I’m using also PHP 7 on all of our servers, so it is not incompatible with PHP 7. The plugin is installed on more than 10,000 websites also with PHP 7.
If you are interested in a solution instead of bashing with bad ratings please use the support forum and change this rating. Thank you.
kindly
PascalForum: Plugins
In reply to: [PB SEO Friendly Images] Breaks image upload formHey,
can you paste the broken image tag, please.
Pascal
Forum: Reviews
In reply to: [PB SEO Friendly Images] Pretty simple and works correctlyThank you 🙂
Forum: Plugins
In reply to: [PB SEO Friendly Images] How can I exclude a certain page?Hi,
depending on the theme and used functions the post content filter could also affect content on the frontpage.
Post content is not restricted only to single posts.
You can remove the filter with some custom code in your functions php:
remove_filter( 'the_content', array('pbSEOFriendlyImages', 'prepareContentImages'), 999 );Use conditional tags to run it on the right page:
https://codex.wordpress.org/Conditional_Tagskindly
PascalForum: Plugins
In reply to: [PB SEO Friendly Images] Does this work on PagesSimple answer: yes, it works with Pages and every other Custom-Post-Type.
Forum: Plugins
In reply to: [PB SEO Friendly Images] Featured Image Still Showing Image NameThis Filter can prepare Fulltext / HTML Code with images:
add_filter('FILTER-NAME', array('pbSEOFriendlyImages', 'prepareContentImages'));This Filter is for functions similiar to the WordPress-Post-Thumbnails:
add_filter( 'wp_get_attachment_image_attributes', array('pbSEOFriendlyImages', 'addImgTitlePostThumbnail'), 10, 2 );I hope this will help you to fix your problem.