Chris
Forum Replies Created
-
Forum: Plugins
In reply to: [Virtual Queue] Reached 0 – No redirectPlease ignore the above message.
I was using on a test site with no homepage set.
Thanks for the amazing plugin!
Chris
Forum: Plugins
In reply to: [StageShow] Email template – postageHi Doug,
In my Javascript file within stageshow settings I have the following:
function stageshow_AddCustomHTMLValues() { document.getElementById("saleCustomValues").value = ""; saleCustomValuesObj = document.getElementById('saleCustomValues'); var member = document.getElementById('stageshow_shine_member'); var mailinglist = document.getElementById('stageshow_shine_mailinglist'); var howtocollect = document.getElementById('stageshow_shine_howtocollect'); if ( (saleCustomValuesObj === null) || (member === null) || (mailinglist === null) || (howtocollect === null) ) { return; } var saleCustomValue = saleCustomValuesObj.value; if (saleCustomValue.length > 0) { /* Add a line separator for each custom HTML Element */ saleCustomValue += "#"; } else { var saleNoteToSellerObj = document.getElementById('saleNoteToSeller'); if (saleNoteToSellerObj !== null) { /* "Note to Seller" Element is present */ if (saleNoteToSellerObj.length > 0) { /* User has entered a value for the "Note to Seller" add a line separator after it! */ saleCustomValue += "#"; } } } saleCustomValue += member.value; saleCustomValue += "#"; saleCustomValue += howtocollect.value; saleCustomValue += "#"; saleCustomValue += mailinglist.checked; /* Store this as the value of the hidden form element */ saleCustomValuesObj.value = saleCustomValue; }and under function stageshowCustom_OnClickCheckout I have the following:
function stageshowCustom_OnClickCheckout(obj, inst) { stageshow_AddCustomHTMLValues(); return true; }You could play with these to say: If the postage option is checked put the word POST in the note to seller field. This may help?
The page this is on is shineboxoffice.co.uk/box-office if you want to see what and where these fields are. A lot of the above code you will not require.
Chris
Forum: Plugins
In reply to: [StageShow] Show Deleted – Info EmailHi,
You can use the Stageshow -> Tools -> Export.
Select Sales Summary and choose the Show thats cancelled. Click Export.
You can open this in Excel and delete all columns except email addresses. Copy and paste these into your email in BCC to ensure no one else see’s anyone else’s email addresses. Write the email and click send.
Hope this helps.
Forum: Plugins
In reply to: [StageShow] Seating plan HELP!Hi Doug,
Slightly beyond my capabilities if I’m honest. I’ve had a quick play around.
The Javascript code that will check the postage box will be that below:
document.getElementById("salePostTickets").checked = true;The issue being is that I’m not to sure where you would place this. You could have a play around and if you manage to get it to work then perhaps post back here with what you did. I would say you could change the HTML to the page from the plugin folder but any updates to stageshow would overwrite this so I wouldn’t suggest it as it would give you more headaches than anything.
Chris
Forum: Plugins
In reply to: [StageShow] Seating plan HELP!Hi Doug.
Glad I could be of some assistance and glad you managed to get everything working as you intended.
Any other questions feel free to ask.
Thanks,
ChrisForum: Plugins
In reply to: [StageShow] Seating plan HELP!Code for CSS for wheelchair spaces below:
#stageshow-boxoffice-layout-seat-10_3, #stageshow-boxoffice-layout-seat-12_3{ background-image: url("https://image.flaticon.com/icons/png/512/36/36908.png"); background-position: center; /* Center the image */ background-repeat: no-repeat; /* Do not repeat the image */ background-size: cover; /* Resize the background image to cover the entire container */ }Note that this uses a graphic of a wheelchair icon freely available on the internet. Please download one to images on your hosting site and use that instead.
See below:
https://pasteboard.co/IWP3XKf.pngForum: Plugins
In reply to: [StageShow] Seating plan HELP!Hi again Doug,
See the edits to zones below:
Legend:
[i1]17.6-17.25,
[i2]3.32-6.36,
[i3]11.32-14.36,
[ld2.1]r1-6, [ld2.30]r1-6,
[ld10.1]r7-12, [ld10.30]r7-12,
[1.2]N1-28,
[8.2]N1-6, [8.10]N7-18,[8.24]N19-24,
[16.2]N3-8, [16.10]N9-20, [16.24]N21-26General Entry:
[2.2]1.1-1.28,
[3.2]2.1-6.6,
[3.10]2.7-6.18,
[3.24]2.19-6.24,
[10.2]7.3-8.8,
[10.10]7.9-12.20,
[10.24]7.21-8.26,
[12.4]9.5-12.8,
[12.24]9.21-12.24,
[13.2]10.3,
[15.2]12.3With regards to the wheelchair with a little CSS trickery you can create that into a graphic of a wheelchair. I’ll need to get you that later however.
The i2 and i3 tags, such like the STAGE should be created as graphics and uploaded to the images folder and added in CSS for Raised and Stalls per your request above for text at the right of the seating blocks.
Hope the above helps just now however?
Thanks,
Chris- This reply was modified 6 years, 2 months ago by Chris.
Forum: Plugins
In reply to: [StageShow] Seating plan HELP!Hi Doug,
You’re most welcome.
Let me have another play and get back to you soon.
Thanks,
ChrisForum: Plugins
In reply to: [StageShow] Seating plan HELP!Hi Doug,
Sorry, attempting to reply during quiet bits in work.
Try the following in the .legend zone:
[i1]16.5-16.24,
[ld2.7]r2-6, [ld2.22]r2-6,
[ld9.7]r7-12,[ld9.22]r7-12That will get you rows (apart from A – we would need to move everything over 1 to get an ‘A’ either end)
With regards to getting text within the seat… I’m not sure whether that is possible. I haven’t come across it. but if you hover over the seat you get a pop up with the seat row and number.
For ‘STAGE’ you will require to upload an image for this and play about with it in CSS. Images uploaded to the images folder within uploads/stageshow. Without knowing a bit more info such as your seating plan name I can’t help with this.
If it’s any help though the stage ‘image’ on my site looks like the following within CSS:.stageshow-boxoffice-CHWWRY-block1 { height: 40px; background: #202020 url("../images/stage.png") no-repeat center center }With CHWWRY being the name of my seating plan.
I can assist more later tonight / tomorrow if you still require more detail.
Thanks,
Chris- This reply was modified 6 years, 2 months ago by Chris.
- This reply was modified 6 years, 2 months ago by Steven Stern (sterndata).
Forum: Plugins
In reply to: [StageShow] Seating plan HELP!Hi Doug,
Very quickly and crudely done see below:
New Seating Plan with 3 Zones:
Zone 1 – Name .Legend:
[1.1]1.1-1.28,Zone 2 – Name Stalls:
[9.1]7.3-8.8,
[9.9]7.9-12.20,
[9.23]7.21-8.26,
[11.3]9.5-12.8,
[11.23]9.21-12.24Zone 3 – Name Raised Seating:
[1.1]1.1-1.28,
[2.1]2.1-6.6,
[2.9]2.7-6.18,
[2.23]2.19-6.24This does NOT include your wheelchair spaces as we do not yet know what you want to do with them.
Chris
Forum: Plugins
In reply to: [StageShow] Seating plan HELP!Hi Doug.
I dont mind giving you a hand with this. I am however at work and it may be tomorrow before I could spend time to really assist unless someone else is free to chirp in before then.
A few things we would probably want to know is:
* Is row A definitely the furthest from the stage?
* How would you want the wheelchair seats depicted?
* Do you require different price zones? i.e. Stalls one price, Tiered Another?Thanks,
ChrisForum: Plugins
In reply to: [StageShow] Add New Discount CodeUnfortunately I cant.
I have never spent time on discount codes nor does our organisation use them. I’m sure you could manage if all the bits are locked down because you have live sales now by going and editing the database but that is a really janky thing to do and you could REALLY mess up whats going on in the plugin. Not our of choice i’ve had to re-arrange a seating plan with live sales by doing this method but I had the website down while I did so and had taken multiple backups and did everything methodically. Unless you really really have to I wouldn’t recommend that way.
Sorry I can’t be more of a help.
Forum: Plugins
In reply to: [StageShow] Add New Discount CodeAs do I. Our charitable youth theatre has depended its entire box office on Stageshow and it has brought us through and processed hundreds of thousands of pounds over the years and I feel my right arm would be cut off without it. Hopefully we will hear one way or the other soon.
Forum: Plugins
In reply to: [StageShow] Add New Discount CodeHi,
Plugins installed on your website should continue to function. Malcolm is the developer of Stageshow and has been fairly absent for a little while now. He has done incredible work to get it to where it is now. I hope this is not the end for Stageshow, I really do. I was happy with the if and when Malcolm was available to tinker to get updates but until we have a definite answer we are all in limbo at the moment.
Forum: Plugins
In reply to: [StageShow] saleTxnId and salePaid fields values not showed in emailsI have to agree with Bo. All our reservations have went out and everyone has emailed back to ask for an updated email to be sent.
We have had to result to mark the sale as completed, save it, email it then mark it as reserved again so a payment goes into the payment table, not ideal.
I’m sure Malcolm will provide a fix it. Just unsure as to when.
Chris