Forum Replies Created

Viewing 15 replies - 46 through 60 (of 159 total)
  • Thread Starter Chris

    (@weazel91)

    CSS fault within WP config.

    Forum: Plugins
    In reply to: [StageShow] Block seats.

    You can change the colour of the seats for admins and front end separately. Go to stageshow settings and find the “Custom Admin Stylesheet” and “Custom Stylesheet”. Remember these names.

    Within your hosting files navigate to:
    wp-content / uploads / stageshow / css / [FILE NAME HERE].css

    In this file you are looking to edit the bits below that look similar to that below:

    
     .stageshow-boxoffice-seat
    {
    	border: 2px black solid;
    	border-radius: 4px;
    	padding: 0;
    	margin: 2px;
    	width: 15px;
    	height: 15px;
    	text-align: center;
    }
    
    div.stageshow-boxoffice-seat-unknown
    {
        background-color: #FFFF00 !important;
    }
    
    div.stageshow-boxoffice-seat-available
    {
        background-color: #00e40e !important;
    }
    
    div.stageshow-boxoffice-zone-Top-Price {
    	background-color: #4eff00 !important;
    }
    
    div.stageshow-boxoffice-zone-Top-Price_Additional {
    	background-color: #4eff00 !important;
    }
    
    div.stageshow-boxoffice-zone-Standard_Price {
    	background-color: #7a6cff !important;
    }
    
    div.stageshow-boxoffice-zone-Standard_Additional {
    	background-color: #7a6cff !important;
    }
    
    div.stageshow-boxoffice-seat-disabled
    {
        background-color: #292828 !important;
    }
    
    div.stageshow-boxoffice-seat-requested
    {
        cursor: pointer;
        background-color: #ff7800 !important;
    }
    

    The paid and free versions were bundled together, they used to be Stageshow, Stageshow Plus and Stageshow Gold. There are now all known as Stageshow with no variants. What is available on wordpress is all that stageshow offers now which is everything that was in gold, for free!

    Chris

    If I understand you correctly you just want to display an image of the seating plan on your homepage. If so I recommend just taking a screenshot of it and editing it (if required) in photoshop or some other editor and uploading as an image.

    With regards to saving this sounds like a server and writing permission problem. Perhaps reach out to your hosting provider for assistance?

    Forum: Plugins
    In reply to: [StageShow] Block seats.

    Hey,

    There is.

    Go to Performances, click show and then click edit beside seats lockout.

    Chris

    Hi all,

    So Stageshow is now available for update and Malcolm has done a POWER of work by the looks of it.

    Is anyone free to run the latest and check for any problems? I’d rather we went together with a collated list rather than each of us bombard him as that’s highly unfair on him especially when he’s working on Stageshow for free now.

    I have a small list but rather check with everyone what they are experiencing.

    Thanks all.

    Thread Starter Chris

    (@weazel91)

    Hi Alex,

    No worries at all!

    Thanks again,
    Chris

    Thread Starter Chris

    (@weazel91)

    Hi Alex,

    You’re so speedy with the updates.

    No worries. Will get this looked at tomorrow evening.

    Thanks for looking at the list of features. Could I also add to it:
    * Place to insert IP addresses to allow straight access to site (thinking volunteers in our office who don’t necessarily have WP Login details and just need access to the site)

    Cheers again!
    Chris

    Thread Starter Chris

    (@weazel91)

    Hi Alex,

    New update works amazingly, new shortcode is such a help too! And the edit php makes total sense!

    Thanks for checking that other bug above. It’s small in the grand scheme of things but if you are only allowing a small handful of people to the site for any reason then it may be more of an issue.

    Other ideas which may be of use are below:
    * Record user IP in sessions table (Helpful to aid in some diagnosis)
    * Show edited version of Sessions table under statistics tab in wp-admin with suitably edited fields (i.e. ID – IP Address – Queue Position – Has been Waiting (time) – Active/Waiting)
    * Create in the above table ‘SKIP QUEUE’ button (Useful for companies that will have telephone support, namely ours, and may require to PUSH people up the queue to access straight away) This could pose an issue for cron logic the way it is, namely too many people above the sessions_limit_number. Not sure how that would cope?
    * A way to display to the user an ETA to the site, again via the use of a shortcode. I can’t think how this would work in my head at the moment (blame it being before 9am!) but if it could somehow use previously calculated wait times and display to waiting users using their position perhaps… that might be a long shot and not sure how accurate that would be… it may not be worth it in the long shot?

    The above is just a few ideas that would be helpful in scenarios that I find our charity in at times.

    Thanks,
    Chris

    Thread Starter Chris

    (@weazel91)

    Great! You’re welcome. Look forward to your next release.

    Chris

    Thread Starter Chris

    (@weazel91)

    Hi Alex!

    Perfect! I believe the Active and Pending counters are working correctly now, I haven’t even seen a minus figure either.

    One other thing I noticed:
    I believe (tried 3 times and I THINK it is the case, you may wish to confirm) that if the max number of users hits the MAX set in Header Options (i.e. 4 users with 4 set in settings) that when the cron runs and it finds someone has left the site it wont let the next person at the front of the queue in, even although there is now a space available. It will wait until another person has left the site so there is only 2 people live on the site. Cron runs, and it will then let the person at the top of the queue in on refresh. Therefore only 3 people in at any one time rather than the 4 allowed. This is reflected in the Active / Pending in statistics. Active will never hit 4 again.

    Also can I request the following be added to virtual-queue.php

    Line 106:

    function vq_shortcode_total() {
    	global $wpdb;
    	$table          = $wpdb->prefix . 'vq_sessions';
    	$undefined      = '#pending';
    
    	
    	$totalqueue = $wpdb->get_var( "SELECT COUNT(*) FROM $table where status=0" );
    	if ( $totalqueue ):
    		return $totalqueue;
    	else:
    		return $undefined;
    	endif;
    }

    and this at new line 120
    add_shortcode( 'virtual-queue-total', 'vq_shortcode_total' );

    I just believe it would be handy for people to see what position they are at in the whole queue, or at least give the option for people to add that shortcode.

    Also can I also request line 97 have the ‘- 1’ removed as with myself being 0 in the queue would make me think I should be on the site. I don’t mind being 1st in the queue, the page refreshing and I am in.

    I hope you don’t mind me requesting the changes? What you have done though is incredible, so Kudos!

    Thanks again,
    Chris

    Thread Starter Chris

    (@weazel91)

    Many thanks!

    Thread Starter Chris

    (@weazel91)

    Hi,

    Attached.
    https://pasteboard.co/J5JnerX.png

    EDIT:
    After settling down my active is at 1 and pending at 0.

    Chris

    Thread Starter Chris

    (@weazel91)

    Hi again,

    So a clean reinstall and 4 separate devices straight away produced this:
    https://pasteboard.co/J5JjHW4.png

    And i’m not sure why?

    After the Cron re-runs I get this:
    https://pasteboard.co/J5Jk39y.png

    I believe this is how I ended up with too many active sessions. Not sure why pending would delve into minus?

    Thanks,
    Chris

    Thread Starter Chris

    (@weazel91)

    Perfect thanks. Will get on it soon and have another play again.

    Thanks again for the plugin, I’ve been looking for something like this for quite a while! I’m more than happy to donate something to further the advancement of this plugin if you accept donations.

    Thanks,
    Chris

    Thread Starter Chris

    (@weazel91)

    Hi,

    Yes, there is a cronjob set for every one minute (* * * * *) and this functions as intended.

    It is rather odd as seems to be very intermittent as to when it happens. When the “Active Sessions” goes out of order with the sessions in the Sessions table it never ever fixes itself. I.e. if I manually (just to break it – as that is what happened before) set the active in the database to 5, it will always remain at 5 even although the status in the sessions table may only have 3 row of people in it with 2 sessions set to “1”.

    But trying to make the active sessions show more than what it should be is a hit or a miss. I’ll see if I can delve in a bit more today and see what makes it go wrong.

    Thanks for your prompt reply.

Viewing 15 replies - 46 through 60 (of 159 total)