The "Customers who bought these items also purchased..." box that appears on the shopping cart page is misspelling the word "bought" (it spells "bougth"). Is there any way to fix that?
That worked perfectly. Thank you for the help!
I am having another problem, though. Now the upsell box that used to appear on the product display pages is gone. Also, on the checkout page, random products are displayed in the upsell box, none of which are linked to any of the products in the cart. Do you know what could be causing this?
Dear friends,
I have Ultimate Cross Sell installed.
And i also have tabbed_products installed.
But cross sell doesnt display in product-display-info
Do you know any solution how to display cross sell in tabs?
Thank you.
I found a BIG BUG in ultimate_cross_sells addons.....
In my product info display , when I click "Add to Cart" button, another product which is "up sell" product is added to the cart,.
the only thing I can do is to set "Upsell - Display Buy Now Button / More Info Link?" to false.
How can I fix it? Thanks !
I'm sure I would have found the problem. The PHP code must be below the tag "</form> ",
just like this
<!-- bof Ultimate Cross Sell Combo -->
<?php
require($template->get_template_dir('tpl_modules_ultimate_cross_sells.php', DIR_WS_TEMPLATE, $current_page_base,'templates'). '/' . 'tpl_modules_ultimate_cross_sells.php');
?>
<!-- bof Ultimate Cross Sell Combo -->
However , I move the code below the code "<!--eof free ship icon -->" , How can I fix it? Thanks a lot.
A link to the website would prove to be helpful in order to see the source code however, I will assume that the problem you are experiencing is due to inserting a form between another form in the html.
Let's take tpl_product_info_display.php for example. When you add an additional form above the code
found on lines 236 to 238, a conflict in the html is created since the two forms will utilize the same id.PHP Code:<!--bof Form close-->
</form>
<!--bof Form close-->
What I normally do when modifying the file tpl_product_info_display.php is move the following
found on lines 18 to 20 to immediately abovePHP Code:<!--bof Form start-->
<?php echo zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($_GET['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product', $request_type), 'post', 'enctype="multipart/form-data"') . "\n"; ?>
<!--eof Form start-->
found on line 88 and also move the codePHP Code:<!--bof Add to Cart Box -->
immediately belowPHP Code:<!--bof Form close-->
</form>
<!--bof Form close-->
found on line 155.PHP Code:<!--eof Quantity Discounts table -->
In this manner, any cross sell form within your html will have its unique id as well as the Add to Cart form for the main product.
Hi
Great mod, thanks.
I have loaded and tested by manually creating some linked products. And then changed my settings to get the display just as I want. really great.
I am not a programmer, and I am sure if I was this would be a really stupid question, - is there any way to load all teh linked files using Easy Populate ?
I have looked at the database tables and the links are stored using the zen-cart generated product ids and not my item numbers.
I think I have enough excel skills to create the EP file but I am not sure about which fields
Any ideas ?
Thanks
Sarah
www.shopforcostumes.co.uk
I could not honestly say how to upload using easy populate. You could try downloading it from your SQL. I don't work much with SQL so before you attempt anything **BACKUP YOUR DATABASE**
- Go to www.example.com/phpmyadmin/
- Click on the Databases Tab
- Select your database
- Click on the Export Tab
- Click on the Unselect All link
- Hold CTRL and select ultimate_cross_sell_1, ultimate_cross_sell_2 and ultimate_cross_sell_3
- Choose the format you need. SQL should be the default but there are excel and csv format sice you are more familiar with those
- Under Structure, Make sure "Add DROP TABLE / VIEW / PROCEDURE / FUNCTION / EVENT" and "Add CREATE PROCEDURE / FUNCTION / EVENT" are selected (See attached image below)
- Choose Save as file
- Click Go
- Go to Tools > Install SQL Patches and Run that sql file
Basically you will get the code shown below. You could just make the necessary changes to the first, second and third numbers and the actual table you will be using. i.e. 1 = Cross Sell, 2 = Up Sell, 3 = Related Products.
Whatever you do. **BACKUP YOUR DATABASE** before doing anything.
Hope this helps. Good Luck!Code:DROP TABLE IF EXISTS ultimate_cross_sell_1; CREATE TABLE IF NOT EXISTS ultimate_cross_sell_1 ( ID int(10) NOT NULL AUTO_INCREMENT, products_id int(10) unsigned NOT NULL DEFAULT '1', cross_sell_id int(10) unsigned NOT NULL DEFAULT '1', sort_order int(10) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (ID), KEY idx_products_id_cross_sell (products_id) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; INSERT INTO ultimate_cross_sell_1 (ID, products_id, cross_sell_id, sort_order) VALUES (1, 12, 13, 1), (2, 13, 12, 1), (3, 12, 16, 1), (4, 16, 12, 1), (5, 16, 14, 1), (6, 26, 17, 1), (7, 27, 9, 1), (8, 30, 6, 1), (9, 33, 20, 1);