Hi, I have a problem. I have just installed xml generator and I want it to generate seo urls of my products for yahoo and others. I found code:
PHP Code:
function zen_seo_href_link($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true, $static = false, $use_dir_ws_catalog = true) {
if (defined('SEO_ENABLED') && SEO_ENABLED == 'true') {
if (!isset($GLOBALS['seo_urls']) && !is_object($GLOBALS['seo_urls'])) {
include_once('../' . DIR_WS_CLASSES . 'seo.url.php');
$GLOBALS['seo_urls'] = &new SEO_URL($_SESSION['languages_id']);
}
return $GLOBALS['seo_urls']->href_link($page, $parameters, $connection, $add_session_id, $static, $use_dir_ws_catalog);
} else {
return zen_href_link($page, $parameters, $connection, $add_session_id);
}
}
which works with ultimate seo url but doesn't work with this mode. Can somebody somebody solve the problem for me? THX