This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php // Software notes | |
| if( have_rows('products', $userID) ): ?> | |
| <?php while( have_rows('products', $userID) ): the_row(); | |
| $product = get_sub_field('product'); //get repeater post object | |
| if ($product): | |
| //print_r($product); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php if ( is_user_logged_in() ) { ?> | |
| <h1>Firmware Updates</h1> | |
| <?php $current_user = wp_get_current_user(); ?> | |
| <h3 style="margin-bottom: 6px;">Welcome, <?php echo $current_user->user_firstname; ?>!</h3> | |
| <p>Your registered product software and updates are listed below.<br/> | |
| Need to register another product on your account? Please fill out a <a data-fancybox href="#updateaccount">request form</a>.</p> | |
| <?php // Software notes |
OlderNewer