• Perhaps this is an extremely stupid question, but would it be possible to create and empty table from a template where the columns and headers and css formatting (for instance) is set prior to adding data to the table?

    Let’s say I want to create 20 or so pages with project info on all the pages, with identically formated tables on each page, but with separate values on each page?

    ? :)=

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    I have table templates as a big feature on my list for future versions, however have not yet have found the time to start developing it.

    Until that happens, why don’t you use the .wp-table-reloaded CSS selector, which is applied to all tables.

    For example, the code

    .wp-table-reloaded td {
      color: #ff0000;
    }

    would make the text color of all your 20 tables red (without having to deal with the table IDs). You could just expand that to fit your needs, and with the table ID based selectors (.wp-table-reloaded-id-123) you can even override the styling of individual tables.

    Best wishes,
    Tobias

    Thread Starter Argentum

    (@argentum)

    Thanks for quick answer! ?? The styling is the least of my problems though. I would like to setup a table with column names that a user can import into a page. Please let me know if you need help with testing what feature if you opt to implement it. Perhaps I should try to understand custom fields for now. Seems it is the closest thing to getting pre-set fields for a user to add to.

    Cheers!
    Magnus

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: WP-Table Reloaded] Create table templates’ is closed to new replies.