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

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    Yes, I would need to see this on the site, please. Could you therefore please create a temporary admin account for me and send me the details via email (the address is in the main plugin file “tablepress.php”)?

    My assumption is that your theme does something weird, regarding the handling of Shortcodes.

    Regards,
    Tobias

    Thread Starter mugeturner

    (@mugeturner)

    ok, i have sent you email to your wordpress account

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for that! I was able to log in and can see the problem.
    The reason for this mainly is that the theme is also using CSS class names like “.column-1” and so on for some elements that it uses.
    This unfortunately interferes with the columns in TablePress. To fix this, I added some “Custom CSS” (the top block) that basically resets the defaults for table cells.

    Regards,
    Tobias

    Thread Starter mugeturner

    (@mugeturner)

    Thats great. Thanks alot. I must say that your pluging is great and your service is superb. I know your plugin is free but my boss has said that if we need to pay for plugins then we can, so maybe we can give you a little financial support? Do you have a support page for donations?
    Sam

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! ?? Good to hear that this helped!
    Yes, support is always appreciated, see https://tablepress.org/donate/

    Best wishes,
    Tobias

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

    Thread Starter mugeturner

    (@mugeturner)

    hello again,
    Just found a problem. My tables assigned to group 2 seem to have had their colum 1 width reduced https://www.golfturkey.co.uk/belek-packages/voyage-belek-package/

    I tried changing the group 2 column width wider bu made no change.
    Sam

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    yeah, this is now affected by that change I made.
    To fix it, please prepend #rt-main to the selector, like

    #rt-main .tablepress-group-2 .column-1 {
     ...
    }

    (The #rt-main is specific to your theme.)

    Regards,
    Tobias

    Thread Starter mugeturner

    (@mugeturner)

    Yep, works fine now. Well done!

    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!

    Thread Starter mugeturner

    (@mugeturner)

    Hi Tobias,
    Having a problem with a new table. I need to stop it spanning the whole width of the page. ? have put these css but doesnt make much difference.

    #rt-main .tablepress-group-3 .column-1 {
    width: 170px;
    }

    #rt-main .tablepress-group-3 .column-2 {
    width: 50px;
    }

    #rt-main .tablepress-group-3 .column-3 {
    width: 50px;
    }

    https://www.golfturkey.co.uk/info-centre/club-hire/

    Sam

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi Sam,

    you’ll probably need an additional

    #rt-main .tablepress-group-3 {
      width: auto;
    }

    to tell the table to not stretch to the full width.

    Regards,
    Tobias

    Thread Starter mugeturner

    (@mugeturner)

    yep, worked a treat. I rated your plugin btw. 5 stars, well done. I dont suppose you would have a look at my website and give some advice on how to speed it up? I think there are some errors as doing weird things. asked loads of people but no one can help. no worries if your not the person to ask and busy.
    Sam

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    very nice! Good to hear that this worked! And thanks for the rating!

    I can’t see any obvious bottlenecks, but the quickest way to make the site faster would probably be to use a caching plugin.

    Best wishes,
    Tobias

    Thread Starter mugeturner

    (@mugeturner)

    Hi again Tobias,
    Having an issue with table id 38

    adding this to custom css but not having an effect
    .tablepress-id-38 .row-3 {
    background-color: #3e536d;
    }

    https://golfturkey.co.uk/spygolf-academy/academy-home/

    Sam

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi Sam,

    just add a td to that code:

    .tablepress-id-38 .row-3 td {
      background-color: #3e536d;
    }

    That tells the browser to add the color to the actual cells (HTML td elements) in that row.

    Regards,
    Tobias

Viewing 15 replies - 1 through 15 (of 24 total)
  • The topic ‘Table not working in main body’ is closed to new replies.