Forum Replies Created

Viewing 15 replies - 481 through 495 (of 628 total)
  • Plugin Author Pixelbart

    (@pixelbart)

    @comicschau klappt leider noch nicht. Der Cookie wird noch nicht gesetzt. Ich kann leider auch nicht erkennen welches Plugin das Problem ist.

    Das nächste Update wird da auch keine Lösung bieten, einfach weil ich dafür keine Lösung habe. Es wird dann stattdessen eine Session gesetzt, die ist aber nach dem Schliessen des Browser wieder geleert und die Benutzer können erneut abstimmen. Das hatte in der Vergangenheit zu Problemen geführt.

    Vielleicht fällt mir noch mehr ein, aber aktuell habe ich für dich leider keine Lösung am Start. Ich gehe noch immer davon aus, dass das GDPR-Plugin die Cookies alle deaktiviert, die nicht explizit genannt wurden.

    Da ich das Plugin aber nicht nutze, weil es in der Vergangenheit Meldungen bzgl. Sicherheitslücken usw. gab, kann ich es auch nicht testen.

    Plugin Author Pixelbart

    (@pixelbart)

    @larissakeepmake you have to replace my code with the one you used at ACF.

    Plugin Author Pixelbart

    (@pixelbart)

    @comicschau das ist alles korrekt. Das Problem ist, dass keine Cookies gesetzt werden. Warum auch immer.

    Das kann ich einfach daran erkennen, dass kein helpful_user Cookie gesetzt wird. Das Cookie wird auch nicht mit Javascript gesetzt, deshalb wird es irgend ein Plugin blockieren. Welches Plugin das tut, kann ich dir aber leider nicht sagen.

    Auf den Seiten wo Helpful genutzt wird (von meiner Seite aus), werden auch meist nur 3-5 Plugins genutzt. Da gibt es nie Probleme.

    Auch die anderen Benutzer haben anscheinend nicht das Problem, deshalb muss es an einem Plugin oder Theme liegen. Einfach weil das Dinge sind, die jeder selbst installieren kann.

    Plugin Author Pixelbart

    (@pixelbart)

    @larissakeepmake

    Hi again,

    the problem is with your server as it does not support the get_browser() function. This function is not so important, it is for support only.

    Since I’m currently working on a new version of Helpful, but I still need some time for it, I can’t fix it directly today. If all goes well, I can do it tomorrow.

    Until then you can ignore the message because it doesn’t do anything in the frontend. So you can request feedback from your visitors as usual.

    – Kevin

    Plugin Author Pixelbart

    (@pixelbart)

    @larissakeepmake

    Hi Larissa, you can only change the color of the buttons with CSS. Here is an example:

    .helpful-con {
      border-left: 2px solid #2ecc71 !important;
    }
    

    Just add this to the Customizer under Custom CSS. If you use the shortcode, you can do something like that:

    <?php
    // get global post data
    global $post;
    
    // get post author id
    $post_author_id = $post->post_author;
    
    // get user data
    $user_data = get_userdata($post_author_id);
    
    // set shortcode and change headline
    $shortcode = sprintf( 
      '[helpful heading="Leave %s feedback"]', 
      $user_data->display_name
    );
    
    // echo shortcode
    echo do_shortcode($shortcode);
    

    I hope this helps you. I will make a note of that and offer help in the future to make it easier.

    • This reply was modified 6 years, 11 months ago by Pixelbart.
    • This reply was modified 6 years, 11 months ago by Pixelbart.
    Plugin Author Pixelbart

    (@pixelbart)

    @comicschau also am Caching-Plugin lag es nicht. Es wird noch immer kein Cookie gesetzt. Eventuell liegt es am GDPR Cookie Compliance Plugin, kannst du dort Cookies eintragen, die als wichtig gelten?

    Das Cookie von Helpful heißt: helpful_user

    Ansonsten weiß ich leider keine Lösung. Das Plugin wird aktuell von mehr als 600 Seiten genutzt, bisher gab es nur zwei Personen mit so einem Problem. Die eine Person hatte das Problem mit dem Caching.

    Plugin Author Pixelbart

    (@pixelbart)

    @comicschau danke für dein Feedback!

    Helpful verwendet Cookies um den Benutzer zu speichern. Es werden keine persönlichen Daten und auch keine IP gespeichert, trotzdem wird das Cookie benötigt, damit Helpful weiß, ob die Person bereits abgestimmt hat oder nicht.

    Ich habe auf deiner Seite gesehen, dass die Cookies blockiert werden und so keine ID für den Benutzer erstellt wird. Dann wird auch leider nichts richtig, oder gar nicht gespeichert.

    In der nächsten Version werden auch wieder “Sessions” eingesetzt, als Fallback. Bis dahin dauert es allerdings noch etwas, weil ich viel ändere und nur wenig Zeit habe.

    EDIT: Du nutzt ein Caching-Plugin. JS bitte nicht minifizieren, eventuell ist dein Problem dann schon gelöst. Die meisten Caching-Plugins schreiben dir das auch, dass man Javascript-Dateien (.js) nicht cachen soll, weil es zu Problemen kommen kann.

    • This reply was modified 6 years, 12 months ago by Pixelbart.
    Plugin Author Pixelbart

    (@pixelbart)

    Hi @larissakeepmake,

    you can output the shortcode using PHP. You don’t need a hook for that. This will be easier in the future, but it will take a little longer, because I don’t have so much time for it at the moment. But it’s already my turn to rewrite Helpful completely.

    In PHP you can output the shortcode like this:

    <?php echo do_shortcode("[helpful]"); ?>

    Afterwards the automatic output of Helpful is deactivated. The option can be found in the Helpful settings under Details. There you can hide Helpful. Helpful will then no longer be output automatically.

    I hope I was able to help you a little. The shortcode will still work in the future and should not cause any problems.

    With the shortcode you can also ask individual questions per post. An example shortcode with a different heading looks like this:

    [helpful heading="How do you like that?"]

    Plugin Author Pixelbart

    (@pixelbart)

    @mmelton12

    Resetting the settings in the meantime should only reset the values and leave the settings as they are.

    This was not the case in the beginning. But now everything should be correct.

    Forum: Plugins
    In reply to: [Helpful] Error
    Plugin Author Pixelbart

    (@pixelbart)

    @bdrinkwater

    Thanks for your feedback. get_browser() is not configured correctly on your server. The message should only appear if you set WP_DEBUG to true.

    In one of the future updates I will disable browser detection with get_browser() or add it as an option, because apparently a lot of people can’t use the PHP extension for get_browser().

    The function is not so important for Helpful, because it only tries to find the browser of the user who is sending the feedback form. This information is then normally stored. Since I didn’t want to work with third-party services in Helpful, I used the get_browser() PHP extension.

    Next time, please create your own thread here in the forum so that I will be notified. I could have answered you much faster 🙂

    • This reply was modified 6 years, 12 months ago by Pixelbart.
    • This reply was modified 6 years, 12 months ago by Pixelbart.
    Forum: Plugins
    In reply to: [Helpful] Error
    Plugin Author Pixelbart

    (@pixelbart)

    @rory01 I have seen that no cookies are set. Maybe one of your plugins is blocking cookies? Helpful needs cookies to know if a user has already voted.

    This is DSGVO (GDPR) compliant as no IP address is stored.

    Forum: Plugins
    In reply to: [Helpful] Error
    Plugin Author Pixelbart

    (@pixelbart)

    Hi @rory01,

    I think the mistake is related to auto-optimizing. You can summarize and minify the javascript files. This works well in the rarest cases and Helpful also has problems with it.

    The console (F12 in Google Chrome) also displays errors regarding Auto-Optimize. The error only occurs if something in Javascript doesn’t work, then Helpful can’t save something because it doesn’t work for Helpful.

    There’s not much I can do about that. This is also written by all plugins that offer such functions.

    Forum: Reviews
    In reply to: [Helpful] Excellent Plugin
    Plugin Author Pixelbart

    (@pixelbart)

    Thank you very much! @swissvirtual

    Plugin Author Pixelbart

    (@pixelbart)

    Thank you very much for your detailed review! 😀 I packed your profile into the changelogs. Maybe you should link your website. Then you might get some visitors.

    Thanks again for your help!

    Plugin Author Pixelbart

    (@pixelbart)

    I have to thank you! I’ll update Helpful then right away so all have the corrections. I have rewritten a lot of code and commented.

    With the help of Codacy, I was also able to solve other things that I didn’t have on the screen before.

    Kevin

Viewing 15 replies - 481 through 495 (of 628 total)