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

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    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

    Thread Starter williamsc16

    (@williamsc16)

    Thank you for the quick response.

    This is a member only site with private information. Please email me at and I can send you a temporary username and password.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi Carol,

    thanks for the email with the account details! I was able to log in and could reproduce the issue.
    You are basically affected by this: https://www.ads-software.com/support/topic/scroll-top-blocks-other-plugin-functionality-on-wp-45?replies=6

    A JS file in your theme contains a bug that only shows with the latest version of the jQuery JS library. Therefore, this error will have to be fixed in your theme. One idea could therefore be to contact your theme developer about this and ask them for an updated/fixed version.
    As it’s a small change, you could also fix this yourself, by changing

    $("a[href=#scroll-top]")

    to

    $('a[href="#scroll-top"]')

    in the /wp-content/themes/responsive/core/js/responsive-scripts.min.js file.

    Regards,
    Tobias

    Hi,

    I am having this issue as well. The search function doesn’t work for the tables with the new WordPress update.

    Here is a table using it: https://car.uwosh.edu/find-a-tutor/

    I am using Divi as my theme and could not find the file you are referencing in wp-contents.

    Thank you.
    Kayde

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi kempenk,

    you are indeed suffering from the same problem. In your case, the offending line is

    $( 'a[href*=#]:not([href=#])' ).click( function() {

    in the file https://car.uwosh.edu/wp-content/themes/Divi/js/custom.js

    It might sufficient to change that line to

    $( 'a[href*="#"]:not([href="#"])' ).click( function() {

    but for a definite answer, you might want to ask the theme developers.

    Regards,
    Tobias

    Hello,
    I had worked on it and figured out how to do it. I observed that I upgraded my wordpress from 4.4 to 4.5.1 and this caused all the problems.

    I checked that my theme was not updated for the latest wordpress update for my JQUERY to work properly. I decided to degrade my wordpress back to 4.4 and everything seems to be working perfectly.

    Its great now. Thanks alot.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    while temporarily downgrading to WordPress 4.4 might have worked here, it’s not a good solution! You should really try to get your theme fixed (or ask the developers to fix it!).
    Otherwise, you will run into many, many problems in the future!

    Regards,
    Tobias

    You 100% correct. My theme is a premium theme and an update for it has not been released. I had been checking up on the developer is there is a new update; but presently none for now. I would consider changing it in future as well.

    Thank you so much for your response. You have a great plugin. I would purchase your extensions as well. Thanks.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks for the kind words about TablePress ??

    Yes, you should really keep asking your theme developer for an update, especially if it’s a premium theme! As mentioned above, the fix is very simple in most cases, so that you could also try fixing this yourself.

    Regards,
    Tobias

    Hi Tobias,

    I seem to be having the same problem on my site since upgrading to WP 4.5.2. I’m using the ShapeShifter 2 theme – I would contact the developer for a fix but the theme doesn’t seem to be supported anymore unfortunately.

    I’d be extremely grateful if you could have a quick look at my site and see if you can identify which line/s of code I need to change to get things working properly again.

    Thanks in advance!

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    yes, this is the same issue. In your case, please change

    jQuery('a[href*=#]').click(function() {

    to

    jQuery('a[href*="#"]').click(function() {

    in the file /wp-content/themes/shapeshifter/assets/javascripts/skeleton-key.js

    Regards,
    Tobias

    Thanks so much, that worked perfectly! You’re a lifesaver!

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! ?? Good to hear that this helped!

    Best wishes,
    Tobias

    P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!

    Hi again Tobias, it seems my problem isn’t entirely resolved after all!

    While table sorting is now working perfectly in Firefox (and Opera), I’ve just realised that when I use Chrome or Safari the tables aren’t being sorted.

    Any ideas what could be causing this?

    Thanks again!

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    I’m testing in Chrome and it works just fine. Are you logged-out or logged-in into WordPress in your Chrome? That could make a difference if other plugins load other scripts then.

    Regards,
    Tobias

Viewing 15 replies - 1 through 15 (of 23 total)
  • The topic ‘Search & Sort not showing’ is closed to new replies.