Mobile version homepage update operation
You need to modify the template path, as shown in the figure. After modification, click to update the homepage HTML
In this way, great work has been done, and the mobile version of the homepage can be generated
If you think it is more troublesome to change it every time, there are two methods,
First, the method of modifying it yourself , it is simple and does not produce unnecessary things. Originally, Xiaojianjun wanted to make a small plug-in package. Hey, hey, I am a little lazy, so I might as well modify it.
Second, the plug-in package developed by the network master can generate static files for all mobile pages and is powerful.
Introduce the modification method:
1. Open / dede/inc/inc_menu.php
Find about 143 lines: insert the blue code below
<m:item name='更新主页HTML' link='makehtml_homepage.php' rank='sys_MakeHtml' target='main' /> <m:item name='更新手机主页HTML' link='makehtml_homepage_m.php' rank='sys_MakeHtml' target='main' /> <m:item name='更新栏目HTML' link='makehtml_list.php' rank='sys_MakeHtml' target='main' />
2. Find the /dede/ folder and find the makehtml_homepage.php file. Copy it and rename it: makehtml_homepage_m .php
Open the newly added file: makehtml_homepage_m.php Find line 77
3. Find the /dede/templets folder, find the makehtml_homepage.htm file and copy it Rename: makehtml_homepage_m.htm
Open the newly added file: makehtml_homepage_m.htm Find lines 36 and 48 and modify their value='' value, which is their path address
After modification:
#36 line is the mobile version homepage template path after modification
Line 48 is the location where the mobile version homepage is generated. After modification
Go to lines 69 and 71
Original
<input name="saveset" type="radio" value="0" class="np">
Do not save the current options
<input name="saveset" type="radio" class="np" value="1" checked>
Save the current options
After modification:
<input name="saveset" type="radio" value="0" class="np" checked>
Do not save the current options
<input name="saveset" type="radio" class="np" value="1">
Save the current options
Just move the checked attribute to the top
4. Upload these three files to the corresponding directory, try it
For more DedeCMS related technical articles, please visit the DedeCMS Tutorial column to learn!
The above is the detailed content of How to update dedecms mobile version web page. For more information, please follow other related articles on the PHP Chinese website!