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.

Post reply

Can't comment until