MyThirdEye
Forum Replies Created
-
Hey @paulmersel, can you send me a list of the plugins you are using? also your PHP version. This is an issue I have not been able to reproduce but has come up countless number of times. Its a real issue which I cannot debug or troubleshoot. If you can provide me with as much information as possible in a github ticket it would be definitely help me get closer to the problem.
https://github.com/JohnTendik/jtrt-tables/issues
JT
Forum: Plugins
In reply to: [JTRT Responsive Tables] style changeHey, no problem glad I could help 🙂
As for the heights, please refer to this issue:
https://github.com/JohnTendik/jtrt-tables/issues/46
Currently there isn’t an option to set row heights but you can try the suggestion I gave another user on github, I have plans to include row height as a feature when I get back from my vacation. Right now I can’t do much because I only have my phone with me.
Thanks for using my plugin, I’m glad you like it 🙂 if you have any other issues or questions please feel free to contact me, I will do my best to help out.
Thanks
JohnForum: Plugins
In reply to: [JTRT Responsive Tables] style changeHey try adding color to your border
border:1px solid #000!important;Forum: Plugins
In reply to: [JTRT Responsive Tables] Font sizeHey, @franzgasser
You can add custom styles to your stylesheet.css file, some themes will have their own place that they allow you to put extra styles, something like “custom css” tab if you have it. If not, you can simply place it inside your main style.css file located at
Appearance -> Editor -> Styles.css (should be the first file that opens)
Hope this helps!
Thanks
JohnForum: Plugins
In reply to: [JTRT Responsive Tables] Change column widthsHey, @dmctech
You can add custom styles to your stylesheet.css file, some themes will have their own place that they allow you to put extra styles, something like “custom css” tab if you have it. If not, you can simply place it inside your main style.css file located at
Appearance -> Editor -> Styles.css (should be the first file that opens)
Hope this helps!
Thanks
JohnForum: Plugins
In reply to: [JTRT Responsive Tables] Font sizeHello Franz,
Normally when you change the font-size, it will apply the style inline to the element/cell itself. Therefor it should be overwriting your default styles, unless you have used !important clause somewhere in your stylesheets.
However, you can always change the stylesheets directly using custom stylesheets. For example
#jtrt_table_82 table tbody tr td{ font-size:23px!important; }Normally I wouldn’t use !important but because you’re already having issues styling the font-size I feel this may be necessary.
Let me know if that helps or if you have any more questions.
Thanks
JohnHello @dbonneville
I’m sorry to hear that you are also experiencing this confusing issue. I have been notified of this problem and I’m still trying to get a fix for it. If you can possibly help me out by providing a few details about your setup it would definitely help me out and point me in the right direction.
So my most intelligent guess as to what’s happening here is that the data is being corrupted somehow, and the json data may be affected. If I can figure out what has caused the corruption, I can start digging but I cannot reproduce this issue on any of my current setups.
1) Can you get me the console logs? Right click on the table editor page (where the error happens) and then click inspect (or inspect element or f12 on chrome) then open the console tab. You should see a bunch of error messages. Copy paste those here and I’ll take a look and see if there is a clue.
2) Your php version and possibly php handler. (If you can get this, you may need to ask the server admin)
Again I apologize this issue has been happening to you, I’m actively trying to find a solution.
Thanks
JohnForum: Plugins
In reply to: [JTRT Responsive Tables] Hangs on insert imageHi Greg,
This is a known issue https://github.com/JohnTendik/jtrt-tables/issues/37 which seems to only effect a certain group of people. To help me narrow the issue down, could you provide me with your WordPress version and PHP version if you can get it.
I’m still trying to find a fix for this issue, like I said it seems to only effect certain people so until I can properly reproduce the issue and find a fix for it the only thing I can recommend is to try inserting an image into the cell using html.
Thanks for contacting me about this issue, it is being looked at 🙂 Also for future reference if you contact me through github I will be more responsive since i only check the WP forums once a week.
Thanks
JohnForum: Plugins
In reply to: [JTRT Responsive Tables] Sort feature adds search buttonHello @matthewzar,
I have tried the sorting thing and indeed a search box appears out of the wild 😀 I will have to debug why this is happening and get back to you with a fix asap hopefully.
As for the columns not fitting when enabling sorting, that’s because the table headers get a little bit bigger to accommodate the clickable space. This sometimes makes the table a little larger and the table wont have enough room and will show a scroll bar (unless you select another responsive type, scroll is the default)
As for the search not working when you sort the table, I have not been able to reproduce this, maybe its because the search feature is not toggled? I will try to reproduce this and if I can get it to fail I will try and fix it up.
Thank you for bringing this to my attention, I have a long list of fixes to do so I will add these to the list 🙂
Thanks
JohnForum: Plugins
In reply to: [JTRT Responsive Tables] Change table styleHi Julie,
I apologize for the late response, for future reference if you contact me through github I will be more responsive since issues come directly to my email. Sometimes WordPress forums don’t email me when issues arise so I only check up once a week.
As for your issue, I want to understand it correctly, you want the columns to highlight on hover correct?
Have you tried the options available in the backend?

As I was playing around with this I noticed 2 issues, 1 if you hightlight columns when you already have a cell col, the original color will disappear. I will fix this in the next update. and 2, the headers are not highlighted.
I will include a gist of the fix for you.
If you replace the following file:
jtrt-tables/public/js/jtrt-responsive-tables-public.js
with the following:
https://gist.github.com/JohnTendik/d6f3ed84d8cac5cfb1fa64a0e3e1de03
simply copy paste what is in the gist, into the jtrt-responsive-tables-public.js file (replacing everything, delete everything first then paste) you should have a properly functioning col highlight feature.
Thank you for bringing this issue to my attention, I would have never seen it since I do not use this feature 😀 I will include this fix in the update like I mentioned.
Let me know if this helps or if you have any more questions or issues.
Thanks
JohnForum: Plugins
In reply to: [JTRT Responsive Tables] A Button RequestHi @mythusmage
This is a wonderful suggestion 🙂 I will look into adding a button in the tinymce editor for easy table access.
Thanks for using my plugin and if you have any issues of comments please feel free to contact me.
John
Forum: Plugins
In reply to: [JTRT Responsive Tables] Change column widthsHI @cdrossen,
The tables are usually styled as auto width, however you can change this by applying custom css to a column.
#jtrt_table_78 thead th:nth-child(3){width:200px;}chenge the table id 78 to your table id, and change nth-child(3) to the column number that you want to target.
I hope this helps! let me know if you need more help or have any other questions!
Thanks
JohnForum: Plugins
In reply to: [JTRT Responsive Tables] Changing Particular Row / Column’s Background ColorI’m going to mark this solved since you said you’ve figured it out in this thread: https://wordpress.org/support/topic/boxed-table/
If you have any more questions or issues, feel free to contact me again.
Thanks
JohnForum: Plugins
In reply to: [JTRT Responsive Tables] Adding Search String to URLNo problem, glad I could help! 🙂 I’ll include this feature in the update.
Forum: Plugins
In reply to: [JTRT Responsive Tables] Adding Search String to URLHey @fabbstar,
Can you try the new gist, it will include footable filter with the url as well.
Hope this helps 😀https://gist.github.com/JohnTendik/9dc579512a20a86b830779ed477efd4c
John