January 20, 2012

Products not showing up in Magento

After about 3 hours of trying to get 74 products into Magento from a CSV, I had success!

But even after I cleared the cache, reindexed the tables, there were STILL no products showing up on the front page.  AND my client is going to be looking at this website tonight.  Anyways, here is the solution (last graphic)

 

Enter your email address to download magento_products_not_showing_up.pdf

The PDF is half a meg. Got to protect myself from the leechers.

Resources: www.topinternetguides

If you found any of this research valuable, feel free to buy me a coffee.


January 18, 2012

Accessing Resources from a child window

Moving a Resources node from the Main xaml page to a ChildWindow xaml page gave me an error:

The property ‘Resources’ does not exist on the type ‘ChildWindow’ in the XML namespace ‘clr-namespace:System.Windows.Controls; assembly=System.Windows.Controls’.

Fixed it by following the post on: http://forums.silverlight.net/t/131273.aspx/1

Changed the node from:

<UserControl.Resources />

to:

<controls:ChildWindow.Resources />

Thanks Wilfred Pinto!

November 29, 2011

How to hide the tax in the products’ prices in VirtueMart?

There are two steps which must be followed in order to show the products’ prices without the tax.

First, open the Joomla administrator area->Components->VirtueMart->Admin-> Configuration->Globaltab. Make sure that the Show “(including XX% tax)” when applicable? option is not checked.

Then navigate to the Joomla administrator area->Components->VirtueMart->Shopper-> List Shopper Groups. Click on the shopper group(s) which you are using and deselect Show Prices including tax? check box.

 


November 27, 2011

Calculate The Timespan Between 2 Dates: Countdown.js

Calculate The Timespan Between 2 Dates: Countdown.js

25 NOV

Countdown.js is a JavaScript library for calculating and displaying the timespan between two dates.

The library calculates the value continuously considering “the time goes on” and keeps generating an accurate output.

It can provide the timespan in many formats like milliseconds, seconds, minutes, hours, days, weeks and even millennias.

via Calculate The Timespan Between 2 Dates: Countdown.js.