How to Use

Download > Install > Activate. That’s it!

This plugin is not affiliated with Really Simple Systems.

Example

Just click the new icon/name on the left admin dashboard menu. To change the position, edit the number after ‘dashicons-chart-pie’, in the code.

Source

This code can be pasted into the functions.php file of your child theme or, download and install the plugin for simple code activation.

function viawebs_plugins_add_rsscms_to_admin() {
    add_menu_page( 'viawebs_plugins_add_rsscms_to_admin', 'Really Simple Systems', 'read', 'https://crm.reallysimplesystems.com', '', 'dashicons-chart-pie', 1 );
}
add_action( 'admin_menu', 'viawebs_plugins_add_rsscms_to_admin' );

function viawebs_plugins_open_rsscms_new_tab() {
    ?>
    <script type="text/javascript">
        document.addEventListener("DOMContentLoaded", function() {
            var links = document.querySelectorAll("ul#adminmenu a[href$='https://crm.reallysimplesystems.com']");
            for (var i = 0; i < links.length; i++) {
                links[i].setAttribute('target', '_blank');
            }
        });
    </script>
    <?php
}
add_action( 'admin_head', 'viawebs_plugins_open_rsscms_new_tab' );