Is there any way to rearrange the field? Mine displays as follow:
Condition
ISBN
Publisher
Age Rating
Language
I would like to change it to:
Language
Format
ISBN-13
Publisher
Age Rating
Genres
Thanks...
Is there any way to rearrange the field? Mine displays as follow:
Condition
ISBN
Publisher
Age Rating
Language
I would like to change it to:
Language
Format
ISBN-13
Publisher
Age Rating
Genres
Thanks...
Hi folks
Nice to see you still turning the handles of the book gismo
In general book product is great within zencart, but if you add 'unknown' add-ons
the chances are you'd have to modify them, because book contains extra fields
in separate tables that are addtional to zencart's normal field setup.
anyway.. just to let you know i'm on a canal boat near devizes wiltshire uk,
sometime i will get back into a house, not sure where or when yet.
the links for the book demo's should be on my signature below here,
and the site to get the file zips from, is still
http://www.jphuk.co.uk/zc/
Hello there,
Could someone please help me how to get this to work with Zen Lightbox.
Thank you
I have gotten this module to work together with the Ceon URI although I did the installation more than a year ago and don't remember if there was anything special I needed to do to enable it.
The Ceon module is, however, rather straightforward and well documented, so if you follow the instructions it'll work. See the website below for the example:
www.edizioninautilus.it
Jeremy
I have a bookstore that currently using regular product-general. I am trying to get this mod working. I really need it to be able to list everything. But, also need it to match for other products I have that are not books.
I use the MSRP pricing with product-general. Does anyone have product-book working with MSRP??
Kim
Loaded this mod and get redirected to page not found when I try to add a new product. I ran debug file and this error message.
I only loaded the book main files. I have been using FCKEDITOR.HTML Code:securityToken|s:32:"42e4e32af6d8dbbc79288302ad6482ec";language|s:7:"english";languages_id|s:1:"1";languages_code|s:2:"en";selected_box|s:13:"configuration";html_editor_preference_status|s:9:"FCKEDITOR";admin_id|s:1:"1";messageToStack|s:0:"";categories_products_sort_order|s:1:"1";display_categories_dropdown|i:0;
How do I fix this? Thanks, Kim
BTW, I am also trying to get MSRP to work with it. I modified these files.
I took this on with my test store. I followed the readme file for MRSP and tried to apply to product-book files.
Made these changes to get MSRP to work with product - book.
Sql file:
Originally added with product - general. I did not make any changes or additions to sql.
ALTER TABLE products ADD `products_msrp` DECIMAL( 15, 4 ) NOT NULL AFTER `products_price` ;
1. admin/includes/lang/english/product_book. manually installed to end of file...
define('TEXT_PRODUCTS_MSRP', ' MSRP: ');
define('TEXT_PRODUCTS_OUR_PRICE', ' Our Price: ');
define('TEXT_PRODUCTS_SALE', ' Sale Price: ');
define('TEXT_PRODUCTS_SAVINGS', ' You Save: ');
define('TEXT_PRODUCTS_PRICE_MSRP', 'Products MSRP:');
2. admin/modules/update_product.php
This file does not have product_book one. Made changes to
admin/includes/modules/update_product.php
Added:
$tmp_value = zen_db_prepare_input($_POST['products_msrp']);
$products_msrp = (!zen_not_null($tmp_value) || $tmp_value=='' || $tmp_value == 0) ? 0 : $tmp_value;
$tmp_value = zen_db_prepare_input($_POST['products_price']);
$products_price = (!zen_not_null($tmp_value) || $tmp_value=='' || $tmp_value == 0) ? 0 : $tmp_value;
Added:
'products_msrp' => $products_msrp,
3. admin/modules/product/collect_info.php This file does not have product_book one. Changes made to
admin/includes/modules/product/collect_info.php
Added:
'products_msrp' => '',
and added:
p.products_image, p.products_price, p.products_msrp, p.products_virtual, p.products_weight,
Could not find...
<tr bgcolor="#ebebff">
<td class="main"><?php echo TEXT_PRODUCTS_PRICE_GROSS; ?></td>
<td class="main"><?php echo zen_draw_separator('pixel_trans.gif', '24', '15') . ' ' . zen_draw_input_field('products_price_gross', $pInfo->products_price, 'OnKeyUp="updateNet()"'); ?></td>
</tr>
Therefore...did NOT add
and add immediately above it:
<tr bgcolor="#ebebff">
<td class="main"><?php echo TEXT_PRODUCTS_PRICE_MSRP; ?></td>
<td class="main"><?php echo zen_draw_separator('pixel_trans.gif', '24', '15') . ' ' . zen_draw_input_field('products_msrp', $pInfo->products_msrp, ''); ?></td>
</tr>
4. includes/functions/functions_prices.php
Did not make any changes to file and did not see one for product_book
5. includes/languages/english/product_book.php
Added:
define('TEXT_PRODUCT_MSRP', 'Retail Price: ');
define('TEXT_PRODUCT_SAVE', 'You save: ');
define('TEXT_PRODUCT_OUR', 'Our Price: ');
6. includes/languages/english.php
No other files modified.
I can see MRSP when I choose product - book and can add price. But, price does not remain when I click on preview. And I do not see it on site.
I am no expert at this. Is there anyone that can give suggestions on how to get to work?
Bookmarks