Originally Posted by Ryk
Ryk or anyone else,
Any chance anyone can post or email or PM the 1.2.x module (1.2.7 specifically) as we're not yet upgraded to 1.3.
Thanks,
Andrew
Originally Posted by Ryk
Ryk or anyone else,
Any chance anyone can post or email or PM the 1.2.x module (1.2.7 specifically) as we're not yet upgraded to 1.3.
Thanks,
Andrew
Here you go 2
Development Manager @ JSWeb Ltd - suppliers of Applepay/Googlepay for Zencart
20 years with Zencart !
I added in the 1.2.x version of cross sell.. but im havin problems with the table... can anyone help me out and posisbly point me in the right direction... with the following url
http://www.inkmypaper.com/cart/index...products_id=16
Everytime i add cross sell products... even if it's just one... it ends up widening the whoolllle table...
so i put fixed values for tpl_product_disply.php (370px).. and i put fixed values for xsell_products.php (370px) and it limited the table width.. which is nice.. but it's expanded everything else...
any ideas? this one is driving me NUTS
ok i realized what i was doing wrong. when i added in the php snippet as it said to do in the installation nstructions into the file tpl_product_display_info.php i added it in at the veerrry bottom of the code (like it said)... when i swithced over to design view in dreamweaver a few minutes ago ididn't see the snippet at all.. and realized BECAUSE i pasted it in at the very bottom of the file like it had asked me to do.. i pasted it OUTSIDE the table...so i switched to standard view.. added a row into the table... and pasted the php code in there and VOILA.. worked perfectly
note to everyone... no matter what installatino instructions say... make sure u follow normal design/coding logic
paste everything inside tables!
I installed cross sell and everything in the admin is working fine but when I go to my website it dosent show up. I followed the directions but I dont know what I am doing worng. Here is tpl_modules_xsell_products.php where I edit the product-info template file but is says (tpl_product_info_display.php) and I can not find that file.
Can someone please help me out.
<?php
/**
* Cross Sell products
*
* Derived from:
* Original Idea From Isaac Mualem im AT imwebdesigning DOT com <mailto:[email protected]>
* Portions Copyright (c) 2002 osCommerce
* Complete Recoding From Stephen Walker admin AT snjcomputers DOT com
* Released under the GNU General Public License
*
* Adapted to Zen Cart by Merlin - Spring 2005
* Reworked for Zen Cart v1.3.0 03-30-2006
*/
// calculate whether any cross-sell products are configured for the current product, and display if relevant
include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_XSELL_PRODUCTS));
if (zen_not_null($xsell_data)) {
$info_box_contents = array();
$list_box_contents = $xsell_data;
$title = '';
?>
<!-- bof: tpl_modules_xsell_products -->
<div class="centerBoxWrapper" id="crossSell">
<h2 class="centerBoxHeading"><?php echo TEXT_XSELL_PRODUCTS; ?></h2>
<?php
/**
* require the list_box_content template to display the cross-sell info. This info was prepared in modules/xsell_products.php
*/
require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php');
?>
</div>
<?php
require($template->get_template_dir('tpl_modules_xsell_products.php', DIR_WS_TEMPLATE, $current_page_base,'templates'). '/' . 'tpl_modules_xsell_products.php');
?>
<!-- eof: tpl_modules_xsell_products -->
<?php } ?>
im having the same problem as the above post... works in admin but not on the main site
anyone think they can fix this??
Hey guys,
This is the directory for the tpl_product_info_display.php
..\includes\templates\template_default\templates\tpl_product_info_display.php
Let me know if you need anymore help. I pretty much went through all the same problems everyone else seemed to have gone through on these forums with xsell and got through it and have it working perfectly right now. This is a really awesome app.
Kudos to the author.
I made a modification to cross-sell that allows you to list products with the same model # (rather than having to setup an entired table).. see above link for my post.Code:http://www.zen-cart.com/forum/showpost.php?p=209627&postcount=2
it is a very small change to the SQL Query...
maybe some moderator should merge that post here?
--
"Drunk on the Nectar of Life" - me
Cross-Sell (X-Sell) Admin will not load the next page of data when you select a page # or hit the >>. It reloads Page 1 only. We just installed cross_sell_v1.3.0 on Zen-Cart 1.3.0.
Any help is appreiated.
I have one request further - could it be possible to sort by the header you click on, namely ID#, Category, Alpha, etc. The d/b by ID# is pretty useless to me as I would never memorize product that way.Originally Posted by Vixay
Thanx!