• Resolved spielo

    (@spielo)


    Hi, is it not possible to modify your plugin with the responsive plugin, that it needs only one time to setup parameters and not in any shortcode?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    At this time, I don’t have plans to directly integrate this. The reason is that the mode for responsiveness should be chosen deliberately, as there is no “one size fits all” solution, unfortunately.

    Regards,
    Tobias

    Thread Starter spielo

    (@spielo)

    Hi,

    if you don′t plan directly integrate, is it possible to setup to show only 2 columns in mobile or 3 columns in tablets, this will be very helpfully?

    regards

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    this would be possible with CSS code. For example, you could add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:

    @media screen and (max-width:768px) {
      .tablepress-id-123 .column-3,
      .tablepress-id-123 .column-4 {
        display: none;
      }
    }
    
    @media screen and (max-width:960px) {
      .tablepress-id-123 .column-4 {
        display: none;
      }
    }

    Just adjust the table ID, pixel widths, and column numbers as desired.

    Regards,
    Tobias

    Thread Starter spielo

    (@spielo)

    Thanks, this is perfect!

    regards

    Plugin Author TobiasBg

    (@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!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘include responsive settings in table settings’ is closed to new replies.