heyjoe79
Member
Posted 1 year ago #
Hi I downloaded the plugin and seams to be working great on Wordpress2.6 I was wondering if there is anyway i can make what i have written in the table a link? I want to write a list of websites in the input fields but i would like them when clicked to be able to follow a link. is that possible??
This is possible by using HTML in the cells of the table.
For instance
<a href="http://www.test.com" title="test site">Test</a>
should show up as a link 'Test'.
heyjoe79
Member
Posted 1 year ago #
Thank you very much that works nicely
heyjoe79
Member
Posted 1 year ago #
another question: is there a way to combine the columns? like if i had 2 rows and 3 columns but i wanted to ad a row to he top of it with no columns?
is there a plugin for this?... why not using simple html?...
<table>
<tr>
<td colspan="3">Row 1, column 1</td>
</tr>
<tr>
<td>Row 2, column 1</td>
<td>Row 2, column 2</td>
<td>Row 2, column 3</td>
</tr>
</table>
It's better & faster to type it...
very sorry for the blank posts, something weird happenned here... =.=
@ShirouJune: Hey Shirou ^^ I don't have a working demo online to demonstrate the table, but WP-Table provides an easy interface for users with the most basic WP skills to create and maintain entries in a table without knowing HTML.
The final table that is displayed on the website also allows for easy sorting alphabetically per-column if I remember correctly.
@heyjoe79: Glad it worked for you :) Let me get back to you re: your question, but just to check: Would this combined column be at the top of the table?