• 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/

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