Title: Bug/Fix (CMS Settings) in add_adminpanel.php
Last modified: August 20, 2016

---

# Bug/Fix (CMS Settings) in add_adminpanel.php

 *  [ganphx](https://wordpress.org/support/users/ganphx/)
 * (@ganphx)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/bugfix-cms-settings-in-add_adminpanelphp/)
 * Dashboard Options
 * Link to the feed you want to display for your clients on the front page gets 
   overlaid with the following code:
 * <?=get_option(‘cms_dashboard_feed_link’)?>
 * Replace Code on line 118
 *     ```
       <p><label for="cms_dashboard_feed_link"><?php _e("Link to the feed you want to display for your clients on the front page",'cms'); ?><br /><input class="regular-text" type="text" name="cms_dashboard_feed_link" id="cms_dashboard_feed_link" value="<?=get_option('cms_dashboard_feed_link')?>" /></label></p>
       ```
   
 * with:
 *     ```
       <p><label for="cms_dashboard_feed_link"><?php _e("Link to the feed you want to display for your clients on the front page",'cms'); ?><br /><input class="regular-text" type="text" name="cms_dashboard_feed_link" id="cms_dashboard_feed_link" value="<?php echo get_option('cms_dashboard_feed_link'); ?>" /></label></p>
       ```
   
 * [http://wordpress.org/extend/plugins/cms/](http://wordpress.org/extend/plugins/cms/)

The topic ‘Bug/Fix (CMS Settings) in add_adminpanel.php’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/cms.svg)
 * [CMS](https://wordpress.org/plugins/cms/)
 * [Support Threads](https://wordpress.org/support/plugin/cms/)
 * [Active Topics](https://wordpress.org/support/plugin/cms/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/cms/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/cms/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [ganphx](https://wordpress.org/support/users/ganphx/)
 * Last activity: [13 years, 9 months ago](https://wordpress.org/support/topic/bugfix-cms-settings-in-add_adminpanelphp/)
 * Status: not resolved