Questions tagged [custom-pages]

84 questions
10
votes
3 answers

How can I create a custom page with #react-admin without the menu sidebar like login page?

I am using react-admin previously admin-on-rest. I want to create a custom page that doesn't show the Menu sidebar, like Login page. I will use this page reset user's password. How can I do that?
thecassion
  • 467
  • 7
  • 18
4
votes
1 answer

Custom 404 page rails

I am beginner in ruby and cant find solution how to create custom 404-401 page in Rails 5. Any suggestion? I've created a controller "ErrorPages" with action "page_404". Help me please.
3
votes
1 answer

Controlling Custom Page To Show After Specific Tasks

After couple of hours googling and struggling, and got no where, I decide to ask for help here. What I am trying to accomplish, I am trying to get the IP from the user and use it as a command line parameter in my [Run] Section. So I have…
Kev84
  • 827
  • 1
  • 14
  • 26
3
votes
2 answers

htaccess 403 Forbidden error was encountered while trying to use an ErrorDocument

I want to have a custom 403 page in my project. So I added these codes in a .htaccess file: Order deny,allow Deny from all Allow from 192.168.1.0/24 ErrorDocument 403 /403.htm But when the project runs from an out of rang IP, and 403 error must…
Mohammad Saberi
  • 11,594
  • 23
  • 65
  • 123
2
votes
2 answers

Set custom pages instead of category/archive pages

I'm trying to set custom pages instead of the default category/archive pages of Wordpress. I've copied the following script into the theme function.php, I mention that the site uses The7 Theme. function loadPageFirst() { // get the actual…
2
votes
2 answers

Is there any possible way to call a external php page in wordpress inside another wordpress page

In my case I have created a page named test.php inside my theme folder. I have a specific html structure in test.php file. I don't include header and footer files here. I hard code them in this file because they are different.I validate user details…
Ramesh
  • 1,977
  • 1
  • 13
  • 34
2
votes
1 answer

nginx error pages not working in angular app using routes

I have an angular app that uses routes, where it has .otherwise(){} in routes.js file and now I need to make custom error pages using nginx, how to stop the .otherwise(){} and use the error pages defined on nginx default file, Anyone Please help I'm…
Avinash Dv
  • 89
  • 1
  • 1
  • 10
2
votes
2 answers

Custom Router Authentication Page

Is there a detailed tutorial on how to make a custom router authentication page for retail routers. I work in a small office and clients come and go and like to connect to our Wi-Fi with their laptops on a daily basis. Rather than giving them the…
2
votes
1 answer

How to create new page in Opencart

I am using Opencart Version 2.0.3.1. I have to create new page in Opencart. But I don't know how to start. So I followed the given link http://forum.opencart.com/viewtopic.php?t=6253 to create custom page. But I got the error Fatal error: Cannot…
Deepu Sasidharan
  • 4,763
  • 8
  • 32
  • 84
2
votes
2 answers

How to write Farsi in NSIS Custom Page?

I have create a custom page for my installer by NSIS. I have a label and a textbox in my .INI file. I also use the Unicode version of NSIS. How can i write a farsi sentence in the text of the label? It is my .INI file, but it does not show Farsi…
Mina
  • 1,928
  • 2
  • 19
  • 28
2
votes
1 answer

NSIS: Access values of combo box of custom page?

I have added custom page to NSIS installer using ini files, here is a code . . . ; Welcome page !insertmacro MUI_PAGE_WELCOME Page custom customPage "" ": custom page" . . . Function customPage GetTempFileName $R0 File /oname=$R0…
Xinus
  • 26,861
  • 26
  • 111
  • 160
2
votes
3 answers

specific contents should not load on page load

I have created a wp theme. here is one of its page http://www.durgeshsound.com/gallery/ When you click on any view album then it opens it corresponding pics of that album. Each album consists 10-12 pics and hence on whole page, around 80-90 images…
varsha
  • 1,598
  • 1
  • 14
  • 29
2
votes
0 answers

display form main page and action page in wordpress for plugin frontend side user

I have created one plugin which inserts vehicles to DB table,displays vehicles at admin side from that table.One page is for settings of that plugin.admin side of plugin is mostly complete.now i want to display a form for taxi booking.when user…
Avnee.Angel
  • 97
  • 1
  • 2
  • 15
2
votes
1 answer

In Django Mezzanine, how do can I enforce restrictions on which custom defined pages can be added in different places in the pages tree?

I'm using Django Mezzanine to create a site. I've added some custom content types that I'd like to be able to add using the Pages admin tree. Here's the gist of what I'm doing: class top_level_nav1(Page): #should only be a top level parent …
D_Naish
  • 513
  • 3
  • 20
2
votes
2 answers

How can I made a button that is only visible at a specific page? (Inno Setup)

I have made a button in the wizard pages. But I only want to show that button on this serial form page. Now, the button is showed at all wizard pages. How can I let it show only at the serial page? This is the code that i have used for the serial…
1
2 3 4 5 6