Forum Replies Created

Viewing 15 replies - 1 through 15 (of 3,461 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Yes, it has been added as well.

    Plugin Author Marcel Pol

    (@mpol)

    Hello Ilaria,

    I assume you mean in the editor? Or the list too?

    I added this update:
    https://codeberg.org/cyclotouriste/chessgame-shizzle/commit/d685dc2a4556d9802a102f97c800f71637550ecc

    I am not planning to have an update soon. Using the git version should be safe.

    REgards, Marcel

    Plugin Author Marcel Pol

    (@mpol)

    Hi Tiffany,

    Sorry for the slow reply.

    I am a little confused. Are you sure this is about this plugin? This is at version 4.x.x already, not 1.1.0. There hasn’t been an update in 5 months. Maybe an update to WP 7.0 made things go wrong?

    Regards, Marcel

    Plugin Author Marcel Pol

    (@mpol)

    Hello,
    Sorry for the slow reply.
    There is this CSS that you can add. You can add it in Appearance > Customizer > Custom CSS or in your own plugin. Did I miss anything?
    Regards, Marcel

    .gwolle-gb .gwolle-gb-read,
    .gwolle-gb .gwolle-gb-messages p {
    color: #fff;
    }
    .gwolle-gb .gwolle-gb-read a {
    color: #fff;
    }

    • This reply was modified 1 month, 3 weeks ago by Marcel Pol.
    • This reply was modified 1 month, 3 weeks ago by Marcel Pol.
    Plugin Author Marcel Pol

    (@mpol)

    Hello, I am sorry for the slow reply.

    Attached is some example code. The function can be used as a template function. The filter will add it to the title.
    This code can be added to the functions.php of your theme, preferably a child theme, or to your own custom plugin.
    You can manage? Questions are welcome.


    function my_gwolle_gb_get_page_number() {

    if ( is_admin() ) {
    return 0;
    }

    if ( isset( $_GET[ 'pageNum' ] ) ) {
    $pageNum = (int) $_GET[ 'pageNum' ];
    return $pageNum;
    }

    return 0;

    }

    function my_gwolle_gb_add_page_number_to_title( $title ) {

    $pageNum = (int) my_gwolle_gb_get_page_number();

    if ( $pageNum > 0 ) {
    $title .= ' Page: ' . $pageNum;
    }

    return $title;

    }
    add_filter( 'the_title', 'my_gwolle_gb_add_page_number_to_title', 10, 1 );

    Plugin Author Marcel Pol

    (@mpol)

    Hello kabeza,

    I am not sure about this. Most often the default spamfilters (timeout and honeypot) should defend against spambots. It’s only humans and directed spambots that can come through that. You could enable the Nonce spamfilter, that would mean that if using a spambot, it would need to be updated again daily.

    I would suggest Stop Forum Spam, that should catch this. But you claim you used all other options.

    I would advise to use moderation, but I assume you already use that.

    I am not planning to add recaptcha or a similar service, I am sorry to say.

    Regards, Marcel

    Plugin Author Marcel Pol

    (@mpol)

    Hello Kelly,

    This plugin doesn’t use a rest route. It is just a shortcode inside a page.

    I suspect Divi, the theme uses a rest route for ajax display.

    I see the website currently seems to work. I hope you managed.

    Regards, Marcel

    Plugin Author Marcel Pol

    (@mpol)

    Hello,

    For each taxonomy there are settings on the respective page. You can choose any sorting you prefer, or leave it default.

    With WooCommerce, please understand the difference in taxonomies and terms.
    Something like Size or Color is a taxonomy, while S, M, L or red and blue are terms. Does this help?

    If it is really about subterms, it cannot really be disabled, all settngs are per taxonomy.

    Regards, Marcel

    Plugin Author Marcel Pol

    (@mpol)

    Hoi Frank,

    Ja, ik was er al bang voor. Fijn dat het duidelijk is.

    Je zou de plugin kunnen verwijderen via Gastenboek > Instellingen > Verwijderen-tab en dan alles verwijderen.
    Daarna onder Plugins de plugin weer activeren. Staat hij hierna goed, zijn de database tabellen nu wel aangemaakt?

    Groet, Marcel

    Plugin Author Marcel Pol

    (@mpol)

    Hi Schumie,

    Could this CSS help you? You can add it to Appearance > Customizer > Custom CSS. You could also ask the maintainer of the theme to add this CSS.

    input[type="button"].button {
    background-color: var(--first-theme-color);
    color: #fff;
    }

    Plugin Author Marcel Pol

    (@mpol)

    Hello Christian,

    I’m sorry, that is not possible. There is an admin-reply possible. This plugin uses its own database tables.

    What is possible is to use comments as a guestbook. All you need to do is reverse the list of comments. They are more aimed at discussion, this plugin is not.

    Regards, Marcel

    Plugin Author Marcel Pol

    (@mpol)

    Hi Frank,

    Yes, there does seem something wrong.
    Could you go to Guestbook > Settings > Debug-tab and see if the tables in the database doe exist?
    There can be more information, but it seems data cannot even be saved, so checking database tables seems the first step.

    Regards, Marcel

    Plugin Author Marcel Pol

    (@mpol)

    Hi,

    It could be a different issue from that other post. That post seems to be about term_order being sorted as strings instead of integers.

    I don’t know why the admin screen doesn’t update the terms. Is there a JavaScript error in your console? What does the HTTP Get request look like, are they in the desired order?

    And could it be the parent term has a term_order set as 0?
    On the frontend, subterms are sorted as a floating number. So you have parent.child, like 4.5 for example.

    It might be two seaparate issues.

    Regards, Marcel

    Plugin Author Marcel Pol

    (@mpol)

    Hi,

    I hope you did find and fix the error that happened.

    A warning should not result in a crash. It is fixed in the next version, 4.10.1.

    Regards, Marcel

    Plugin Author Marcel Pol

    (@mpol)

    Hi,

    The slider plugin is not a concern for the guestbook.
    Though when time permits you could look into a replacement for that, there will come a day that it will break on you.
    https://ww.wp.xz.cn/plugins/slider/

    For the guestbook CSS< you have an option in QM which says Styles. When you click on that, you will see all the CSS files that are trying to get loaded.
    Do you see the next line in it?
    Footer
    gwolle_gb_frontend_css
    domain.nl
    wp-content/plugins/gwolle-gb/frontend/css/gwolle-gb-frontend.css


    That would mean it is trying to load the CSS file.
    If it’s not listed, than for some reason it is not being loaded.

    You are not perhaps using a filter to not load CSS, are you?
    See here:
    https://plugins.trac.ww.wp.xz.cn/browser/gwolle-gb/trunk/docs/filters/gwolle_gb_enqueue_frontend_css.txt

    Regards, Marcel

Viewing 15 replies - 1 through 15 (of 3,461 total)