• Hallo,

    ich habe das Gästebuch nach Anleitung installiert.
    Ich habe es über die Plugin Seite im WP Admin instzalliert.
    Dann den Shortcode auf der gewünschten Seite eingebunden.
    Mein erstellter Adminbeitrag ist zu lesen.
    Jedoch kann kein Besucher einen Eintrag hinterlassen da es keinen Button oder ähnliches dafür gibt.

Viewing 12 replies - 1 through 12 (of 12 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Hi,
    Can you share the url of the website and page?
    I suppose it is just a CSS issue, where the button has a white color on a white background. Some custom CSS would solve it.

    Thread Starter dererkster

    (@dererkster)

    Hi Marcel,

    hier ist der Link zum Gästebuch:
    https://dienstleistungen-stolowski.de/feedback
    Ich habe man mit Strg + a alles markiert. Jedoch wird dort kein Button sichtbar.

    Thread Starter dererkster

    (@dererkster)

    Aber ich habe mal die Webseite via Firefox untersucht und dann im Code den Button entdeckt. Er ist tatsächlcih komplett weiß wie der Bereich der Webseite.

    Plugin Author Marcel Pol

    (@mpol)

    Try this CSS. You can add it in Appearance > Customizer > Custom CSS.

    #gwolle_gb_write_button .mdc-text-field__input, 
    #gwolle_gb_write_button input:not([type="submit"]):not([type="checkbox"]) {
        background-color: #228ae6;
    }
    • This reply was modified 5 years, 5 months ago by Marcel Pol.
    Thread Starter dererkster

    (@dererkster)

    I have used this Code in the css file from the plugin
    XXXX\wp-content\plugins\gwolle-gb\frontend\css
    and its works fine. But so I have now a big field in this color.
    How can I change only the text color because when I add color: and grey or a colorcode the changes not accepted.

    #gwolle_gb_write_button,
    #gwolle-gb-write-button {
    	margin: 20px 0 10px;
    	background-color: grey;
    Plugin Author Marcel Pol

    (@mpol)

    Hmm, please do not change the files in the plugin. They will be overwritten on the next upgrade.
    It is better to place custom CSS in:
    Appearance > Customizer > Custom CSS.

    The ID that you are targeting is for the div around the button. You can better target the button directly:

    #gwolle_gb_write_button,
    #gwolle-gb-write-button {
    	color: transparent;
    	background-color: transparent;
    }
    #gwolle_gb_write_button input.button,
    #gwolle-gb-write-button input.button {
    	color: blue;
    	background-color: grey;
    }
    • This reply was modified 5 years, 5 months ago by Marcel Pol.
    Thread Starter dererkster

    (@dererkster)

    I have change the code in the custom css yesterday and undo the changes in the css file from the plugin.
    Now I have used your new code from today and its work fine. Thanks for that.

    Another Question:
    my Guestbook labels are in german. How can I edit the names of the labels ?
    Because the free text label is named “Gästebuch” an I will change it to another.
    In the language files (XXX\dienstleistungen-stolowski.de\httpdocs\wp-content\plugins\gwolle-gb\lang) is no german file. Where can I changhe the Labels ?

    Thread Starter dererkster

    (@dererkster)

    And Second Question: Which file must be edit to add some empty lines because the distance between some lines are to close.

    Thread Starter dererkster

    (@dererkster)

    Ok.I have found The Language file in the main language folder from wordpress, but there are not the labels and placeholder from the guestbook what the guest are seen.

    • This reply was modified 5 years, 5 months ago by dererkster.
    Plugin Author Marcel Pol

    (@mpol)

    This CSS could help. By default it is 10px, it can be set higher.

    body #gwolle_gb .gb-entry {
        padding: 13px 0;
    }

    About the language files, those will be overwritten on an update. It is much better to add them to the language files that get updated through the dashboard. Shall I request that you become translator for the German strings? It can take a bit of time to have them updated, but they won’t be overwritten on update anymore.

    Thread Starter dererkster

    (@dererkster)

    Hi,

    the Problem is that I will only change the Label and placeholder of the guestbook.

    So I will do a daily backupso when the plugin get an update so i can change the labels/ placeholders manually if the filecontant have an other content than before the update. when not i overrife the file with the backup.

    erledigt

    • This reply was modified 5 years, 2 months ago by chatzehus.
Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Besucher können nichts eintragen’ is closed to new replies.