• Resolved kubama

    (@kubama)


    HI!
    I put guestbook on my page. It works but ony on PC’s.
    Button to create new entry shows in mobiles (iPhone / iPad) but
    It is not clickable, it cannot be pressed. Why?

    Second case – Near the button from the new entry the text is shown (in the same line) – it is ugly.

    Text with the number of entries or with information that there are no entries.

    How to change that?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter kubama

    (@kubama)

    Now the button doesn’t work anywhere, I have no idea why. ??

    Plugin Author Marcel Pol

    (@mpol)

    Can you share the address of your website? I think it is just some CSS that is in the way, or maybe a JavaScript error.

    About the ‘no entries text’, you can change it with a PHP filter. But you could also just write a first welcoming entry.

    function my_gwolle_gb_read_no_entries( $entry_html ) {
            // $entry_html is a string
            $entry_html = '(no entries yet)';
            return $entry_html;
    }
    add_filter( 'gwolle_gb_read_no_entries', 'my_gwolle_gb_read_no_entries', 10, 1 );
    Thread Starter kubama

    (@kubama)

    Thanks for the answer!

    1) The site is currently working, it does not work “outside” yet. You cannot add an entry from Apple mobile devices. What should I look for?

    2) But how do I put the first entry – will there still be text with the number of entries? This is ugly. How do you turn it off at all? Where should I enter this code?

    Plugin Author Marcel Pol

    (@mpol)

    If I cannot see it, it is hard for me to help you.

    You can open the Inspector by right-clicking on the element and select “Inspect Element”. There should open an extra tab in your browser. There you should be able to see which element falls over the button.

    You can also open the Console-tab in that Inspector, reload the page and see if there are JavaScript errors. If there are errors, can you paste them in here?

    You can make the number of entries invisible with CSS:

    #gwolle-gb-total {
        display: none;
    }
    Thread Starter kubama

    (@kubama)

    Where I should put this code?

    Plugin Author Marcel Pol

    (@mpol)

    This CSS will fix the button on mobile:

    #gwolle_gb_write_button input.button {
        float: none;
    }

    Your theme got in the way.

    You can cut and paste this CSS to Appearance > Customizer > Custom CSS

    Thread Starter kubama

    (@kubama)

    Thanks!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘New entry button don’t work on iPhone/iPad’ is closed to new replies.