• Resolved serpher

    (@serpher)


    Only on newest Chrome TablePress shows the whole table (not just 5 rows per page) and it’s missing search. I cleared whole cache and the same. Tried Vivaldi and Firefox and it works fine.

Viewing 14 replies - 1 through 14 (of 14 total)
  • Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    Just to be sure: Please check when logged-out of WordPress in Chrome (or maybe in a Private/Incognito browsing tab).

    Can you please post a link to the page with the table where this problem happens, so that I can take a direct look? Thanks!

    Regards,
    Tobias

    Experiencing the same problem. Not paginating and no sorting option on header.

    Thread Starter serpher

    (@serpher)

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    serpher, unfortunately, the link is not working for me, the connection keeps timing out…

    octavianhd, can you please also post a link to the page with the table where this problem happens?

    Regards,
    Tobias

    Thread Starter serpher

    (@serpher)

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks, that works now.

    I’m not exactly sure, but I have a feeling that the Smart Slider 3 plugin is interfering here. Can you please try again after temporarily deactivating that?

    Regards,
    Tobias

    Thread Starter serpher

    (@serpher)

    Tried it, doesn’t work. Can’t tell what interferes with TablePress on Chrome 90.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    ok, then we’ll have to go step by step: Can you please try again after temporarily deactivating all other plugins and after switching to a WordPress default theme like Twenty Twenty? That way, we can find what’s causing this.

    Regards,
    Tobias

    Thread Starter serpher

    (@serpher)

    OK, apparently there’s something wrong with the child theme of OceanWP. No clue what. And why it does affect only Chrome 90.

    What the code looks like. Why the hell div turned into table???

    TablePress on Chrome 90

    • This reply was modified 3 years, 11 months ago by serpher.
    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    ok, then the problem is with the loading of the jQuery library in your child theme. I suggest to check what modifications the theme does regarding to that.

    That HTML code is correct in this case. Nothing is “changed”. There are HTML elements missing, namely the ones for the JavaScript features. So, this is just a consequence of the jQuery problem.

    Regards,
    Tobias

    Thread Starter serpher

    (@serpher)

    The thing is that only Chrome 90 has this problem. Firefox, Vivaldi Chrominium v89 don’t.

    The code that’s messing it up:

    function defer_parsing_of_js( $url ) {
        if ( is_user_logged_in() ) return $url; //don't break WP Admin
        if ( FALSE === strpos( $url, '.js' ) ) return $url;
        if ( strpos( $url, 'jquery.js' ) ) return $url;
        return str_replace( ' src', ' defer src', $url );
    }
    add_filter( 'script_loader_tag', 'defer_parsing_of_js', 10 );

    Used for deferring JS on load.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    could it be that you are only seeing the problem in Chrome 90 because that’s where you are logged-in into WordPress (or the other way around)?

    Regardless, I would recommend to remove this code here.

    Regards,
    Tobias

    Thread Starter serpher

    (@serpher)

    I was logged out on Chrome 90.
    Nevertheless the code is removed. Not really performance penalty.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    yes, that will be the best then.

    Best wishes,
    Tobias

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Pagination, search missing on Chrome 90’ is closed to new replies.