Via the Webs

Really Simple Systems Unofficial

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.

/*
Plugin Name: Lightweight Plugins - Really Simple Systems Unofficial
Plugin URI: https://lightweightplugins.com/plugin/really-simple-systems-unofficial
Description: Adds a link to Really Simple Systems's login/dashboard on the WordPress Dashboard navigation.
Version: 1.5
Author: WP Maintenance Experts
Author URI: https://wpmaintenanceexperts.com/
License: GPLv2 or later
*/

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


function lightweight_plugins_open_rss_new_tab() {
    ?>
    
    

Plugins Articles

Disable XML-RPC

Disabling XML-RPC in WordPress can be beneficial for several reasons: Security Concerns: XML-RPC has been targeted by attackers in various types of malicious activities: Brute Force Attacks: Attackers can use XML-RPC to amplify their brute force attacks. Instead of...

read more

MS Clarity Exclude Logged In Users

How to Use Download > Install > Activate. Use your favorite IDE or just edit within the WordPress plugin editor. Change "xxxxxxxxxx" to be your Clarity ID. Not associated with Microsoft® Clarity® Example This prevented me from recording all my logged in back-end...

read more

Add to Console Log

How to Use Download > Install > Activate. Use your favorite IDE or just edit within the WordPress plugin editor. Change the message to suit your needs. Example A fun project plugin. Thought of this after discovering a software company had a message about their open...

read more

Most Recent Articles