• Resolved realcurtgranger

    (@realcurtgranger)


    Hi, I’m using GigPress Version 2.3.21.

    Shows – displays properly in Chrome mobile broswer.

    The problem appears in the desktop Chrome browser. The [gigpress shows] shortcode displays the show listings, but inserts a “Details” header, and is blank. Viewing the html source returns no results for “Details” except in the calendar attributes. The data is there, but not displayed on the page.

    Trying to determine why the data is not being displayed, and where “Details” is coming from, since it does not appear in the html source. Does seem to be layout/CSS-related, but I can’t find it. I tried editing the shows page, and using both fullwidth and gigpress templates, to no change.

    <tbody>
    		<tr class="gigpress-header">
    			<th scope="col" class="gigpress-date">Date</th>
    					<th scope="col" class="gigpress-city">City</th>
    			<th scope="col" class="gigpress-venue">Venue</th>
    				</tr>
    	</tbody>

    and gigpress info is active

    <tr class="gigpress-info active">

    The page I need help with: [log in to see the link]

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hey there @realcurtgranger!

    Thanks for reaching out — sorry to hear that you are experiencing difficulties.

    Also, sorry about the wait here — we’ve been pretty busy.

    Since GigPress displays as a table, a CSS option might not be as simple. I’ll see if I can come up with a snippet for you that will not produce that column.

    Hang tight!

    Thread Starter realcurtgranger

    (@realcurtgranger)

    Hi Ed, and thanks for the reply. Having the column there is ok, I’m just curious to why no data is displayed in Chrome desktop browser, but is in the mobile browser. I’d prefer to have it actually.

    After taking another look, it seems like that code is generated by JavaScript, so I’m not sure some sort of addition or modification has been made, but the core GigPress does not contain that code.

    You can see this if you disable JS in your browser then access the site.

    I’d so some searching against a fresh zip and see if you can find where this is being introduced in your code. It may be useful to use something like https://www.diffchecker.com/

    Hope that helps!

    Hey there! This thread has been inactive for a while so we’re going to go ahead and mark it Resolved. Please feel free to open a new thread if any other questions come up and we’d be happy to help. ??

    Thanks
    Courtney ??

    Thread Starter realcurtgranger

    (@realcurtgranger)

    Actually it’s not resolved. I am investigating again today, and I believe it to be the original gigpress css file that was included in the Soundcheck theme. I will report back if this ends up being correct.

    Thread Starter realcurtgranger

    (@realcurtgranger)

    Found it.

    https://www.thewildflowersband.com/wp-content/themes/soundcheck/includes/plugins/gigpress/style-gigpress.css

    I changed

    body .gigpress-table .gigpress-info {
      display: none;

    to

    body .gigpress-table .gigpress-info {
      display: all;

    Now it appears. Now to figure out how to format it to column correctly.

    Thread Starter realcurtgranger

    (@realcurtgranger)

    The “Details” header is being generated by the default gigpress.js file is this code:

    // GigPress
    	$('.gigpress-tickets-link, .gigpress-sidebar-more a').addClass( 'button');
    	$('.gigpress-header').append( '<th scope="col" class="gigpress-details">Details</th>');
    	$('.gigpress-heading').attr( 'colspan', '5');
    	$('.gigpress-info .description').attr( 'colspan', '4');
    	$('.vevent .gigpress-row').append( '<td class="gigpress-info-trigger"><a href="#">More +</a></td>' );
    	$('.gigpress-info-trigger a').click( function() {
    		$( this ).parent().parent().next().fadeToggle();
    		return false;
    	})
    Thread Starter realcurtgranger

    (@realcurtgranger)

    Feel free to mark this RESOLVED now. =)

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Details – not shown, not in TR’ is closed to new replies.