• Resolved karlmevans

    (@karlmevans)


    I used the import feature to move entries from an old website into a new one. For some reason, it displays the entries but the counter says 0 entries, and pagination is not working.

    Also the special css for admin entries disappeared.

    The page I need help with: [log in to see the link]

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

    (@mpol)

    Hi Karl,
    I see it ‘fixed’ it by itself ?? The counter has mostly to do with the transient that is stored. After adding a new message or waiting a day it gets remade.

    Admin CSS is a setting under Guestbook > Settings > Reading-tab.
    After importing the user-id’s are not carried over for each entry. This is because user IDs are not always the same across each website. But it can be a good idea to add this to export/import, based on user-id and user-email/author-email.
    There is no interface to change the author ID of an entry. It can only be done in the database directly. Often this is not advisable. If you do dare to go this way, make sure to make a backup before changing the database.

    I see the theme has no good support for button styling. You could add this PHP code to your website:

    function my_gwolle_gb_button_class( $classes ) {
            // $classes is a string
            $classes .= ' orangebtn'; // Add to it or use str_replace. Mind the space.
            return $classes;
    }
    add_filter( 'gwolle_gb_button_class', 'my_gwolle_gb_button_class', 10, 1 );

    Does that help?

Viewing 1 replies (of 1 total)
  • The topic ‘Import problems’ is closed to new replies.