ZenCart在首頁直接新增購買按鈕

2021-05-22 17:15:15 字數 2001 閱讀 5325

如何直接在首頁的最新商品上面加上直接"購買"按鈕?

要新增"購買"按鈕,可以參考

/includes/templates/template_default/templates l_product_info_display.php

這個檔案中購買按鈕的**。

需要修改的**在:

/includes/modules/new_products.php

商 店首頁上顯示的商品的內容都在變數$list_box_contents中,加上需要的內容就可以了。

$list_box_contents[$row][$col] = array('align' => 'center',

'params' => 'class="smalltext" width="' . $col_width . '%" valign="top"',

'text' => 'fields['products_id']), 'products_id=' . $new_products->fields['products_id']) . '">' . zen_image(dir_ws_images . $new_products->fields['products_image'], $new_products->fields['products_name'], image_product_new_width, image_product_new_height) . '

fields['products_id']), 'products_id=' . $new_products->fields['products_id']) . '">' . $new_products->fields['products_name'] . '

' . $products_price); 

改為:

if ($products_qty_box_status == '0' or $products_quantity_order_max== '1') else ;

$list_box_contents[$row][$col] = array('align' => 'center',

'params' => 'class="smalltext" style="width:' 

. $col_width . '%;float:left" valign="top"',

'text' => 'fields['products_id']), 'products_id=' . $new_products->fields['products_id']) . '">' . zen_image(dir_ws_images . $new_products->fields['products_image'], $new_products->fields['products_name'], image_product_new_width, image_product_new_height) . '

style: fields['products_id']), 'products_id=' . $new_products->fields['products_id']) . '">' . $new_products->fields['products_name'] . '

our price: ' . $products_price 

. '' . zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($new_products->fields['products_id']), zen_get_all_get_params(array('action')). 'action=add_product'), 'post', 'enctype="multipart/form-data"') . zen_get_buy_now_button($new_products->fields['products_id'], $the_button) . 'fields['products_id']), 'products_id=' . $new_products->fields['products_id']) . '">more

');

改變zencart 首頁隨機顯示產品

zen cart新進商品的隨機排序修改方法第一步 首先,新進商品可以自己定義時間段 商店設定 最大值 新進商品的定義 zen cart新進商品的隨機排序修改方法第二步 修改首頁上新進商品 includes modules new products.php 在 new products query裡增...

Zencart首頁分類顯示二級目錄方法

2.開啟檔案 includes classes category tree.php 分類目錄類裡面 1 查詢 把 if zen not null cpath 改為 if zen not null cpath or 1 2 在一下兩行 之間插入新 原 reset cpath array while l...

Magento在首頁自定製Block的方法

magento中想在首頁顯示一些自定製的block有很多中方法,之一是 然後我們新建 catalog product cmslist.phtml檔案並在這裡實現相關的 有時候我們不一定需要新的type 對應block目錄下的block類,直接在phtml頁面中完成這個簡單的功能 這樣就可以在首頁的m...