>

ColdStone Theme: Added Hardcoded Video Iframe Just Above Recent Posts

Added the following to includes/default.php: <!-- SUB POST DIVISIONS --> <div class="subpost_wrap2"> <div class="subpost_wrap"> <div class="subpost_left"> <!-- 2014-06-02 Added Video to top of recent posts --> <div align="center"> <iframe style="border-width:5px; border-style:solid; border-color:#615E56;" width="450" height="253" src="//www.youtube.com/embed/4zEi8p1ZwNI" allowfullscreen></iframe> </div> <!-- End of 2014-06-02 video add --> <?php while...
read more

ColdStone Theme: Using Pages Instead of Posts for Featured Image

Hi, please go to featured.php save the file just in case; there, find: $coldstone_featured_number= make this equal with the numbers of pages you will use for the slider, like: $coldstone_featured_number=3; find: $my_query = new WP_Query before this add: $args = array( ‘post_type’ => ‘page’, ‘post__in’ => array(2,78,55) ); where 2,78,55 are 3 id’s of the pages you want to show in the slider. You need to insert here the actual id’s of the pages you want to include in the slider; then replace the line: $my_query = new WP_Query(………...
read more