当我在我的magento产品中添加自定义选项时,我使用magento 1.7.02我的主题由于某种原因被破坏,我尝试在view.phtml(模板/目录/产品)中更改某些内容但没有成功... < / p>
我不知道我可以在哪里修改,我尝试从自定义选项更改位置,但没有任何效果 请问一些想法?
*the code in view.phtml
<!-- AddThis Button END -->
</div>
</div>
<div class="clearer"></div>
</form>
答案 0 :(得分:0)
我可以看到两个标签Product Description
和Product tags
正好显示的解决方案
打开http://www.boutiquekawaii.com/corsets/corset-test.html
通过右键单击进行检查,然后选择Inspect
现在在“元素”标签中搜索此类product-shop span8
你会找到像这样的div
<div class="product-shop span8">
....
<div class="clearer"></div> <!-- you need to move this -->
</div>
并且在那个div中有一个像<div class="clearer"></div>
这样的div,它不应该存在。该div应该在
<div class="product-shop span8">
....
</div>
<div class="clearer"></div> <!-- and place it here before </form> tag -->
</form>
这样打开该文件template/catalog/product/view.phtml
找{4},然后像我说的那样改变它。