

Zima
Members-
Content count
38 -
Joined
-
Last visited
-
Days Won
1
Zima last won the day on June 15 2011
Zima had the most liked content!
Profile Information
-
Real Name
Zima
-
-
Jack, in the file googlefeeder.php, just making sure the space is fine in google product_category, and no underscore is needed if(OPTIONS_ENABLED_GOOGLE_PRODUCT_CATEGORY == 1) $output .= "\tgoogle product_category";
-
Zima started following Automatically send data feed to Froogle
-
-
Did you find a solution Steve? I am having the same issue with IE. Firefox and Chrome work fine.
-
Make sure that you enter the same group name here (index.php), also in admin when creating a slideshow. <?php if (DISPLAY_SLIDESHOW == 'True') { $slideshow_group = "a"; // replace the "a" with the group name of your choice require(DIR_WS_MODULES . 'slideshow.php'); } ?>
-
Credit Class/Gift Vouchers/Discount Coupons 5.10
Zima replied to Strider's topic in General Add-Ons Support
Found this fix and seems to work: // Start - CREDIT CLASS Gift Voucher Contribution // function javascript_validation() { function javascript_validation($coversAll) { //added the $coversAll to be able to pass whether or not the voucher will cover the whole //price or not. If it does, then let checkout proceed when just it is passed. $js = ''; if (is_array($this->modules)) { if ($coversAll) { $addThis='if (document.checkout_payment.cot_gv.checked) { payment_value='cot_gv'; } else '; } else { $addThis=''; } // End - CREDIT CLASS Gift Voucher Contribution REPLACE WITH THIS // Start - CREDIT CLASS Gift Voucher Contribution // function javascript_validation() { function javascript_validation($coversAll) { //added the $coversAll to be able to pass whether or not the voucher will cover the whole //price or not. If it does, then let checkout proceed when just it is passed. $js = ''; if (is_array($this->modules)) { if ($coversAll) { $addThis='if (document.checkout_payment.cot_gv.checked) { payment_value=\'cot_gv\'; } else '; } else { $addThis=''; } // End - CREDIT CLASS Gift Voucher Contribution -
I saw this posted earlier in the thread and it fixed the problem for me: In checkout.php, find: if (updateTotals == true){ onePage.updateOrderTotals(); } This is around line 453. Add right after: javascript:location.reload(true);
-
[CONTRIBUTION] Ultimate SEO URLs v2.1 - by Chemo
Zima replied to spidometrs's topic in General Add-Ons Support
I have category parent enabled and I want that feature. But not the manufacturer in the product url. How do you remove the manufacturer from the product url? ie. sony-sony-s450-self-powered-speaker-p-648.html It ends up duplicating the manufacturer name, if the product name has the manufacturer in it. This only happened after I upgraded to the latest version. Thanks! (hope it's not too much of an elementary question lol) -
Offical Google Checkout module for osCommerce Support Thread
Zima replied to Silverado05's topic in Other
Any suggestions for my issue Louis? -
Offical Google Checkout module for osCommerce Support Thread
Zima replied to Silverado05's topic in Other
I want to limit shipping to the continental US. Can anyone with coding knowledge guide me on where to put CONTINENTAL_48? From my reading it looks like it is supposed to be added in the code below from googleshipping.php. * GC tag: {@link [url="http://code.google.com/apis/checkout/developer/index.html#tag_us-country-area"]http://code.google.com/apis/checkout/devel...us-country-area[/url] <us-country-area>} * * @param string $country_area the area to allow, one of "CONTINENTAL", * "FULL_50_STATES" or "ALL" * */ function SetAllowedCountryArea($country_area) { switch ($country_area) { case "CONTINENTAL_48": case "FULL_50_STATES": case "ALL": $this->allowed_country_area = $country_area; $this->allowed_restrictions = true; break; default: $this->allowed_country_area = ""; break; -
Fatal Error "Cannot redeclare class googlecheckout....line 27"
Zima replied to pato56's topic in Other
Did anyone figure this out? -
Offical Google Checkout module for osCommerce Support Thread
Zima replied to Silverado05's topic in Other
Thanks for the fast response Walter, I will look into it! -
Offical Google Checkout module for osCommerce Support Thread
Zima replied to Silverado05's topic in Other
I tried to get this answer via a search but I cannot seem to find an answer. What is the latest stable version of google checkout for MS2? -
Thanks for the reply. I ended up upgrading my category meta tag contribution and now the manufacturer name shows up in the title.
-
Is there a contribution or code which will put the Manufacturer Name on the Title Meta Tag (not on the product_info page)? I already have SEO URLs and header tags installed. I want it when you do a query by manufacturer via the pull down etc. thank you :) Zima
-
[Contribution] Ultimate SEO URLs - by Chemo
Zima replied to Chemo's topic in General Add-Ons Support
I think Chemo posted this in a thread somewhere. Once I made the changes, the oscsid was gone. The only time I get the oscid is the first time I choose a selection in the manufacturers' drop down menu. After the first selection the ID is gone. In catalog/includes/configure.php: define('HTTP_COOKIE_DOMAIN', '.domain.com'); define('HTTPS_COOKIE_DOMAIN', '.domain.com'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); I have a SSL certificate so it may be different if you don't.. Hope this works! -
[Contribution] Ultimate SEO URLs - by Chemo
Zima replied to Chemo's topic in General Add-Ons Support
Susan, I also have the redirect add-on working. Works like a charm. I was just curious of there was an easy way to incorporate the .html urls instead (one less step). Also, looks like you have the osCsid at the end of yout html link. There is a way to remove that without having to force cookie use. It's a simple change in the configure.php file.