Front Page › D5 Creation Forum › General Support › Small problem with Spark Theme
Tagged: Featured boxs, issue, Second Row, spark theme
Hi I just uploaded the new Spark Theme and have an issue with the Second Row Featured Boxs: Row Subject and Row Description:
What I type in won’t appear in either the Row title or Row Description after saving. It show up on the Spark Options page but not on my live site?
I only see the Spark Theme default Our Service for Row Title and SPARK is super elegant and Professional Responsive Theme which will create the business widely expressed for Row Description?
I’ve tried the Restore Defaults and it still doesn’t work?
Can you please help me with this issue? Thanks so much as I love this theme and would like to use it for my start up company.
Best Regards,
Dominic
Thank you for pointing this issue. This issue is present only in Free Version, The Extend Version is OK. Anyway, please change the content of featured-box.php file with the following:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<?php /* SPARK Theme's Featured Box to show the Featured Items of Front Page Copyright: 2014-2015, D5 Creation, www.d5creation.com Based on the Simplest D5 Framework for WordPress Since SPARK 1.0 */ ?> <div id="featured-boxs"> <span class="featured-box-first"><h2><?php echo esc_textarea(of_get_option('featuredr-title', 'Recent Works')); ?></h2><div class="content-ver-sep"></div><br /><p><?php echo esc_textarea(of_get_option('featuredr-description', 'The Color changing options of SPARK will give the WordPress Driven Site an attractive look.')); ?></p></span> <?php foreach (range(1, 3) as $fboxn) { ?> <span class="featured-box"> <img class="box-image" src="<?php echo esc_url(of_get_option('featured-image' . $fboxn, get_template_directory_uri() . '/images/featured-image' . $fboxn . '.jpg')) ?>"/> <h3><?php echo esc_textarea(of_get_option('featured-title' . $fboxn, 'SPARK Theme for Small Business')); ?></h3> <div class="content-ver-sep"></div><br /> <p><?php echo esc_textarea(of_get_option('featured-description' . $fboxn , 'The Color changing options of SPARK will give the WordPress Driven Site an attractive look. SPARK is super elegant and Professional Responsive Theme which will create the business widely expressed.')); ?></p> </span> <?php } if ( esc_html(of_get_option('srfbox', '1')) == '1' ): echo '<div class="clear"></div><br /><div class="lsep"></div><br /><br />'; ?> <br /><span class="featured-box-first"><h2><?php echo esc_textarea(of_get_option('featuredrsecond-title', 'Our Services')); ?></h2><div class="content-ver-sep"></div><br /><p><?php echo esc_textarea(of_get_option('featuredrsecond-description', 'SPARK is super elegant and Professional Responsive Theme which will create the business widely expressed.')); ?></p></span> <?php foreach (range(1, 3) as $fboxn2) { ?> <span class="featured-box"> <img class="box-icon" src="<?php echo get_template_directory_uri() . '/images/featured-image.png'; ?>" /> <h3 class="featured-box2"><?php echo esc_textarea(of_get_option('featured-title2' . $fboxn2, 'SPARK Theme for Business')); ?></h3> <div class="clear"> </div> <p><?php echo esc_textarea(of_get_option('featured-description2' . $fboxn2 , 'SPARK is super elegant and Professional Responsive Theme which will create the business widely expressed. The Color changing options of SPARK will give the WordPress Driven Site an attractive look.')); ?></p> </span> <?php } ; endif; ?> </div> <!-- featured-boxs --> |