Crema React
v-3
v-3
  • About Crema
  • Crema 4.x (Next version)
  • Overview
    • Crema Overview
    • Folder Structure
      • @crema
      • page
      • redux
      • shared
      • types
    • GitHub Access
    • Slack Community
    • Figma File
  • Development
    • Installation
      • Pre-Requisites
      • Installing Crema
    • Route Overview
    • Add New Route
    • Auth User
    • Authentication Methods
    • API Calls
    • Multilingual
      • Adding New Language
      • Changing Language
    • Style Framework
  • MUI
    • Theme Color
    • Sidebar Configuration
      • Adding New Menu
      • Menu Color Theme
    • Navigation Style
    • Footer Configuration
      • Footer
      • Footer Type
    • Template Mode
    • Template Direction
  • Next-Js
    • About Next.JS
    • Folder Structure
    • Installing Next jS
    • Authentication
    • Add New Route
    • Deploy to server
  • FAQ
  • React Bootstrap
    • About React-Bootstrap
    • Styled Framework
    • RTL
    • Dark Theme
  • ANT Design
    • About Crema Ant
    • Style Framework
  • Servers
    • Python
    • Laravel
    • Mongoose
  • Credits
  • Crema V-2
Powered by GitBook
On this page

Was this helpful?

  1. MUI
  2. Footer Configuration

Footer

We have provided the option of disabling or enabling the footer. You can enable or disable the footer by following the under-written steps.

Whether the user want to keep the footer or not, this is totally up to the user's choice. We have provided the option of disabling or enabling the footer. You can enable or disable the footer by following the under-written steps.

Disabling or Enabling the Footer in Run Time:-

Click on the Settings button on the right corner of the screen just below the notification icon, a drawer will open in which you will find a Footer toggle button and by using that button, you can enable or disable Footer.

Enabling or Disabling in development mode (setting default Footer):-

To enable or disable the Footer, go to the src/@crema/utility/ContextProvider/defaultConfig.js file

In this file, you will find a property named 'footer'. You need to set the value of Footer to true, if you want to enable the Footer or false if you want to disable the Footer like below

src/@crema/utility/ContextProvider/defaultConfig.js
const defaultConfig = {
  ...
  footer: false,// by passing true and false you can enable and disable it
  ...
};
export default defaultConfig;

Last updated 3 years ago

Was this helpful?