691 comments found.
Hello, Can I access all the icons of “iconsmind”? I need some icons that are not on the list …
Hi,
You can find all the icons in path ‘public/assets/fonts/iconsmind/’. In order to accelerate the project, we added the icon library by dragging it.
All the best.
Hi,
Thank you for the previous answer, I have other questions, can you tell me where I can see the validation for Input and CustomInput, and also the localization for CustomInput, AvField, AvField validation errorMessage and placeholders
Thank you
Hi,
For validation examples, you can examine the components in the ‘src/containers/form-validations/’ folder.
If you want to localize placeholder and errorMessages: You should use ‘injectIntl’ to add localize messages to the props of your component. The ‘src/views/app/ui/forms/layouts.js’ component will be a guide for you for using placeholder examples.
All the best.
Thank you.
Hey, how’s it going?
I have the following doubts below, could you help me?
- How do I remove from the URL ”/ app” I want to leave only ”/”? - How do I remove in ViewUser the URL ”/ user” I want to leave only ”/”?
Hi,
The following instructions will help you.
https://gogo-react-docs.coloredstrategies.com/docs/guides/changing-project-routeAll the best.
Hi ,
Thank you for this best react template, I have one question :- for a user with specific menu permission list come from database when the user logins I need to know how to hide or Show the menus from the template without rewriting the whole menu / Sidebar ? please include sample code
Thank you again.
HI,
Thanks for your kindly words. Menu is ready for role-based user authorization.
The guide below contains the necessary instructions. https://gogo-react-docs.coloredstrategies.com/docs/guides/user-authorization.All the best.
Hi, Please, did you add some component to parse HTML? because when i use html-react-parser, I have an error “TypeError: First argument must be a string” I think the problem is the conflit with other component
Hi,
We have never used html-react-parser plugin before. Unfortunately, we cannot make an assumption for the solution of the problem you are experiencing.
All the best.
Hi, I saw that you use firebase to manage authentication.In my case, I have to use the authentication system via an API. Do you have such an option please? Should I delete the firebase part and use axios to connect?
Hi,
The links below will help you.
https://gogo-react-docs.coloredstrategies.com/docs/guides/changing-auth-api https://gogo-react-docs.coloredstrategies.com/docs/guides/user-authorizationAll the best.
Hi, Thank you for the higth quality of your theme. Whenever I try to customize a React page I get the error “prettier/prettier replace error”. How can I fix it please?
Hi,
Prettier errors are generally related to code formatting.
You can install a prettier plugin for the IDE you are using and format your code with the help of a shortcut.
If you wish, you can completely disable prettier errors.
https://stackoverflow.com/questions/58424718/how-can-i-disable-the-error-prettier-prettier-on-eslintAll the best.
Hi, Thank you for the higth quality of your theme. Whenever I try to customize a React page I get the error “prettier/prettier replace error”. How can I fix it please?
Hi,
Prettier errors are generally related to code formatting.
You can install a prettier plugin for the IDE you are using and format your code with the help of a shortcut.
If you wish, you can completely disable prettier errors.
https://stackoverflow.com/questions/58424718/how-can-i-disable-the-error-prettier-prettier-on-eslintAll the best.
I was wondering if I could receive the latest update to the template. I had purchased: themeforest-dSdKxTIj-gogo-react-bootstrap-4-admin-dashboard.zip which is Gogo-React-Admin-Dashboard-4.1.0
Hi,
Up-to-date version from your downloads page if purchased.
All the best.
Hi! First of all, nice Template! I am having problem with auth0 and this project, because following this tutorial ( https://auth0.com/blog/complete-guide-to-react-user-authentication/#Add-User-Authentication ) I cant push history to /app (I’m using /home as callbackurl from auth0). I am also having problem because the /app file uses classes instead of hooks whereas all the other involved parts are using hooks. How would you approach this? (Sorry I’m new in front end world)
ERROR: (React Hook “useHistory” cannot be called in a class component. React Hooks must be called in a React function component or a custom React Hook function)
Hi,
Which version of GOGO are you using? The /app and /home components are function components in the current version.
All the best.
I bought it like 5 days ago, so I guess it is the latest version. Yes, the /app is function. I am talking about the App class. Anyway, i changed the AppRender and the App files to support the tutorial but now I’m not being able to redirect properly using push. I am also reviving errors from Intl. Could you please give me a suggestion on how can we use this template with auth0? Otherwise it would be useless for me
Hi,
We forgot to convert the app component to function. Thank you for this information. Below you can find the converted version of App.js code. Then it will be much easier for you.
https://codepen.io/originalai/pen/KKNrxmqIn addition, you may need the following guide to uninstall Firebase:
https://gogo-react-docs.coloredstrategies.com/docs/guides/changing-firebase-credentialsAll the best.
Hello, I have recently bought gogo react admin dashboard. Version 5.2.0 – 06.08.2020 I have seen that “User roles added”. But I could find any code for handling user roles
Hi,
The link below will help you.
https://gogo-react-docs.coloredstrategies.com/docs/guides/user-authorizationAll the best.
Why I didn’t get all icons with the themes?
Hi,
You may use “public\assets\fonts” which should contain the icons you have mentioned. As a side not, you may also need to change current icons of the menu since naming of this file is different than the current one.
All the best.
Sorry, posted same comment twice by mistake. Please ignore this one.
Hello, components render twice. It wasn’t much important until I started to send requests to my API. Everything renders twice, it sends requests twice. So on. What is the reason for this, what is the solution?
I google it and found React.Strictmode. I tried it on App.js but couldn’t make it work.
Hi,
We recommend you to use Reacr memo.
https://reactjs.org/docs/react-api.html#reactmemoAll the best.
Hi, I am using Gogo theme, it’s very good I must say. It’s reduces the work to make an Admin dashboard. I am enjoying it so far. Thanks for the great Theme. I have one question Recently I was adding locale of Urdu to the theme. I have followed the steps that you have mentioned in the guide but it’s giving me an error “Failed to compile. ./src/lang/index.js Attempted import error: ‘addLocaleData’ is not exported from ‘react-intl’.” While searching on Google I found that it’s not exported from react-intl library. So how should I add another language to the dashboard? Thanks
Hi,
Unfortunately, we forgot to update the corresponding page in the documentation.
I share the stages one by one below. https://codepen.io/originalai/pen/PobjRxG?editors=0010//— step 1: src/lang/locales/URDU.js
module.exports = {
“lang.key1” : “lang text 1”,
“lang.key2” : “lang text 2”,
}
//— step 2: src/lang/entries/URDU.js
import urduMessages from ’../locales/URDU’;
const urduLang = { messages: { ...urduMessages, }, locale: ‘URDU-LANG-CODE’, }; export default urduLang;
//— step 3 : src/lang/index.js
import enLang from ’./entries/en-US’;
import urduLang from ’./entries/URDU’;
const AppLocale = { en: enLang, urdu: urduLang, };
export default AppLocale;
//— step 4: src/constants/defaultValues.js
export const localeOptions = [
{ id: ‘en’, name: ‘English’, direction: ‘ltr’ },
{ id: ‘urdu’, name: ‘URDU’, direction: ‘ltr’ },
];
All the best.
Hi, hi hope you guys are doing well, how can i add checkbox in react table for selecting rows can you please guide me , i tried many times in different ways but i did’nt solve the problem . all examples are given in class component, but in our theme we are using functional component
Thankyou…!
Hi,
The example below will help you.
https://codesandbox.io/s/github/tannerlinsley/react-table/tree/master/examples/row-selectionAll the best.
Hi, hi hope you guys are doing well, how can i add checkbox in react table for selecting rows can you please guide me , i tried many times in different ways but i did’nt solve the problem .
Thankyou…!
Hi,
The example below will help you.
https://codesandbox.io/s/github/tannerlinsley/react-table/tree/master/examples/row-selectionAll the best.
Hi. I’m working with “moment” and how to implement “Language Texts” on this library?
Hi,
Moment has its own language support. This can make your job easier.
https://momentjs.com/docs/#/i18n/All the best.
I bought the template through Envato Elements, but it comes with almost no documentation on how to generate the tables and all the elements.
Where can I access full support and / or documentation?
Hi,
The link below will help you.
https://gogo-react-docs.coloredstrategies.com/As a side note, support is available for Theme Forest purchased accounts only.
Cheers.
Good afternoon, I am having some issues with Router when deploying to production . If I am working locally, I can work with the template without any problems, and if I deploy it to production, it works, except when I try to access directly an URL that is not the main URL. For example, my app is deployed to example.com, this works fine, and once I am inside, I can move through the app to example.com/app, example.com/login, etc. only as long as I use buttons or links within the app. If I paste directly on the navigation bar of the browser example.com/login I get an error message, a 404. I am guessing this is somehow related to the Router, but I do not see where the problem is. Do you know? Thank you, Best regards,
Hi,
You need a basic url rewriting for your server to direct all urls to index.html page. This will make React to manage all the routes.
All the best.