set bootstrap admin template for dotnetnuke admin pages - twitter-bootstrap-3

How to set admin skin of DOTNETNUKE in such way that all admin pages take that theme?
I want to use one of admin templates of bootstrap 3 but it seems that dotnetnuke admin pages has its own CSS class which does not match bootstrap class.
what should i do?

The individual modules within DNN do have their own styles. Therefore you will not be able to have the actual interactions in those modules use bootstrap styles without making modifications to the core modules
You can set the overall skin on admin pages just like any other page though. The content will be your only item needing work.

Related

How to integrate a landing page with a Vue SPA?

So, I've built an SPA with Vue. We hire a designer to create a landing page. The landing page looks great. It shows some info about the app and there is a "Sign in" button that does nothing at the moment.
The landing page does include CSS and Javascript (jQuery etc) that I don't, and don't want to, use in the Vue app.
So the question is: Is it possible to include the landing page code in my Vue project without loading landing page JS/CSS if user is already signed in?
Plan B for me is to host the landing page on mydomain.com and the app on app.mydomain.com. This will work I guess, I see others do this. But it would be nice to know my possibilities
Did some search and didn't find exact solution to your issue, however it seems that this is doable. I have some concerns regarding the head part of the page, but this is a way to start:
Create new Vue component that will include all the HTML code (body only) that you need + install (with npm) and import all needed js files, including jQuery, in that component.
Make sure, that you configure this component as lazy loaded in vue-router - so all your html and scripts will be separated from the app.
From there Vue should do the job - you will get your page where needed and other routes will be inside the app.

Asp.Net core Individual User Authentication Login/Register Pages

I am new to Asp.net core razor pages. I am using asp .net core version 2.2, I am trying to make an application using Social Media authentication services. But the problem I am facing is the weird structure of asp .net core razor applications. I have already done the authentication things, but the problem I am facing is to find the Login and Registration pages. Where can we find them? What if we want to change the layout or something. What should we do for that?
Depending on how you implemented authorization, and based on the documentation :
You should be able to find the scaffolded views in the Areas\Identity's folder of your project or in the ~/Pages/ folder.
If you want to change the layout or something else, you can edit those views (customize) and/or create other ones.
Don't forget to generate the scaffolded views using :
From Solution Explorer, right-click on the project > Add > New Scaffolded Item
Hope it helps.
The default scaffolded Razor pages in ASP.NET Core are made using Partial Views. The default layout of the applicaton can be found in Pages/Shared/_Layout.cshtml.
Inside of this file there is a reference to Pages/Shared/_LoginPartial.cshtml , which contains the layout for the login page. The reference should be somewhere around line 35 in the _Layout.cshtml.
If you want to edit the way the default Razor pages look, this is where you do it.

How can i find admin panel URL of my prestashop

I am new to prestashop. 2 days before i installed prestashop Version 1.6.1.6 in my localhost. But now i forgot its admin panel URL. Is there any way to find out the URL. Any one please help me.
View the folder where you installed prestashop and from there you can see all the folders.
Default rename the admin folder with admin plus 4 random numbers, ess admin1234.
If you customized the directory differently compare your folders with the default ones.
By default there are:
Adapter, cache, classes, config, controllers, Core, css, docs, download, img, js, localization, log, mails, modules, override, pdf, themes, tools, translation, upload and webservice.
the remainder is the folder admin.
if you want to know the url of admin page from where you can manage your products
Just go to the "administration" (e.g 127.0.0.1/administration) page
You can also check the installation directory for admin or administration folder
If you find any folder named admin or administration then type same name after the hostname of your website.
Now you will reach to login page if you found admin page of the Prestashop.
Then type the email address and password you provided while installing the Prestashop.

How to add dojo to websphere portal 7 custom theme?

I create a custom theme in WebSphere portal 7.But dojo is not configured .
Is there any way to add all dojo js to custom theme.
Thanks,
Pranav
The 7.0.0.2 theme uses the deferred profile by default. This profile only loads dojo when it's needed. You can either
Set the theme to use the full profile
or
Create your own profile that includes dojo on page load and set the theme to use that.

Integrate Orchard CMS with MVC4 Website

I already have MVC4 website and that is to perform Searching (OPAC). Now, We have to integrate it with Orchard CMS. I have followed the procedures to add my existing solution into Orchard CMS solution. Everything is okay but I am not able to get the javascript to work with my view page.
Also, The default Orchard library to include js extensions ie, #Script.Require or #Script.Include also not recognised as intellisense feature in my view page.
When I use default MVC library to include the js like #Scripts.Render is not working as expected.
How can I make my custom javascript to work my page.
Help me to identify the problem.
Thanks