Home > CMS Tutorial > DEDECMS > body text

How to update dedecms mobile version web page

Release: 2019-07-17 13:34:32
Original
5757 people have browsed it

How to update dedecms mobile version web page

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

How to update dedecms mobile version web page

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=&#39;更新主页HTML&#39; link=&#39;makehtml_homepage.php&#39; rank=&#39;sys_MakeHtml&#39; target=&#39;main&#39; />
<m:item name=&#39;更新手机主页HTML&#39; link=&#39;makehtml_homepage_m.php&#39; rank=&#39;sys_MakeHtml&#39; target=&#39;main&#39; />
<m:item name=&#39;更新栏目HTML&#39; link=&#39;makehtml_list.php&#39; rank=&#39;sys_MakeHtml&#39; target=&#39;main&#39; />
Copy after login

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

How to update dedecms mobile version web page

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">
Copy after login

Do not save the current options

<input name="saveset" type="radio" class="np" value="1" checked>
Copy after login

Save the current options

After modification:

<input name="saveset" type="radio" value="0" class="np" checked>
Copy after login

Do not save the current options

<input name="saveset" type="radio" class="np" value="1">
Copy after login

Save the current options

Just move the checked attribute to the top

4. Upload these three files to the corresponding directory, try it

How to update dedecms mobile version web page

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!