I've Googled for this, and I can't find exactly what I'm looking for.
I have a Google Spreadsheet that contains data that needs to be automatically published on a client's Wordpress site.
Previously, I published a link to the HTML version of the table. However, the client decided that an HTML table isn't "user friendly", so they want me to create a template that displays the data in an HTML/JS accordion layout.
Doing this manually, would be fairly straightforward, but create an unacceptable labor bottleneck since the client updates their Google Spreadsheet on a daily basis and expects the published information on the website to be continually up to date.
I'm aware that Google has a Data API, so I should be able to write some code that gets the data I need out of the Spreadsheet automatically and displays in a template on my Wordpress site.
What I don't know is the specifics of how to make this work. Are there any plugins for pulling data from a Google Spreadsheet and being able to output it in a free format, or is this going to be all custom coding using PHP and the Google Data API? If it has to be completely custom, are there any tutorials that could help me figure out exactly how to do it?
Essentially, if I could figure out how to pull the text from one particular cell and print it out on the html page via Wordpress, the rest would just be a matter of rinse and repeat until I get the page that I need built.