• Dear support team,

    I am using your plugin for a while and just added to my new site. The plugin works within the FooTable settings with the breakpoints on mobile as well on tablet and Desktop. But while testing then the same on page the breakpoints with “+” symbol is missing and seems not not work.

    Used table settings:

    <table class="footable" data-sort="false" data-filter="false">
    <tbody>
    <tr>
    <td style="text-align: left;"></td>
    <td style="text-align: left;"></td>
    <td style="text-align: left;"></td>
    </tr>
    </tbody>

    Screenshot: https://www.screencast.com/t/OuqqpunZc

    I’ve de-activated all other plugins without success for solving. I’m looking forward to your help.

    Best, Alex

    • This topic was modified 6 years, 5 months ago by wci.

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

Viewing 1 replies (of 1 total)
  • Thread Starter wci

    (@wci)

    I guess the missing part is the table head info:

      <thead>
        <tr>
          <th></th>
          <th data-hide="tablet"></th>
          <th data-hide="phone,tablet"></th>
        </tr>
      </thead>

    but when using this “without header name but with display option” it’s working, but not hiding on mobile or tablet

    <table class="footable" data-sort="false" data-filter="false">
      <thead>
        <tr>
          <th></th>
          <th data-hide="tablet"></th>
          <th data-hide="phone,tablet"></th>
        </tr>
      </thead>
    <tbody>
    <tr>
    <td style="text-align: left;"></td>
    <td style="text-align: left;"></td>
    <td style="text-align: left;"></td>
    </tr>
    </tbody>
    </table>

    but when using this “without header name” it’s still not working

    <table class="footable" data-sort="false" data-filter="false">
      <thead>
        <tr>
          <th></th>
          <th></th>
          <th></th>
        </tr>
      </thead>
    <tbody>
    <tr>
    <td style="text-align: left;"></td>
    <td style="text-align: left;"></td>
    <td style="text-align: left;"></td>
    </tr>
    </tbody>
    </table>

    • This reply was modified 6 years, 5 months ago by wci.
Viewing 1 replies (of 1 total)
  • The topic ‘Plugin does not work on my installation’ is closed to new replies.