Archive for Shahid Malla

WHMCS Expert 2023?

Shahid Malla is a highly skilled and experienced WHMCS expert developer. With over a decade of experience in the hosting industry, Shahid has developed a deep understanding of the WHMCS platform and how to effectively use it to meet the needs of his clients. Shahid has a strong track record of delivering high-quality solutions that […]

Continue reading
To make a website in WordPress

How to make website in WordPress To make a website in WordPress, you will need to follow these steps: By following these steps, you can create a professional-looking website using WordPress. It’s a user-friendly platform that allows you to easily create and manage your own website.

Continue reading
The Best IPTV Hosting: Who’s Right For Your Site? 2023

The Best IPTV Hosting: Who’s Right For Your Site? 2023 The best IPTV hosts offer easy or automatic WHMCS installation, Free IPTV Website Themes, servers optimized for WHMCS deployment, and generous bandwidth and disk space allowances. See our top picks for IPTV hosting. Best IPTV Hosting with cPanel Control Panel An IPTV hosting plan is […]

Continue reading
Remove-Powered-By-WHMCS

Remove Powered By WHMCS Copy The code from footer.tl and past in footer.tpl under the whmcs theme files above the code! Thanks <script> if ($(“p:contains(‘Powered by’)”).length) { $(“p:contains(‘Powered by’)”).hide(); } </script>

Continue reading
ini_set() has been disabled for security reasons in cPanel

In this guide, I will show you how you can fix the int_set() issue in your server. if you do not see in disable functions but still show you the int_set issue, then I have a solution for you. many hosting providers create a manual file in Cpanel to block such function nnd called it […]

Continue reading
How To Remove WHMCS Sidebar from the order form

Hi, in this guide i will show you how you can hide the sidebar from whmcs For Orderform <?php use WHMCS\View\Menu\Item as MenuItem; add_hook(‘ClientAreaSecondarySidebar’, 1, function(MenuItem $secondarySidebar) { $client = Menu::context(‘client’); if (is_null($client) and (!is_null($secondarySidebar->getChild(‘Categories’)))) { $secondarySidebar->removeChild(‘Categories’); } if (is_null($client) and (!is_null($secondarySidebar->getChild(‘Actions’)))) { $secondarySidebar->removeChild(‘Actions’); } }); For clientarea add_hook(‘ClientAreaSecondarySidebar’, 1, function(MenuItem $secondarySidebar) { if (!is_null($secondarySidebar->getChild(‘Client […]

Continue reading
How to Remove or Hide Country from WHMCS Order Form

Hi in this guide, I will show you how you can remove or hide country in whmcs order form, many developers or whmcs users want to hide some fields which are not optional in whmcs but I have always a solution for everything you need with whmcs! Steps To Hide WHMCS Orderform Field (Country) First […]

Continue reading