我想在magento网站上写一个自定义查询.
我在magento根文件夹中创建了一个文件test.php并编写了一个自定义查询
<?php
$read= Mage::getSingleton('core/resource')->getConnection('core_read');
$value=$read->query("Select * from catalog_product_flat_1");
$row = $value->fetch();
echo "<pre>";print_r($row);echo "</pre>";
?>
Run Code Online (Sandbox Code Playgroud)
但它没有给我任何结果.请指导我.
我想在我的magento网站上整合facebook登录.有人会给我步骤吗?
谢谢
我在magento创建了一家商店.我想在产品描述页面增加追加销售产品的数量.目前,点击下一个链接后,它会显示前面的4个产品和其他产品.我想把它改成5.
我创建了2个菜单:
我如何实现以下2项任务: -
这个问题是我想将文章与具有相同网址的菜单项链接,并且它不允许我这样做.这是错误的: -
"Save failed with the following error: Another menu item with the same parent has this alias"
Run Code Online (Sandbox Code Playgroud) 我想在我的网站中的结帐流程的国家/地区下拉列表中仅过滤一个国家/地区.我怎样才能做到这一点.
任何人都可以建议吗?
谢谢.