The current position {de: field. position} in Dream Weaving DedeCMS is that as long as the home page>primary column>secondary column is linked by default, those that do not need links can be modified according to the following methods.
Find include/typelink. class. php, and find the function in this file
function GetPositionLink($islink=true)
Dedecms judges whether to read the link here. If true is changed to false, this function will not be executed:
function GetOneTypeLink($typeinfos)
{
$typepage = $this->GetOneTypeUrl($typeinfos);
$typelink = "<a href='".$ typepage. "'>".$ typeinfos['typename']. "</a>";
return $typelink;
}
He returns $typelink, which has a link
$typelink = "<a href='".$ typepage. "'>".$ typeinfos['typename']. "</a>";
Modify to
$typelink = "".$ typeinfos['typename']. "";
The link is removed and can be written in the format you want. Very convenient.
In addition, many friends want to modify the ">" symbol in the home page>primary column>secondary column. For example, do not use it, or change it to ">>" or something. In fact, it is very simple. You can set it in the background. You can enter your favorite symbol by entering the system ->basic system parameters ->core settings ->column location spacing symbol, * * #% @ # ¥ anything.
Statement: All articles on this site, unless otherwise specified or marked, are originally published on this site. No individual or organization is allowed to copy, embezzle, collect and publish the content of this website to any website, book and other media platforms without the consent of this website. If the content of this website infringes upon the legitimate rights and interests of the original author, please contact us for handling.