Good WP table plugin?

roey

From Pandora.
Joined
Feb 22, 2012
Messages
234
Reaction score
19
Hi all,

Im after a good WordPress plugin to create tables, any ideas?

Using tablepress atm.
 

edgarf76

Affiliate Guard Dog Member
Joined
Oct 10, 2013
Messages
1,124
Reaction score
248
I just installed table press, Flytonic has their own custom tables if you are using one of their themes. I also looked at Ultimate tables and easy tables but I went for table press because I have heard good things. I used to make tables in dreamweavers and copy and paste them into wordpress. Hope that helps
 

muffincrumbs

Affiliate Guard Dog Member
Joined
Feb 22, 2013
Messages
313
Reaction score
55

PaaskeUK

Affiliate Guard Dog Member
Joined
Sep 15, 2010
Messages
415
Reaction score
143
I would love to get into using that Table Press. I have tried but gave up so many times. It just seems to complicated.

Would there be anyone here who could send me small template I could try and start up with and then change of course (would not use ur own original images etc) But just so I get idea and hang of it please.

Because I am looking for making proper tables. The ones with Flytonic does not seem to do the work for me. Colours are different and seems restricted in what is possible with them. If anyone got help or ideas with those already build into Flytonic thems then let me also know ;) Cheers guys.
 

AussieDave

24 years & still going!
Joined
Nov 28, 2013
Messages
4,978
Reaction score
3,518
I don't use a plugin, I just make my own using div layers and css. The more plugin you run, the more chance you have of being hacked!
 

CasinoKev

Affiliate Guard Dog Member
Joined
Jun 3, 2012
Messages
146
Reaction score
30
Tablepress is the best!

PaaskeUK what about the plug-in is making you give up? And what kind of table are you trying to build? I might be able to help
 

muffincrumbs

Affiliate Guard Dog Member
Joined
Feb 22, 2013
Messages
313
Reaction score
55
PaaskeUK I am happy to share a Tablepress template with you, but Bet4You is right. I am moving toward using just CSS and div's instead, but I also still use tablepress for really big tables (example in my link above).

Here is an example of how to make three columns in WP

Code:
<div style="width:30%;padding:0 10pt 0 0;float:left;">
Column 1 info here
Column 1 info here
Column 1 info here
</div>

<div style="width:30%;padding:0 10pt 0 0;float:left;">
Column 2 info here
Column 2 info here
Column 2 info here
</div>

<div style="width:30%;padding:0 10pt 0 0;float:right;">
Column 3 info here
Column 3 info here
Column 3 info here
</div>
 
Top