Home > CMS Tutorial > DEDECMS > body text

How to modify the 'current location' of DreamWeaver

藏色散人
Release: 2019-11-19 10:19:00
Original
2877 people have browsed it

How to modify the 'current location' of DreamWeaver

How to modify the "current location" of Dreamweaver?

How to modify the "current position" {dede:field.position} in DEDECMS

Modify the current position {dede:field.position} in dedecms , that is, as long as the home page > first-level column > second-level column.

Recommended learning: dedecms tutorial

Find include/typelink.class.php and find this function in this file

function GetPositionLink($islink=true)
Copy after login

dedecms is here Determine whether to read the link. If you change true to false, this function will not be executed:

function GetOneTypeLink($typeinfos) 
 { 
  $typepage = $this->GetOneTypeUrl($typeinfos); 
  $typelink = "<a href=&#39;".$typepage."&#39;>".$typeinfos[&#39;typename&#39;]."</a>"; 
  return $typelink; 
 }
Copy after login

What it returns is $typelink, and $typelink has a link. Change

$typelink = "<a href=&#39;".$typepage."&#39;>".$typeinfos[&#39;typename&#39;]."</a>";
Copy after login

Change it to

$typelink = "".$typeinfos[&#39;typename&#39;]."";
Copy after login

and the link will be removed, and you can write it in the format you want. very convenient.

In addition, many friends want to modify the ">" symbol in the homepage>First-level column>Second-level column, for example, do not want it, or replace it with ">>" or something like that , in fact, it is very simple. You can set it in the background. Enter the system---system basic parameters--core settings--interval symbols for column positions. You can enter the symbols you like, **#%@#¥ anything is fine.

The above is the detailed content of How to modify the 'current location' of DreamWeaver. 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!