Title: rmeproductions's Replies | WordPress.org

---

# rmeproductions

  [  ](https://wordpress.org/support/users/rmeproductions/)

 *   [Profile](https://wordpress.org/support/users/rmeproductions/)
 *   [Topics Started](https://wordpress.org/support/users/rmeproductions/topics/)
 *   [Replies Created](https://wordpress.org/support/users/rmeproductions/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/rmeproductions/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/rmeproductions/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/rmeproductions/engagements/)
 *   [Favorites](https://wordpress.org/support/users/rmeproductions/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Shortcode with linked image](https://wordpress.org/support/topic/shortcode-with-linked-image/)
 *  Thread Starter [rmeproductions](https://wordpress.org/support/users/rmeproductions/)
 * (@rmeproductions)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/shortcode-with-linked-image/#post-6588388)
 * I’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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Internal Server Error on/wp-admin/customize.php after upgrade to 4.3](https://wordpress.org/support/topic/internal-server-error-onwp-admincustomizephp-after-upgrade-to-43/)
 *  [rmeproductions](https://wordpress.org/support/users/rmeproductions/)
 * (@rmeproductions)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/internal-server-error-onwp-admincustomizephp-after-upgrade-to-43/#post-6468268)
 * I’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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Shouty] Editing the form](https://wordpress.org/support/topic/editing-the-form-1/)
 *  Thread Starter [rmeproductions](https://wordpress.org/support/users/rmeproductions/)
 * (@rmeproductions)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/editing-the-form-1/#post-5409815)
 * Thank 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](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Simplify] HTML allowed in feature box text area?](https://wordpress.org/support/topic/html-allowed-in-feature-box-text-area/)
 *  [rmeproductions](https://wordpress.org/support/users/rmeproductions/)
 * (@rmeproductions)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/html-allowed-in-feature-box-text-area/page/2/#post-5297452)
 * 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 – 9http://www.
   909networks.com
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Simplify] HTML allowed in feature box text area?](https://wordpress.org/support/topic/html-allowed-in-feature-box-text-area/)
 *  [rmeproductions](https://wordpress.org/support/users/rmeproductions/)
 * (@rmeproductions)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/html-allowed-in-feature-box-text-area/page/2/#post-5297445)
 * Okay… I figured it out. For anyone who only wants one row like mine – [http://www.909networks.com](http://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](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Simplify] HTML allowed in feature box text area?](https://wordpress.org/support/topic/html-allowed-in-feature-box-text-area/)
 *  [rmeproductions](https://wordpress.org/support/users/rmeproductions/)
 * (@rmeproductions)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/html-allowed-in-feature-box-text-area/page/2/#post-5297435)
 * 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?

Viewing 6 replies - 1 through 6 (of 6 total)