Support

Account

Home Forums General Issues Turn subfield radio button options into icons Reply To: Turn subfield radio button options into icons

  • Hi Elliot,
    Here’s the code – thanks!

    <!-- BEGIN .entry-content -->
                            <div class="entry-content">
                            <p style="margin-bottom: 1rem"><img style="vertical-align:middle;margin-left:10px" src="http://new.cesi.ie/wp-content/uploads/2014/01/presentation-icon.png" /> = Presentation<img style="vertical-align:middle;margin-left:10px" src="http://new.cesi.ie/wp-content/uploads/2014/01/workshop_icon.png" /> = Workshop</p>
                                <?php the_content(); ?>
                                <?php g1_wp_link_pages(); ?>
                                <?php if(get_field('event_programme')): ?>
                     <div id="g1-table-1" class="g1-table g1-table--solid ">
                    
    			<?php while(has_sub_field('event_programme')): ?>
                  <table>
                <caption><h2><?php echo date('l, M jS', strtotime(get_sub_field('date'))) ?></h2></caption>
            <?php if(get_field('event_programme')): ?>
    		 <?php while(has_sub_field('event_details')): ?> 
             <thead> <tr> <th colspan="3">
    		 <?php the_sub_field('start_time'); ?> - <?php the_sub_field('end_time'); ?>
             </th> </tr> </thead> 
             <?php if(get_field('event_programme')): ?>
    		 <?php while(has_sub_field('presentation_details')): ?>  
                 <tbody> <tr><td>
    <?php
    
    $type = get_sub_field(‘event_type’);
    
    ?>
    <i class="icon-<?php echo $type; ?>"></i></td> 
                 <td><strong><?php the_sub_field('title'); ?></strong><?php the_sub_field('speaker'); ?></td>
                 <td><?php the_sub_field('location'); ?></td></tr> 
                 </tbody> 
             <?php endwhile; ?>
    	 <?php endif;  ?> 
           <?php endwhile; ?>
    	 <?php endif;  ?> </table><p></p>        					  	 
       <?php endwhile; ?></div>	
      <?php endif;  ?>	 
    </div>
    			<p><?php echo do_shortcode("[feather_share]"); ?></p>
                            <!-- END .entry-content -->