Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi Matt,

    Thanks for this tip. However, I can verify that the conditional statement is working but the filter is not.. I can echo some text that i only see on a mobile device so i can say that the statement is working.. But, for some reason shadowbox is still working.. What am i missing? I’ve added this filter ABOVE

     <?php wp_head(); ?> 

    is that the correct placement?

    Forum: Plugins
    In reply to: [Uji Countdown] Years timer

    I too would like to include Months in my timer. Is this possible?
    Here is an example of a widget that has this functionality.
    https://shailan.com/wordpress/plugins/countdown/help/

    Thanks!

    I’m not very good at this forum stuff..

    <?php
    			$winenotes = get_post_meta( get_the_ID(), 'Wine-Notes', true );
    			$winereviewscheck = get_post_meta( get_the_ID(), 'reviewmulticheckbox', $single = false );
    
    			$winepoints1 = get_post_meta( get_the_ID(), 'Reviewer-One-Points', true );
    			$winepoints2 = get_post_meta( get_the_ID(), 'Reviewer-Two-Points', true );
    			$winepoints3 = get_post_meta( get_the_ID(), 'Reviewer-Three-Points', true );
    			$winepoints4 = get_post_meta( get_the_ID(), 'Reviewer-Four-Points', true );
    			$winepoints5 = get_post_meta( get_the_ID(), 'Reviewer-Five-Points', true );
    			$winepoints6 = get_post_meta( get_the_ID(), 'Reviewer-Six-Points', true );
    
    			$winereview1blurb = get_post_meta( get_the_ID(), 'Review-One-Blurb', true );
    			$winereview1desc = get_post_meta( get_the_ID(), 'Review-One-Desc', true );
    			$winereview2blurb = get_post_meta( get_the_ID(), 'Review-Two-Blurb', true );
    			$winereview2desc = get_post_meta( get_the_ID(), 'Review-Two-Desc', true );
    			$winereview3blurb = get_post_meta( get_the_ID(), 'Review-Three-Blurb', true );
    			$winereview3desc = get_post_meta( get_the_ID(), 'Review-Three-Desc', true );
    
    			 if($winereviews){
    
    			if ( !empty( $winereviews ) ) { ?>
    			<div class="wine-notes">
            	<h4>Scores and Reviews</h4>
                <div class="scores-reviews">
                <?php if ( $winereviewscheck == 'Reviewer-One' ) //REVIEWER ONE
    			{ ?>
    
                    <div class="points"><span>Points</span><div class="point-number"><?php echo $winepoints1; ?></div></div>
    
                        <?php if ( !empty( $winereview1blurb ) ) { ?>
                            <div class="review">
                                <p><?php echo $winereview1blurb; ?></p>
                            </div>
    					<?php } ?>
    
                        <?php if ( !empty( $winereview1desc ) ) { ?>
                            <div class="review">
                                <p><?php echo $winereview1desc; ?></p>
                            </div>
    
                        <div style="clear:both;"></div>
    					<?php } ?>
    
                <? }else { } ?>
    
                <?php if ( $winereviewscheck == 'Reviewer-Two' ) //REVIEWER TWO
    			 { ?>
    
                    <div class="points"><span>Points</span><div class="point-number"><?php echo $winepoints2; ?></div></div>
    
                        <?php if ( !empty( $winereview2blurb ) ) { ?>
                            <div class="review">
                                <p><?php echo $winereview2blurb; ?></p>
                            </div>
    					<?php } ?>
    
                        <?php if ( !empty( $winereview2desc ) ) { ?>
                            <div class="review">
                                <p><?php echo $winerev2ew1desc; ?></p>
                            </div>
    
                        <div style="clear:both;"></div>
    					<?php } ?>
    
                <? }else { } ?>
    
                </div>
    
            </div><!--/wine-notes-->
    
    <? } } else { } ?>
    </pre>
    <pre>
    		//	Reviewer One
    			//Wine Score
    			array(
    				'name' => 'Reviewer One Points',
    				'desc' => 'Wine score for reviewer one',
    				'id'   => 'Reviewer-One-Points',
    				'type' => 'text_small',),
    			//Reviewer 01 blurb
    			array(
    				'name' => 'Review One Blurb',
    				'desc' => 'Review blurb',
    				'id'   => 'Review-One-Blurb',
    				'type' => 'textarea_small',
    			),
    			//Reviewer 01 long desc
    			array(
    				'name' => 'Review One Long Description',
    				'desc' => 'Review full description',
    				'id'   => 'Review-One-Desc',
    				'type' => 'wysiwyg',
    				'options' => array(	'textarea_rows' => 5, ),
    		),

    Sorry, here is a link to the page it should be outputting to.

    https://www.williamsselyem.com.php53-21.ord1-1.websitetestlink.com/pinot-noir/4177/

    Scroll down to see “Scores & Reviews”.. That’s where it *should* be.

    Hi ul71m0,

    I am using the same plugin and i am trying to show specific information based on which checkboxes are selected.

    Here is my code
    [Large chunk of mangled code moderated. Please post code or markup between backticks or use the code button. Or better still – use a pastebin.]

    Any insight would be greatly appreciated!
    Thanks!!

    Nevermind! i found the conflict! whew!!

    I am having the same issue but there are no capitals that i can see. what can be causing this? I’m working on a live site and it’s broken until i can get this fixed. please help!!

    thank you!

Viewing 7 replies - 1 through 7 (of 7 total)