63 comments found.
This is one of the nicest and user friendly themes I have ever used. I would like to ask if you will be updating the theme to Bootstrap 5?
Thanks for kindly words. Unfortunately, my schedule full now .
do u have an Arabic Version RTL if not can u assist us to do it with extra cost ?
Sorry, my schedule is full
Hello team we need this theme with html and bootstrap only not in angular
There is no static html version
can you create it in html
we are ready to buy it
sorry, my schedule is full.
How to change the logo image ?
Logo in theme/components/header.component.html file.
Quick Question: When new versions come out, what is the quickest way to update existing versions? Can we simply update the package.json file to reflect any new versions or will there be breaking changes between versions. If each version simply updates the packages, then that can be handled easily through NPM. I do not know if you publish a breaking changes report or a change log where such things can be identified. Love the software!
You can use : https://update.angular.io/
Hi, I would like to renew the support – but – have a question. I was going to follow this tutorial that sets up Templates for use with Angular 8 and Bootstrap. Would these instructions work with this template as well?
See: https://www.youtube.com/watch?v=nZbZ5AHZJnc
Also, where can one find the docs?
Yes. Documentation inside purchased files.
Thanks for the quick response!
Two final questions:
Can one follow instructions seen in this video to add Components for use to the system? I am only asking because it is my understanding that one creates a component using “ng g c” and then modifies the files generated. In this case, the fellow creates the files directly. So, can I use “ng g c” (under Angular 8 ) with no problem?
https://www.youtube.com/watch?v=UXGJzKI3ziEFinally, can you point me to documentation that would allow one to change the colors (create their own skin)?
Regards.
1) yes, you can use “ng g c” for create new component. 2) there is detailed information about how to change theme color or create new skin inside template documentation .
The vertical menu is scrolling with the whole page, would be better if it was fixed
Thanks, I will check
Hello , we ae planning to buy Template with extended version, we have some queries before . if we brought this theme with Extend Licence to develop own product and list on envento and market (may be),we are planning to develop multiple script to upload on codecanyon and others marketplace will be authorized to develop and list , if bought extend licence ??? if yes , we expect your answer on : alert.algorithmtree@gmail.com , if no what will be the process from our side to fulfill our requirement.
I purchased StartNG about 9 months ago and I love the design and ease of use. I have a question: When you release updates, how can I update my existing projects to the latest versions without overwriting what I have already built? Can I just merge the new package.json file to the current project and rebuild the project? Basically, I want to upgrade my projects to Angular 8, as they are currently Angular 7. I know I can just change the version in the package.json file, but will this cause any breaking changes to occur.
Please, refer this link: https://update.angular.io/#7.0:8.0
Hi, does this use SASS or just CSS Variables?
Hi, this template use scss.
Which module / plugin you think might be best to include RLT support for this theme? I bought this theme and now I need RTL support for this.
Hi, please look this link: https://github.com/MahdiMajidzadeh/bootstrap-v4-rtl
How to convert this project to cordova projact?
Hi, I never use Cordova. Please, read following helpfull links:
https://medium.com/@EliaPalme/how-to-wrap-an-angular-app-with-apache-cordova-909024a25d79
https://medium.com/@nacojohn/convert-your-angular-project-to-mobile-app-using-cordova-f0384a7711a6
I imported your project into my existing one “as is”, however, I keep getting this error:
Can’t bind to ‘routerLink’ since it isn’t a known property of ‘a’. (“umbs; let i = index;” class=”breadcrumb-item”> ][routerLink]=”[breadcrumb.url]”>{{breadcrumb.name}} ) at JitCompiler.push../node_modules/@angular/compiler/fesm5/compiler.js.JitCompiler._compileComponents (compiler.js:26093) at compiler.js:26003 at Object.then (compiler.js:2417) at JitCompiler.push../node_modules/@angular/compiler/fesm5/compiler.js.JitCompiler._compileModuleAndComponents (compiler.js:26002)
You need to add RouterModule to imports in your module.
Does it support RTL ?
No, rtl doesn’t support.
Do you have any plan to support RTL in future ?
Sorry, but there is no any plan to add RTL support.
Can you please post an example with routing override? I want to remove ‘pages’ from the URL and have localhost:4200/MyComponent but the example from Gradus you provided does not work. Many thanks.
export const routes: Routes = [
{
path: '',
component: PagesComponent,
children:[
{ path: '', loadChildren: './pages/dashboard/dashboard.module#DashboardModule', data: { breadcrumb: 'Dashboard' } },
{ path: 'blank', component: BlankComponent, data: { breadcrumb: 'Blank page' } },
{ path: 'search', component: SearchComponent, data: { breadcrumb: 'Search' } }
]
},
{ path: 'login', loadChildren: './pages/login/login.module#LoginModule' },
{ path: 'register', loadChildren: './pages/register/register.module#RegisterModule' },
{ path: '**', component: NotFoundComponent }
];
2) Delete pages.module
3) Import all components in app module
import { PagesComponent } from './pages/pages.component';
import { BlankComponent } from './pages/blank/blank.component';
import { SearchComponent } from './pages/search/search.component';
import { HeaderComponent } from './theme/components/header/header.component';
import { FooterComponent } from './theme/components/footer/footer.component';
import { SidebarComponent } from './theme/components/sidebar/sidebar.component';
import { VerticalMenuComponent } from './theme/components/menu/vertical-menu/vertical-menu.component';
import { HorizontalMenuComponent } from './theme/components/menu/horizontal-menu/horizontal-menu.component';
import { BreadcrumbComponent } from './theme/components/breadcrumb/breadcrumb.component';
import { BackTopComponent } from './theme/components/back-top/back-top.component';
import { UserMenuComponent } from './theme/components/user-menu/user-menu.component';
@NgModule({
declarations: [
AppComponent,
PagesComponent,
BlankComponent,
SearchComponent,
NotFoundComponent,
HeaderComponent,
FooterComponent,
SidebarComponent,
VerticalMenuComponent,
HorizontalMenuComponent,
BreadcrumbComponent,
BackTopComponent,
UserMenuComponent
],
..................
4) Remove pages path and change links in menu.ts file.
For more support please contact me via email admin@themeseason.com
Just a quick pre-sales question. I see this theme has a Login Dialog created. Doc you already have a way programmed into this theme to keep people from viewing the rest of the site until they are logged in? I am not sure if you are using something like Route Guard and have already included this feature or not… It’s not a deal breaker – but it would save a little programming time.
You can create AuthGuard service, then verify user authorization. For this you can use canActivate property of Router.
OK – Thanks. I purchased the theme… it looks really nice – Looks like it is very easy to understand. I have purchased some other themes from Code Canyon and they were a nightmare to figure out and I am a seasoned Angular Developer. Thank you for the fast response.
Thanks for purchase.
Hi, I have purchased this template and was trying to run it. I am seeing the below error. Could you please assist me?
PS E:\Projects\BC\Angular Projects\StarNG\startng> ng serve Your global Angular CLI version (7.1.0) is greater than your local version (7.0.2). The local Angular CLI version is used.
To disable this warning use “ng config -g cli.warnings.versionMismatch false”.- Angular Live Development Server is listening on localhost:4200, open your browser on http://localhost:4200/ **
Date: 2018-11-27T07:35:47.555Z Hash: 14ba229ee034892880ff Time: 31185ms chunk {main} main.js, main.js.map (main) 1.93 kB initial chunk {polyfills} polyfills.js, polyfills.js.map (polyfills) 94.6 kB initial chunk {runtime} runtime.js, runtime.js.map (runtime) 6.22 kB entry chunk {scripts} scripts.js, scripts.js.map (scripts) 159 kB [rendered] chunk {styles} styles.js, styles.js.map (styles) 1.02 MB initial chunk {vendor} vendor.js, vendor.js.map (vendor) 326 kB initial
ERROR in node_modules/ng2-dragula/dist/MockDrake.d.ts(41,5): error TS2416: Property ‘on’ in type ‘MockDrake’ is not assignable to the same property in base type ‘DrakeWithModels’. Type ‘(event: string, callback: Function) => void’ is not assignable to type ‘(events: string, callback: Function) => Drake’. Type ‘void’ is not assignable to type ‘Drake’.
i 「wdm」: Failed to compile.
Hi,
I am able to run the seed project but not the complete template. Could you please assist me?
At the time of npm install, it threw many warnings related to almost all the modules. And while using ng server it has failed with the following error.
Here is the error.
ERROR in node_modules/ng2-dragula/dist/MockDrake.d.ts(41,5): error TS2416: Property ‘on’ in type ‘MockDrake’ is not assignable to the same property in base type ‘DrakeWithModels’. Type ‘(event: string, callback: Function) => void’ is not assignable to type ‘(events: string, callback: Function) => Drake’. Type ‘void’ is not assignable to type ‘Drake’.
i 「wdm」: Failed to compile.
Hi,
don’t worry about warnings.
This is type definition issue of ng2-dragula. For fix this error please upgrade ng2-dragula to 2.1.1 version.
npm uninstall ng2-dragula --save
then
npm install ng2-dragula@2.1.1 --save
excellent! I am able to run it now. Thanks much for your prompt response, appreciated!
Hello, could you please send me the htaccess for https?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
How do I change the “Loading” graphic?
Loading spinner created with css, you can find styles in style.scss file . Class name is .loader .
Is there any way to have custom menus according to the user level?
You can fetch and show menu items for any user. Look membership page, how assign menu items to user.
the components are with typescript ?, the template is only angular or has jquery libraries?
Yes, typescript, angular, also jquery libs.