rmeproductions
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Shortcode with linked imageI’ve also tried this and it’s not working.
<?php echo do_shortcode( '[image-autorefresh src="#" <a href="<?php echo get_permalink(7280)> width=220 height=160]' ) ?>
Forum: Fixing WordPress
In reply to: Internal Server Error on/wp-admin/customize.php after upgrade to 4.3I’m having the same issues. Only the Admin area is producing the area. I kill all the plug-ins and it comes back. I go through them one by one, everything is fine. Then it produces the error again.
Forum: Plugins
In reply to: [Shouty] Editing the formThank you.
I’d like to remove the email form field because in my instance – on my website – there is no need for me to have the users email address.
Forum: Themes and Templates
In reply to: [Simplify] HTML allowed in feature box text area?Adrienne Santana – Yes, that’s the code I used. Like I said, if you want to see how it looks before implementing it, you can see it on my website – 9https://www.909networks.com
Forum: Themes and Templates
In reply to: [Simplify] HTML allowed in feature box text area?Okay… I figured it out. For anyone who only wants one row like mine – https://www.909networks.com – just replace featured-box.php with this code. And don’t forget to add your links manually by adjusting /your_url/”
I hope this helps!
<?php /* Simplify Theme's Featured Box to show the Featured Items of Front Page Copyright: 2012-2014, D5 Creation, www.d5creation.com Based on the Simplest D5 Framework for WordPress Since Simplify 1.0 */ ?> <div id="featured-boxs"> <span class="featured-box-first"><h2><?php echo esc_textarea(of_get_option('featuredr-title', __('Recent Works','simplify'))); ?></h2><div class="content-ver-sep"></div><br /><p><?php echo esc_textarea(of_get_option('featuredr-description', __('The Color changing options of Simplify will give the WordPress Driven Site an attractive look.','simplify'))); ?></p></span> <?php $fboxclm = array("1"); foreach ($fboxclm as $fboxn) { ?> <span class="featured-box"> <a href="<?php bloginfo('url'); ?>/your_url/" title="<?php echo of_get_option('featured-title' . $fboxn , ''); ?>"> <img class="box-image" src="<?php echo of_get_option('featured-image' . $fboxn, get_template_directory_uri() . '/images/featured-image' . $fboxn . '.jpg') ?>"/> <h3><?php echo of_get_option('featured-title' . $fboxn , ''); ?></h3> </a> <div class="content-ver-sep"></div> <br /> <p><?php echo of_get_option('featured-description' . $fboxn , ''); ?></p> </span> <?php } ?> <?php $fboxclm = array("2"); foreach ($fboxclm as $fboxn) { ?> <span class="featured-box"> <a href="<?php bloginfo('url'); ?>/your_url/" title="<?php echo of_get_option('featured-title' . $fboxn , ''); ?>"> <img class="box-image" src="<?php echo of_get_option('featured-image' . $fboxn, get_template_directory_uri() . '/images/featured-image' . $fboxn . '.jpg') ?>"/> <h3><?php echo of_get_option('featured-title' . $fboxn , ''); ?></h3> </a> <div class="content-ver-sep"></div> <br /> <p><?php echo of_get_option('featured-description' . $fboxn , ''); ?></p> </span> <?php } ?> <?php $fboxclm = array("3"); foreach ($fboxclm as $fboxn) { ?> <span class="featured-box"> <a href="<?php bloginfo('url'); ?>/your_url/" title="<?php echo of_get_option('featured-title' . $fboxn , ''); ?>"> <img class="box-image" src="<?php echo of_get_option('featured-image' . $fboxn, get_template_directory_uri() . '/images/featured-image' . $fboxn . '.jpg') ?>"/> <h3><?php echo of_get_option('featured-title' . $fboxn , ''); ?></h3> </a> <div class="content-ver-sep"></div> <br /> <p><?php echo of_get_option('featured-description' . $fboxn , ''); ?></p> </span> <?php } ?> </div> <!-- featured-boxs -->
Forum: Themes and Templates
In reply to: [Simplify] HTML allowed in feature box text area?I don’t understand what I’m missing. I followed seofy’s instructions as far as adding the code to the CSS-JS-PHP plugin. Once I add this, should a new dialog box be added to the Simplify Options page under Featured Boxes? Because, I don’t have a place to add a link.
leviverhoeven – I see you have yours working.
Can someone please guide me, please?