search
Log In
Welcome to Blogiestools Ask, a blogging community where beginner and professional bloggers come to seek answers from other bloggers’ experiences.

You can ask questions related to starting a blog, monetizing a blog, marketing a blog, managing a blog, fixing a problem, the best web tech tools to use, etc.

Register or log in to ask questions or edit comments.
1 vote
I want to remove the powered by MediaWiki icon added at the footer of my MediaWiki website
in Fixing Blog Problems

1 Answer

0 votes
 
Best answer

There are two ways of removing the powered by MediaWiki logo added at the footer of MediaWiki CMS website. You can also change the powered by MediaWiki text to something that you want. 

Option 1: added the code below LocalSettings.php file

unset( $wgFooterIcons[‘poweredby’] );
 
Option 2: If option 1 does not work then add the following code to the LocalSettings.php file. Replace the "managed by us" message with your site name,  resources/assets/poweredby_mediawiki_88x31.png with your logo, and blogiestools.com with your site url.

$wgFooterIcons = [

                    "copyright" => [

                        "copyright" => [], // placeholder for the built-in copyright icon

                    ],

                    "poweredby" => [

                        "mediawiki" => [

                            // Defaults to point at

                            // "$wgResourceBasePath/resources/assets/poweredby_mediawiki_88x31.png"

                            // plus srcset for 1.5x, 2x resolution variants.

                            "src" => false,

                            "url" => "https://blogiestools.com",

                            "alt" => "Managed by us",

                        ]

                    ],

                ];

 

15.3k points
selected by

Related

0 votes
1 answer
Is there an option of removing my myself from a canva team
posted Dec 31, 2021 in General anonymous
0 votes
1 answer
I want to enable canonical URL in mediawiki so that the original URL is identified
posted Nov 8, 2021 in Fixing Blog Problems anonymous
1 vote
1 answer
I want my mediawiki URLS to be short and SEO friendly.
posted Oct 29, 2021 in Fixing Blog Problems anonymous
0 votes
1 answer
I have created a privacy page but I do not know how to add it in the footer section of my WordPress powered blog
posted Nov 3, 2021 in WordPress Problems anonymous
0 votes
1 answer
I am looking for a WordPress plugin that can enable me to create forms that can only be accessed by registered users.
posted Nov 3, 2021 in WordPress Problems anonymous