It’s mainly bug fix release. Update is STRONGLY recommended.
Changelog:
- Changed file name of includes/auto_loaders/config.utis.php.php to includes/auto_loaders/config.utis.php
- uti_install.sql missed some inserts
- Fix to: [DELETE FROM uti_attributes WHERE uti_row_id = ? AND name IN () ]
- UTI tables now use DB_PREFIX
You can download it from: Current version of UTI.
5 Comments for User Tracking Interface v1.1
David | March 9, 2010 at 21:51
David | April 7, 2010 at 21:02
Sorry about the long delay in response. Thanks for the code, however, when I put it in my includes/templates/YOUR_TEMPLATE/common/tpl_footer.php file – it breaks the page (the whole footer area gets cut off.
I did place tags around the code. Any suggestions. Thanks again.
David | May 17, 2010 at 20:19
As you asked for on the forum post, I left the code in my file, just commented it out.
Execute(”SELECT * FROM ” . TABLE_PRODUCTS . ” WHERE products_id = ‘” . (int)$rpid . “‘”);
$img = $img->fields['products_image'];
$content .= ‘‘ . zen_image(DIR_WS_IMAGES . $img, $rpid, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);
$content .= ” . zen_get_products_name($rpid) . ‘‘;
$content .= ” . $rpprice . ”;
$content .= ”};
}
echo $content;*/ ?>
David | May 17, 2010 at 20:22
I left the code in my tpl_footer, just commented it out. First post, some of the code got cut off.
/*$content = “”;
foreach ($recently_viewed_products as $rpid) {
$rpprice = zen_get_products_display_price($rpid);
$content .= ”;
$content .= zen_image(DIR_WS_IMAGES . zen_get_products_image($rpid), $rpid, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);
$img = $db->Execute(”SELECT * FROM ” . TABLE_PRODUCTS . ” WHERE products_id = ‘” . (int)$rpid . “‘”);
$img = $img->fields['products_image'];
$content .= ‘‘ . zen_image(DIR_WS_IMAGES . $img, $rpid, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);
$content .= ” . zen_get_products_name($rpid) . ‘‘;
$content .= ” . $rpprice . ”;
$content .= ”};
}
echo $content;*/
Leave a comment!
<< How to create custom impression detection function for Randomized Tests


Instead of displaying the contents of the cookie in sideboxes, how can you display it at the bottom of the page, right above the footer area?