I tried a few ideas. First, my idea was to create a gig with the city and venue name of just a space. But unfortunately I can’t enter my own countries, so I’m forced to pick a country from the dropdown. My idea was to put a “space” for the info there. It’s not the best solution, but it would allow me to create a “gig” that isn’t an actual gig, and just display the notes.
I also tried going into the templates to try and have it only display the date and the notes if the venue and city name were both just a space, but it was beyond me. So much for that idea.
Or heck, is there anything in the code to JUST display the notes from a gig and nothing else (except the date I imagine)? I would love that. Would solve my problems if that existed.
Here you can see me playing around with it. Here’s what I did in Gigpress to try and come up with “Gig Notes” within the current structure.
http://www.black-sabbath.com/tourdates/1987tour2/
This is my old format, what I’m trying to replicate here – the notes that span the columns.
http://www.black-sabbath.com/tourdates/1987tour
-
This reply was modified 8 years, 11 months ago by
Joe Siegler. Reason: Added link
I figured out a way on my own!
1) For the “Gig Notes” I created a special csv with just those entries. Technically they’re in the system as “gigs”, but for the purposes of displaying to the end user, they won’t look like that.
2) In the CSV, I added just these fields.
a) Date
b) Artist
c) Notes
d) Tour
e) Status
3) That allowed the gig to be imported with no venue, no city, and no country. They displayed blank.
4) I then used CSS to force the note text to be displayed in what would be the line where city/venue/country would be. This is what I made the notes look like:
<div class="gignote" style="margin-top: -34px;">
<span><b><font color="green">Notes Go here</font></b></span>
</div>
It works! It would however be nice to have it so the software would just allow you to check a mark, and it would show only the notes. But my hack here got around that, I suppose. BTW you can put whatever color you want for green I suppose. 🙂
-
This reply was modified 8 years, 10 months ago by
Joe Siegler. Reason: Minor edit to css note
-
This reply was modified 8 years, 10 months ago by
Joe Siegler. Reason: Grammar correction
Certainly sounds like a creative solution, Joe – nice work!
It would however be nice to have it so the software would just allow you to check a mark, and it would show only the notes.
My initial feeling is this is best kept as a customization and I tend to think that – if anything – it might be better for us to add the necessary hooks to make this sort of work easier and more maintainable.
That said, I’d be interested to hear from other users who might want this.
Thanks Barry. If you want to see a public example of this..
http://www.black-sabbath.com/tourdates/1989tour/
The first three items there are using this CSS hack.