Viewing 1 replies (of 1 total)
  • Thread Starter michent1

    (@michent1)

    Was actually able to figure this one out on my own. The tab image is now hyperlinked to it’s respective page.
    Line 197-204 on content-slider-custom-shortcodes.php

    <div class="cgs-icon-l">
    					<?php
    							$mykey_values = get_post_custom_values('content_slider_url');
    							$mykey_values_target = get_post_custom_values('content_slider_url_target');
    						?>
    						<a href="<?php echo $mykey_values[0] ?>" target="<?php echo $mykey_values_target[0]; ?>"><?php if ( has_post_thumbnail() ) {
    							the_post_thumbnail('content-slider-thumb');
    						}?></a>	
    
    					</div>

    Also changed the “Read More” text in the same file on line 175.

Viewing 1 replies (of 1 total)
  • The topic ‘Make Grid Boxes Link To Content’ is closed to new replies.