Marcel Pol

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 167 total)
  • Author
    Posts
  • in reply to: Change “…” to “Edit Post” #11144
    Marcel Pol
    Keymaster

    Hello Peter,

    Yes, I see that too.

    You could add this CSS to your website:

    html body div.gb-author-info {
        max-width: 80%;
    }

    You can add it to Appearance > Customizer > Custom CSS or to your own plugin or child theme.

    Does this help?

    in reply to: Subscribe to new entries #11142
    Marcel Pol
    Keymaster

    Hello,

    Thank you. I do like the idea.
    I suppose also visitors who are not logged in can subscribe, right? That makes it a bit more work, with confirmation through email, for subscribing and unsubscribing.

    I am a bit distracted lately, but I will look at this soon.

    Regards, Marcel

    in reply to: Page with Gwolle guestbook is lagging #11096
    Marcel Pol
    Keymaster

    Hi,
    Sorry to hear that.

    Can you install the plugin Query Monitor?
    Then enable visual editor and emoji, together with the ad-inserter plugin.

    Query Monitor might tell where the slowness is.

    Regards, Marcel

    in reply to: Purchased Add-On on MojoMarketplace. What to do? #11082
    Marcel Pol
    Keymaster

    Hi,

    I just added an order for you. If all is correct, you can download the zip file.

    Regards, Marcel

    in reply to: WRITE A NEW ENTRY – how do I center this text #11043
    Marcel Pol
    Keymaster

    Hi, this CSS is probably what you are looking for:

    .gwolle-gb .gwolle-gb-write-button input.button {
    	margin: 0 auto;
    	float: none;
    	display: block;
    	background-color: #119999;
    }

    Regards, Marcel

    Marcel Pol
    Keymaster

    Hi Timothy, there is CSS that can do this:

    .gwolle-gb .gwolle-gb-even {
    	background-color: #223344;
    }

    You probably want to play with the color. There are color pickers on the internet where you can try to make it have the right color for you.

    Regards, Marcel

    Marcel Pol
    Keymaster

    Hi Timothy,

    About the grey background, that is only for admin entries. In the settings this can be disabled again, as was the default.

    For the white-space, you could try this CSS, which can be added at Appearance > Customizer > Custom CSS.

    html body .gwolle-gb .gb-entry {
        padding: 20px 0;
    }

    Does this help?

    Marcel Pol
    Keymaster

    Hello Thomas,

    Thank you.

    The German translation is not completely up to date:
    https://translate.wordpress.org/locale/de/default/wp-plugins/gwolle-gb/
    I see many strings are waiting, it’s just that there is no active Editor. Would you want to become editor? That way you can validate translations and bring it to 100% translated.
    Alternatively, you could work with the German translation team to get it to 100% again.

    There are no automatic updates. I sometimes do send an email notification for a manual update.

    Regards, Marcel

    in reply to: How set the Last Posts on “Homepage” ? #10874
    Marcel Pol
    Keymaster

    Ouch, for the star.gif you need the full path, since the relative path has changed:
    /wp-content/plugins/gwolle-gb-addon/assets/rateit/star.gif

    I am not sure about the buttons, could you add these lines to them?

    font-size: 18px;
    line-height: 46px;
    min-height: 40px;
    padding: 0 20px 0 20px;

    in reply to: How set the Last Posts on “Homepage” ? #10872
    Marcel Pol
    Keymaster

    Hi, custom CSS can be added under Appearance > Customizer > Custom CSS

    Does this work for you?

    html body li.gwolle-gb-widget {
        padding: 13px 0;
        line-height: 15px;
    }
    html body .rateit .rateit-preset {
        background: url(star.gif) left -16px; // red
        opacity: 0.7;
    }
    
    // buttons:
    html body div.gwolle-gb input[type="button"],
    html body div.gwolle-gb input[type="submit"] {
    	border-radius: 7px 7px 7px 7px;
    	border-width: 2px 2px 2px 2px;
    	border-color: #F44336;
    }
    html body div.gwolle-gb form.gwolle-gb-write div.input input[type="text"],
    html body div.gwolle-gb form.gwolle-gb-write div.input input[type="email"],
    html body div.gwolle-gb form.gwolle-gb-write div.input input[type="url"],
    html body div.gwolle-gb form.gwolle-gb-write div.input textarea,
    html body div.gwolle-gb form.gwolle-gb-write div.input select {
    	border-width: 2px 2px 2px 2px;
    	border-color: #F44336;
    }

    I did not manage to reduce the size of the starts, it’s a sprite.

    in reply to: How set the Last Posts on “Homepage” ? #10860
    Marcel Pol
    Keymaster

    Hi Christian,

    You can send a private message to marcel@timelord.nl

    After that I prefer to have the communication continue here in the forum.

    Regards, Marcel

    in reply to: How set the Last Posts on “Homepage” ? #10823
    Marcel Pol
    Keymaster

    Hello Chris,

    You could either use the widget, if your frontpage supports widgets.
    You can also use the shortcode for the widget-layout: [gwolle_gb_widget]. The readme has parameters listed that you can use.
    You can also use the standard layout of the list with the main shortcode: [gwolle_gb_write]

    About styling for the buttons, could you share the address of the website and explain what you want? I can try to write some CSS that might be fitting with the rest of the website.

    Regards, Marcel

    Marcel Pol
    Keymaster

    By the way, I see the theme has no styling for form fields. You could add this custom CSS also:

    html body div.gwolle-gb input[type="button"],
    html body div.gwolle-gb input[type="submit"] {
    	color: #fff; /* white */
    	background-color: #ca9b52;
    	border: 1px solid #ba8b42;
    }
    
    html body div.gwolle-gb form.gwolle-gb-write div.input input[type="text"],
    html body div.gwolle-gb form.gwolle-gb-write div.input input[type="email"],
    html body div.gwolle-gb form.gwolle-gb-write div.input input[type="url"],
    html body div.gwolle-gb form.gwolle-gb-write div.input textarea,
    html body div.gwolle-gb form.gwolle-gb-write div.input select {
    	border: 1px solid #ca9b52;
    }
    Marcel Pol
    Keymaster

    Hi,
    Thank you for coming back on that delete button.

    About the like buttons, try this CSS:

    .gwolle-gb .gb-entry .gb-entry-content img {
    display: inline-block;
    }

    You can add it to Appearance > Customizer > Custom CSS.

    I will ad it to the plugin, so it will be part of the next version.

    Does this help?
    Regards, Marcel

    Marcel Pol
    Keymaster

    Hello Pfaw,
    That is unfortunate.
    In my testing environment it all works.
    Could you share the address of your website? Then I can take a look and see what is happening.

    Regards,
    Marcel

Viewing 15 posts - 1 through 15 (of 167 total)