我想改变开放购物车主题的代码,但所有文件都是.twig所以当我在其中编写PHP代码时不起作用。直到我更改样式表文件。主题没有看到任何变化。
如何将.twig更改为php并使主题看到css文件中的更改?
这是header.twig
的一部分<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>{{ title }}</title>
<base href="{{ base }}" />
{% if description %}
<meta name="description" content="{{ description }}" />
{% endif %}
{% if keywords %}
<meta name="keywords" content="{{ keywords }}" />
{% endif %}
<script src="catalog/view/javascript/jquery/jquery-2.1.1.min.js" type="text/javascript"></script>
<link href="catalog/view/javascript/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen" />
<script src="catalog/view/javascript/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<link href="catalog/view/javascript/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link href="//fonts.googleapis.com/css?family=Open+Sans:400,400i,300,700" rel="stylesheet" type="text/css" />
我想将此代码添加到它但是当我把它放在header.twig中时它不起作用
<link rel="stylesheet" type="text/css" href="catalog/view/theme/default/stylesheet/style.css">
<?php if($direction=='rtl'){?>
<link rel="stylesheet" type="text/css" href="catalog/view/theme/default/stylesheet/rtl-style.css">
<?php }?>
答案 0 :(得分:0)
使用此扩展程序启用twig:https://www.opencart.com/index.php?route=marketplace/extension/info&extension_id=29835
答案 1 :(得分:0)
你真的不应该将PHP与TWIG混合使用。只需使用传递的变量。查看文档以获取更多信息: https://www.opencart.com/index.php?route=marketplace/extension/info&extension_id=29835