Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Meitar

    (@meitar)

    I can restore them by adding the no-responsive class but I’d like a way to choose the default settings somewhere in plugin settings instead of rewriting all shortcodes to remove the responsive functionality.

    I’m not going to implement a plugin-wide option for this because that violates the principle of least surprise.

    Since all you want to do is indiscriminately insert the no-responsive class into all of your [gdoc] shortcodes that declare a FixedColumns class, you should instead just do a find-and-replace operation on your WordPress content. (Why do the same thing more than once when doing the same task multiple times in quick succession is what computers were invented for?)

    Make a backup of your WordPress database, then issue a MySQL query similar to the following, which should do it:

    UPDATE wp_posts SET post_content = REPLACE(post_content, 'class="FixedColumns', 'class="no-responsive FixedColumns');

    See the MySQL manual entry for its REPLACE() function.

    Hi, I’m using de short code with fixed colums and no-responsive. But it messes up my tables… here is the link… https://amfa.com.mx/lfa/home/equipos/draft/ Can you tell me what’s going on? I have no idea why are those letters apearing in the left side of the headers table! Please help!!

    my shortcode looks like this

    [gdoc key="https://docs.google.com/spreadsheets/d/1tkwqJEV_raSplVcCfhTwB8wSszrcxC70pssut-YdRpo/edit?usp=sharing" use_cache="no" datatables_scroll_x="true" class="no-responsive FixedColumns-left-1"]

    thanks in advance!

    You have to check the “JUADORES REGISTRADOS” tab

    Plugin Author Meitar

    (@meitar)

    I have no idea why are those letters apearing in the left side of the headers table! Please help!!

    What letters?

    This is what I see on your page. It looks just fine.

    Thanks for the quik response!!
    It looks good on your computer! But I see THIS =(

    Congrats for the GREAT plugin!!

    Plugin Author Meitar

    (@meitar)

    It looks good on your computer! But I see THIS =(

    Clearly, there is probably some kind of style conflict in your theme. My browser runs with a number of blockers, so maybe you’re loading something that you don’t need.

    Style conflicts is not something I offer support around, as it is specific to your website’s theme.

    Thanks, I’ll se what’s going on with my theme!

    Great support!!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Responsive plugin breaks tables display’ is closed to new replies.