-
Posts
533 -
Joined
-
Last visited
Everything posted by adrianmak
-
I'm learning pw from studying bundle pw's default profile. In the default profile, the top navigation menu will be generated by getting all children pages from the root. Problem arised. On most of websites, there are only four to five menu items. Let says, Home, Product, Support, About us, Contact With using the code in default profile, all children pages add from the root will be shown on the top navigation menu. Obviously, it is not I want to.
-
I'm going to build a course application form. The submitted form data will be saved as page. These are pesudo steps 1. create an application form template and add fields. Should the template associated with a template file ? since the data will be shown to the Internet visitors, just for back-end admin 2. create a new page /application-form-submission How to prevent others to know the url exist accidentally?
-
I'm sorry. I'm new on pw. how to use basic-form.php? I put basic-form.php under templates folder. In back-end, added a new page called contact page, then, how to select this php template over here ? In the page settings, I could not see the contact form template in the Template select list
-
what kind of validation the processInput method do?
-
the Form Template Processor module is developed for quit a long time. Does it work on pw 2.5 ?
-
I knew pw has commerical module to build any form. But my site just required a conatact form only, a module is overwhelmed for this simple and one-off purpose. How to build form in code ? Is there any form api similar as drupal ?
-
how to show these timing information ?
- 20 replies
-
- cache
- markup cache
-
(and 2 more)
Tagged with:
-
how to setup two seperate trees for two language as illustrated in post #1 ?
-
Could I use of mixture of multi-language field and language-alternative field ? I am thinking of in a suitation of multi-language images. Suppose, I have chart images in different languages. Up to the date, the image field is not a multi-language field, could I use language-alternative field for the image field, let say img (English as default), img_jpn (Japanese), img_kor (Korean) and leave body and title field to use multi-language textfield
-
What is the language switch implementation from Ryans? Could you show me the way?
-
how to setup a multi languages site from scratch ?
adrianmak replied to adrianmak's topic in Getting Started
thanks. These are good startup posts on setup a multi-language site -
thanks for showing this technique
-
what are the .inc file of widget type looks like ?
-
how to setup a newsletter system like used in this PW website?
-
I just tried 2.5.2 version of pw. it provided a multi language installation profile. I guess native multi language is supported starting from 2.5. What are steps to setup a multi language site from scratch?
-
https://processwire.com/docs/tutorials/how-to-structure-your-template-files/page4 I read from the documentation about delayed output. The example given in the doc. all pages are outputted to main.inc. On other words,all pages layout are fixed in main.inc. If I have a specific page which use different layout, how that page to use another page layout with delayed output strategy?
-
A client requested for rebuilt following website. http://www.eware.com.hk/web/ Existing website is built from custom made php cms. It is not developed from any of php based cms or framework. I'm thinking of using processwire to rebuilt the website. I have following questions How to built a menu with sub-menu where submenu is one of catagories. Such that adding new catagory will shown up on the menu automatically. For instance, the News and event menu of current website. the submenu are catagories.
-
i studied other theme created by others, beside the theme files sit under templates folder, there is another install folder and with a install.sql file what is this for and how to create this sql file ? are there theme developer create commerical themes ?
-
isn't the user login page and registration page are ordinary plain html instead of PW pages with assoicated template file (user login template file and registration template file ) ?
-
processwire out of the box, a user with only username, email address, password and roles. I'm going to create a user registration form, how to add more fields on the basic user object ? like gender, telephone, twitter account, and so on. Put it simple, could I extend processwire users with more fields ?
-
I search thru the forum regarding topics of built a membership system. I knew there are no out-of-box membership to plug into PW to make it happen. I have to using PW provided api to create all membership dirty work, front-end stuffs like registration, login,logout, user profile, create user content, non front-end stuffs like session handling, user rights My question is the landing page of these membership functions, registration, login/logout page, user profile page, create content page are to create each of function for a page (associated to a template/template file is necessary) ?
-
thanks all guys of yours for an explanation. While continue with the tutorial, The Name field is a system field which bound to any page and it reflect on an url path However it could only allowed for ASCII chars. It is not an issue for western. But for asia region, the title could be non-English chars. Then user will come across to think about of another English tex for the Name field. It could be inconvenience for those people. In drupal, path url allowed non-English string
-
I keep following the tutorial. In "Testing the layout with the Home page " I load the site with new modified home.php no body conten shown. I tried to comment the two include in home.php file. A blank page returned. PW could not just echo $page->body; to display body field content ? ps I'm using PW 2.4 ------------------------------------- SOLVED
-
That is, if I want to list all assoicated pages with each category, a template file for category is necessary.