我正在drupal 8中创建临时主题。现在出现问题我想在页脚右上角显示contact us
块显示首页。我曾使用过联系表单模块,但它打开了新页面。我也使用了Contact块,但结果是我关心的是如何做到这一点?
如果有人知道,告诉我我对drupal感谢没有更多的了解。
答案 0 :(得分:0)
您可以使用: -
foreach (TableRow tr in allVisibleRows)
{
foreach (SPListItem item in myTableCol)
{
destination = item["Route"].ToString();
dateGo = item["DepartureDate"].ToString();
dateEnd = item["ReturnDate"].ToString();
kmInCity = item["TraveledInCity"].ToString();
kmOutCity = item["TraveledOutCity"].ToString();
((TextBox)tr.Cells[1].Controls[0]).Text = destination;
((DateTimeControl)tr.Cells[2].Controls[0]).SelectedDate = DateTime.Parse(dateGo);
((DateTimeControl)tr.Cells[3].Controls[0]).SelectedDate = DateTime.Parse(dateEnd);
((TextBox)tr.Cells[4].Controls[0]).Text = kmInCity;
((TextBox)tr.Cells[5].Controls[0]).Text = kmOutCity;
}
}
答案 1 :(得分:0)
您可以定义表单的路径 admin / content / webform 。 然后在站点信息 admin / config / system / site-information 中定义主页。
答案 2 :(得分:0)
更简单,联系块+ twig tweak模块,获取frontpage节点主题消息,在我的情况下节点2, - > node - 2 - full.html.twig和主题吧。 content.field_my_field用于字段和 drupal_block('mymachinenamebock') - > drupal_block('contactblock')得到了twig tweaks模块
答案 3 :(得分:0)
您可以通过修改主题的your_theme_name.theme文件将联系表单包含到页脚区域。