Marcel Pol

Forum Replies Created

Viewing 15 posts - 61 through 75 (of 155 total)
  • Author
    Posts
  • in reply to: Submit Button Colour Change?? #7754
    Marcel Pol
    Keymaster

    Hi,
    Great that it worked.

    You could try this CSS:

    label.text-info {
        font-size: 120%;
    }
    in reply to: Custom Field not visible in front-end #7716
    Marcel Pol
    Keymaster

    Hi Jos,
    Good that it works as it should.

    You can disable the title field with CSS. You can add custom CSS in Appearance > Customizer > Custom CSS.

    span.gb-metabox-titel-name {
       display: none;
    }

    And you can make the text bold if you want.

    span.gb-metabox-titel-content {
        font-weight: bold;
    }

    Does that help?

    • This reply was modified 2 years ago by Marcel Pol. Reason: typing error
    in reply to: Custom Field not visible in front-end #7714
    Marcel Pol
    Keymaster

    Hi Jos,
    Could it be the Title field is available in the Metabox? On the top right of each entry there should be a box that is available when you click the “…”.

    In the settings for each field you can also set it to be above or below the content of the entry.

    If this wasn’t the answer, could you share the link to the website? I would like to take a look then.

    Regards,
    Marcel

    in reply to: automatic link creation #7705
    Marcel Pol
    Keymaster

    Hi Birgit,
    Could you email me on marcel@timelord.nl ?
    We could discuss it in private.

    Regards,
    Marcel

    in reply to: automatic link creation #7696
    Marcel Pol
    Keymaster

    Hi Ian,
    That is a good idea. I will look into adding it to the addon or maybe the main plugin. The latter sounds more logical I think.
    I don’t dare to give an estimate, real life here has been quite busy recently.

    Regards,
    Marcel

    in reply to: Field names have a dark blue background #7655
    Marcel Pol
    Keymaster

    Hi,
    What a mess :)
    Does this work?


    html body div.gwolle-gb div.label,
    html body div.gwolle-gb label.text-info {
    background-color: transparent;
    }

    in reply to: Field names have a dark blue background #7643
    Marcel Pol
    Keymaster

    Hi, does this CSS work?

    By the way, can I hate these themes with a passion? :)
    They should make this CSS for all buttons, not just their own. That is what a theme is for.
    Could you contact the theme maintainers and point them here? If their code ever gets changed, you have to redo it all.


    .gwolle-gb input[type=”button”],
    .gwolle-gb input[type=”submit”],
    .gwolle-gb input.button {
    border: 1px solid #1d98a9;
    background: linear-gradient(to bottom,#229ea9 0%,#04808b 100%);
    }
    .gwolle-gb input[type=”button”]:hover,
    .gwolle-gb input[type=”submit”]:hover,
    .gwolle-gb input.button:hover {
    background: #29a4b5;
    background: linear-gradient(to bottom,#47c2d3 0%,#29a4b5 100%);
    }

    in reply to: Submit Button Colour Change?? #7642
    Marcel Pol
    Keymaster

    Hi, this might be better.
    Does this work for you on version 4 of the guestbook plugin?


    .gwolle-gb input[type=”button”],
    .gwolle-gb input[type=”submit”],
    .gwolle-gb input.button {
    box-shadow: 0 0.25em 0 0 #B36E09,0 4px 9px rgba(0,0,0,0.75);
    border-color: #E0981E;
    background-color: #F5A51D;
    }
    .gwolle-gb-write-button input {
    border-radius: 0.25em;
    border: none;
    padding: 4px 8px;
    }

    in reply to: Field names have a dark blue background #7502
    Marcel Pol
    Keymaster

    Hi, this CSS should work:

    .gwolle-gb label.text-info {
        background-color: #fff;
    }

    If it doesn’t work, could you then share the address of the website?

    in reply to: wpml compatibility #7465
    Marcel Pol
    Keymaster

    Yes, it should be.
    This plugin doesn’t use a custom post type, but it’s own database table for content, from a time before custom post types existed.

    The FAQ at wp.org explains it well (I think):

    I use a Multi-Lingual plugin

    There are 2 settings that you need to pay attention to. If you saved the settings for the form tab, you should save an
    empty header and notice text. It will fill in the default there after saving, but that is okay.
    As long as you saved an empty option, or it is still not-saved, then it will show the translated text from your MO file.

    Also, you will want to use the book_id parameter of the shortcode for multiple guestbook.

    If you do have issues, let me know.

    in reply to: Number of entries #7425
    Marcel Pol
    Keymaster

    Hi,
    Thank you for reporting this. It was reported some time ago and I didn’t find the error. Now I did.
    It should be fixed in the next version.

    in reply to: Mailchimp compatible #7394
    Marcel Pol
    Keymaster

    Now it gets confusing to me :)

    The email is the email notification?
    Email notifications are sent by standard wp_mail. I don’t know mailchimp that well, I assume it doesn’t keep a history of outgoing email.

    If you mean the email address that is entered with a guestbook entry, that is something else. That will not work by default I assume, it needs code to integrate this.

    in reply to: Username and email pre-entered #7393
    Marcel Pol
    Keymaster

    Hi Esche,
    I am not sure how to help you the best. I see the guestbook buttons are styled the same as the contact form buttons.
    It seems to be a setting in your theme. Did you already check Appearance > Customizer for your form and button styling?

    I could paste some better CSS in here, but it might be the wrong way to help. If needed, your question might be better placed at the support forum of oceanwp. They will know what the settings are and how you can change them.

    If I see it correctly, standard color for the button is blue with white text. Somehow you ended up with black buttons and blue text.

    in reply to: Username and email pre-entered #7383
    Marcel Pol
    Keymaster

    Hi Esche,
    Sorry for the slow reply.

    1. Those are pre-entered because you are logged in. If you try with a browser where you are not logged in it will be empty.

    2. Could you share the address of your website? I can then take a look and maybe write some CSS for you.

    This might already give a hint:

    .gwolle-gb input.button {
    background-color: #0000ff;
    color: #ff0000;
    }

    in reply to: Mailchimp compatible #7382
    Marcel Pol
    Keymaster

    Hi Cesar,
    Sorry for the slow reply.

    I am not sure what you mean with Mailchimp compatible.

    This plugin does sends some email notifications in the standard way to admins.

    Could it be you mean you want guestbook entries included in newsletters? I doubt that would work currently. Let me know if this is what you are asking about.

Viewing 15 posts - 61 through 75 (of 155 total)