2017-02-23 36 views
0

drupal7如何在帖子詳細信息頁面上添加與字段項目相同的鏈接?drupal7如何在帖子詳細信息頁面上添加與字段項目相同的鏈接?

example image

我想加入到 「發佈者」 字段中的鏈接。

例如:

Posted By 
Jack 

Posted By 
<a href="google.com" />Jack</a> 

重要的是 所有帖子應該是相同的鏈接(google.com)

這就是爲什麼我不能使用鏈接場。 有什麼想法?

+0

我解決了這個問題。 將/drupal/modules/field/theme/field.tpl.php文件複製到 /drupal/sites/all/themes/mytheme/templates/field/folder。 和變更文件名以「場 - 場提交 - 通過 - 內容type.tpl.php」 和編輯源代碼 '' 和它的作品!!!! 此網址非常有幫助。 [鏈接](https://3cwebservices.com/drupal/how-override-field-templates-drupal-7) –

回答

0

您可以覆蓋的輸出「發佈」字段中。 在覆蓋輸出中,我們可以添加包裹在href鏈接中的令牌。

<a href="google.com">[token here]</a> 
+0

謝謝你的回覆! 但是,我不明白。這不是一個觀看頁面(或塊)。 它是後期詳細信息頁面。 我可以只看到一個視野嗎?內容詳細信息頁面? –

0

你改寫特定內容類型的Posted by場。

可能覆蓋模板是:

field.tpl.php 
field--field-type.tpl.php 
field--field-name.tpl.php 
field--content-type.tpl.php 
field--field-name--content-type.tpl.php 

例子: - field--field_posted_by‎--page.tpl.php 然後寫這樣的代碼在你的模板文件中創建鏈接。

<?php 

if($element['#view_mode'] == "full"){ 
    print l(render($items),'https://www.google.com'); 
} 
?> 

我認爲這可能對您有用。

感謝,

相關問題