Title: jeffreyeric's Replies | WordPress.org

---

# jeffreyeric

  [  ](https://wordpress.org/support/users/jeffreyeric/)

 *   [Profile](https://wordpress.org/support/users/jeffreyeric/)
 *   [Topics Started](https://wordpress.org/support/users/jeffreyeric/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jeffreyeric/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jeffreyeric/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jeffreyeric/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jeffreyeric/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jeffreyeric/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Shadowbox JS] Shadowbox JS on Mobile devices](https://wordpress.org/support/topic/shadowbox-js-on-mobile-devices/)
 *  [jeffreyeric](https://wordpress.org/support/users/jeffreyeric/)
 * (@jeffreyeric)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/shadowbox-js-on-mobile-devices/#post-3691955)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Uji Countdown] Years timer](https://wordpress.org/support/topic/years-timer/)
 *  [jeffreyeric](https://wordpress.org/support/users/jeffreyeric/)
 * (@jeffreyeric)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/years-timer/#post-3749010)
 * I too would like to include Months in my timer. Is this possible?
    Here is an
   example of a widget that has this functionality. [http://shailan.com/wordpress/plugins/countdown/help/](http://shailan.com/wordpress/plugins/countdown/help/)
 * Thanks!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Query posts if metabox checkbox is checked](https://wordpress.org/support/topic/query-posts-if-checkbox-is-checked/)
 *  [jeffreyeric](https://wordpress.org/support/users/jeffreyeric/)
 * (@jeffreyeric)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/query-posts-if-checkbox-is-checked/#post-3401739)
 * 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, ),
       		),
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Query posts if metabox checkbox is checked](https://wordpress.org/support/topic/query-posts-if-checkbox-is-checked/)
 *  [jeffreyeric](https://wordpress.org/support/users/jeffreyeric/)
 * (@jeffreyeric)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/query-posts-if-checkbox-is-checked/#post-3401738)
 * Sorry, here is a link to the page it should be outputting to.
 * [http://www.williamsselyem.com.php53-21.ord1-1.websitetestlink.com/pinot-noir/4177/](http://www.williamsselyem.com.php53-21.ord1-1.websitetestlink.com/pinot-noir/4177/)
 * Scroll down to see “Scores & Reviews”.. That’s where it *should* be.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Query posts if metabox checkbox is checked](https://wordpress.org/support/topic/query-posts-if-checkbox-is-checked/)
 *  [jeffreyeric](https://wordpress.org/support/users/jeffreyeric/)
 * (@jeffreyeric)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/query-posts-if-checkbox-is-checked/#post-3401737)
 * 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](http://pastebin.com/).]_
 * Any insight would be greatly appreciated!
    Thanks!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress HTTPS (SSL)] Redirect Loop with Cart 66 and wordpress-https](https://wordpress.org/support/topic/redirect-loop-with-cart-66-and-wordpress-https/)
 *  [jeffreyeric](https://wordpress.org/support/users/jeffreyeric/)
 * (@jeffreyeric)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/redirect-loop-with-cart-66-and-wordpress-https/#post-2417606)
 * Nevermind! i found the conflict! whew!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress HTTPS (SSL)] Redirect Loop with Cart 66 and wordpress-https](https://wordpress.org/support/topic/redirect-loop-with-cart-66-and-wordpress-https/)
 *  [jeffreyeric](https://wordpress.org/support/users/jeffreyeric/)
 * (@jeffreyeric)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/redirect-loop-with-cart-66-and-wordpress-https/#post-2417604)
 * 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)