Hi,
I’m not sure if this is possible with the current version but do you know a way to sort by multiple columns?
The usage of this would be if someone clicked on column A and then column B it would be sorted by column B primarily but then by column A.
I hope that makes sense.
Pete
]]>Hi,
is anyone willing help me.
This is what i am trying to replicate/create
https://thegamingnetwork.co.za/leaderboard/TGN_Leaderboard.xlsx
I am trying to get the data to sort according to a specific column (Laptime) and also want to add colors per row and images.
Also trying to get column a not to display(Cell Number) but with no luck..
Any help would be greatly appreciated..
Thanks in advance.
]]>Have a CSV of date listings. I’d like to have first row of table begin at the row of current date. Is this possible? How would I do this? Thanks in advance.
]]>I noticed a problem with sorttable that I just wanted to report here in case anyone else needs help. I use jQuery 1.11.1 on my site, and alongside that I use wp_deregister_script to deregister the built-in jQuery ( which I realize IS currently 1.11.1 but I was having other problems with that ).
When I added the wp_deregister_script(‘jquery’) command to my functions.php file, csv to sorttable stopped working. It would load my table fine, but I couldn’t sort it. After much digging around, I found that the csv-to-sorttable script (sorttable.min.js) was no longer being loaded anywhere in my page.
I manually added sorttable.min.js to my functions.php file via the wp_enqueue_script command, and all was well again. I used the following line of code:
wp_enqueue_script('csv-sorttable', plugins_url('/csv-to-sorttable/js/sorttable.min.js'), '', '', true );
As an added bonus, I can have it load on only the needed page by using an if statement like so:
if (is_page('87')){
wp_enqueue_script('csv-sorttable', plugins_url('/csv-to-sorttable/js/sorttable.min.js'), '', '', true );
}
I’m not good enough with jQuery to read through the csv-to-sorttable code and figure out why I need to do this, I’m just happy I got it working again. I’m marking this Resolved, I just wanted to document it here in case someone else runs into this issue.
]]>i hope the author will consider wrapping the table in a div tag because currently there is no easy way (AFAIK) to control the size of the table
this results in a very ugly appearance for a wide table because it runs off the edge of the WP template
my solution was to wrap the short-code in a div, give it a class (csv2table), then style it like so…
.csv2table {
width: 100%;
overflow: auto;
height: 1000px;
}
this will limit the width to the page content and add scroll bars as needed
there may be a better solution than hard-coding the height, but i haven’t really poked around yet
]]>I want to have links in my spreadsheet, but without showing the address, I assumed using < href=”…”>link
example
the file is here: https://www.oceansideartwalk.org/wp-content/uploads/2014/07/2014-08-01-ArtistVenueForWebsite8.csv
I want to link to the page https://www.oceansideartwalk.org/trevor-coopersmith/ so I did this:
<a href=“../../../../trevor-coopersmith/“> Trevor Coopersmith</a>
and it sends me here:
https://www.oceansideartwalk.org/trevor-coopersmith/%E2%80%9C
which spits out a ‘page not found’ error
What can I do?
]]>I use this code and it’s not importing anything! Not displaying anything. Did I completely miss something?
[csv src=https://s3.amazonaws.com/static.cmb.com/images/Test.csv]
Hi,
Sorry, I am new to WordPress. I placed a test CSV file into the media section of WordPress, made sure the plugin was active, and then copied the code given in the installation instructions (csv src=http…..).
I took the http file url that WordPress generated for me on the CSV media page, on the right hand side. I pasted it over the example address. The url I used looks roughly like this:
“[csv src=https://fakecompany.com/wp-content/uploads/2014/06/test.csv]”
But the page isn’t working. What comes up is this: Link .
Any ideas? The csv file does have content in it.
Thanks
]]>Hello,
Is there a way to disable or hide a specific column by it’s Heading?
I realize I can hide it with the .col# class through css, but have found the csv files provided by the client often have the column I want to hide in different locations.
Much appreciated,
Cheers
Hello,
Has anyone been successful in making the table responsive?
Much appreciated
Hey guys this is a great plugin.
One question, i have an x number of rows in my CSV file, i want to show a different row in a different page.
So for example show row 2 for John’s page, show row 3 for Paul’s page. Etc…Instead of showing all the rows.
Any help would be appreciated.
]]>When there is no CSV that the plugin references, rather than display a message like “the CSV cannot be found”, the result is a completely broken page.
Headers, footers, everything.
Anyone else having this issue? Any workarounds?
]]>On some CSVs, my website is showing empty rows following my data. Is there a way to make sure only rows with content are imported?
]]>Hello can you help me figure out why my spread sheet is displaying as only one row on my web page https://beaverlakegolf.com/2015-scores/. I have a simple csv file created in Excel https://www.beaverlakegolf.com/2015.csv I can’t figure out why it does not display correctly it seems to be set up right?
Thanks in advance.
]]>I can’t find out how to center the text in each column. I’ve tried several different things, but can’t do it… any advice?
]]>Everything works great … load up .csv file and displays beautifully. An hour later, I change the data in the .csv file and ftp to website … it doesnt show changes. I wiped cache from browser and server … i even delete the file from server … wp page still displays old data even though i deleted file from server. Could anyone give me a clue as to what is going on here … is the .csv array being maintained somewhere that once loaded it renders from there and doesnt go back to file. Is there anyway to make sure it always renders from file?
Thanks in advance!!
Glenn
]]>Love the plugin, but it doesent seem to support the letters ?, ? and ? from the Norwegian alphabet. They end up like: ?
Can this be fixed?
]]>Hey there,
Amazing plugin, thank you very much. Just one question …
I imported a csv file to this page,
https://www.youthbaseballrankings.com/teams/
It looks amazing and I love how its sortable. However I would love it if the text in the first column (TEAM column) could be able to redirect to a website (Team site) when clicked. In my spreadsheet it is clickable and works however when I import it with this plugin that functionality disappears. Any help or direction would be much appreciated.
Thanks
Brad
]]>Hi,
Is it possible to manually change the width of the columns of these tables? I would like to re-balance some of my content.
Thanks,
Adam
]]>I have a column with fields representing 1 to 5 stars.
In the field it’s represented like this for 1 star:
<i class="genericon genericon-star"></i>
And like this for 2 stars, etc:
<i class="genericon genericon-star"></i><i class="genericon genericon-star"></i>
Problem: I see no way to make the column sortable. Any suggestions anyone?
]]>Hi Everybody,
Is this plugin working with WP > 3.7 ?
Thanks for your answers.
]]>When using number=1 in the shortcode it doesn’t work. When hardcoding the numbers into class-csv-to-sorttable.php it does work. Something is wrong with the shortcode options….
]]>Is there any way to have a user-enabled checkbox (or something), which will allow the user to show only certain records? Say, for instance, I have a column that is the Day Of Week, and user wants to see only records with “Tuesday” in them, can that be made so?
]]>I can’t get the plugin to recognize a pipe symbol | as the delimiter. I updated str_getcsv4.php so that the delimiter was | instead of , but still no luck. Any suggestions?
]]>In the future it would be nice to insert a search engine …
]]>I want to use this with very long csv file, it converts nicely but the table is way to long and takes forever to load the entire page, is it possible to break the form into pages, but still retains the sortable capability?
]]>The theme I have (Theron) uses column shortcodes to create a column effect for text. These use “Col1, Col2,… etc” classes. The theme styles are interfering with the plugin styles because the plugin ALSO uses the “col1, col2” format.
How can I change the classes used by the plugin? Make them maybe “CSVCol1” etc?
]]>Is there a way to get shortcodes to work inside of a table cell?
]]>I love that fact that the plugin Automatically detects URLs contained in cells and converts them into HTML links. It’s even neater that the plugin recognizes that a row like:
!AlohaNIC LLC,United States,www.alohanic.com,No,Yes
will convert “www.alohanic.com” into https://www.alohanic.com/, but can I still have it display as https://www.alohanic.com?
The page in question is here: https://pir.org/products/find-a-registrar/
]]>I have a site running 3.6.1 and it no longer parses the csv tables in,
I have tried moving the files to other locations and testing the links.
Ive also disabled all my plugins to check if it works,
no dice ??
help would be appreciated
are we due for an update?