當你評論,你不必搜索模塊在Dreamweaver或PHP MyAdmin,您將需要管理員權限like ...或者你將不得不在index.php
搜索,因爲我跟你說,我也只是打開該網站,似乎你是免費下載高級模板,所以他們添加反向鏈接,這是很難找出沒有源代碼...所以這就是我可以幫助...讀取前進..
它可能是一個模塊,或者您的index.php
頁面中的文本必須是文字字符串,如果它是一個模塊比禁用它,否則,轉到下面的路徑...
root/templates/system/index.php
在上面的文件,文本必須是在某處的底部,所以只是將其刪除
如果你不能夠做到這一點,比便宜的解決方案使用CSS是display: none;
,從而爲您的a
標籤是毗鄰div
具有id
footerwrap
所以你可以使用
#footerwrap + a[href="http://okjoomla.com"] {
display: none;
}
OR
a[href="http://okjoomla.com"] {
display: none; /* This will remove all the anchor having that link */
}
或者你也可以使用jQuery從DOM中刪除它完全
$('#footerwrap + a').remove();
Demo
或者更具體,獨立的#footerwrap
$('a[href="http://okjoomla.com"]').remove();
/* This will remove all the anchor having that link so if you are
sure that it will be always adjacent than use #footerwrap + as well */
Demo
添加CSS標籤爲你評論說,你是開放的CSS解決方案,以及... –