Removing Powered by ERPNext from Website Settings does not work

I may be mistaken but I recently observed this as well and I think it’s new. However, I must add it looks strange because it’s kind SEO driven concept … perhaps it’s fine to write powered by erpnext but not that fine to do it without notice. It’s like there’s no control :slight_smile:

Just feedback… take it as you wish.

The “Hide Footer Signup” hides the newsletter signup on the website as shown below.

It is not meant for hiding the “Powered by ERPNext…” line.

2 Likes

refer this link
Please watch it on youtube.

2 Likes

Already tried, it doesn’t work

This method is ok but when updating bench getting following msg -

Cannot proceed with update: You have local changes in app “erpnext” that are not committed.

Here are your choices:

  1. Merge the erpnext app manually with “git pull” / “git pull --rebase” and fix conflicts.
  2. Temporarily remove your changes with “git stash” or discard them completely
    with “bench update --reset” or for individual repositries “git reset --hard”
  3. If your changes are helpful for others, send in a pull request via GitHub and
    wait for them to be merged in the core.
1 Like

use JavaScript under website theme:
frappe.ready(() => {
document.querySelector(‘.footer-powered’).style.display = ‘none’;
})

1 Like

Before CSS applying:

After CSS applying:

display:none

1 Like

ref,

No need to do any customisation just Upgrade to ErpNext Version 14

Now currently it’s default featured to change Powered by to anything.

frappe.ready(() => {
$(‘.footer-powered’).addClass(“hide”);
});

put in website script

1 Like