Jump to content


Corporate Sponsors


Latest News: (loading..)

PiLLaO

Member Since 13 Jun 2007
Offline Last Active Yesterday, 16:26
-----

Posts I've Made

In Topic: Simple Checkout - for 2.3.1 (official support thread)

Yesterday, 16:30

@fulluvscents when you are in checkout.php you can modify products quantity or delete pushing the red cross. If you push the red cross the product is delete directly, but if you push this cross for error... the product is delete form cart. would be interesting to show a dialog to confirm you want to delete this product.

Regards!!

In Topic: Simple Checkout - for 2.3.1 (official support thread)

Yesterday, 08:53

Great addon!! :)

Delete button doesn't show confirm dialog, it would be a good idea to do this.


- would work in osc 2.2?

Regards!

In Topic: Instant Search (Google Style)

16 July 2011, 06:47

anybody, please?

In Topic: OSC to CSS v2

30 May 2011, 14:01

View Postnpn2531, on 29 November 2010, 17:29, said:

OSC 2 CSS is set up, centered, 960px wide. If your screen or browser is viewing more that 960px there will be white space. However, you could set the background to another color in the stylesheet.

example:
html{
background:#000000;
}
Using this, the color selected cover all parts of the page. how could fix this?

Thanks!!

In Topic: Automatically send data feed to Froogle

20 May 2011, 06:54

View Postyahalimu, on 14 May 2011, 21:31, said:

There IS a workaround, which I will share, but take no responsibility as its not fully error checked:

To give the manufacturer in the 'brand' category:

Find:
if(OPTIONS_ENABLED_BRAND == 1)
$output .= "\t" . (isset($row->brand) ? $row->brand : (strlen(OPTIONS_BRAND) ? OPTIONS_BRAND : "Not Supported"));

Replace with:

if(OPTIONS_ENABLED_BRAND == 1)
$output .= "\t" . (in_array($row->mfgName,explode(",",OPTIONS_MANUFACTURERS_NAME_IGNORE)) ? '' : $row->mfgName);

-----

I also edited googlefeeder.pgp to include UK VAT on the price feed, which you have to do according to Google guidelines unless you state no VAT on the landing page, again a simple edit. Just compare to older versions which supported non US VAT encoding.
Using this fix I must let manufacturer off, or use both with the same data?

Regards!!