Dealcollector un sito per tutte le offerte di Groupon, Groupalia e molti altri
Come molti avete forse sentito parlare del boom dei cosidetti coupon? Il grande successo di questo tipo di offerte è stato possibile con la generalizzazione dei meccanismi di gruppi d’acquisto colletivo. Con questi meccanismi puoi ottenere dei discount fino a 70% ! Se il sito americano Groupon è il più famoso, non è l’unico ed esista una proliferazione di servizi simili.
Ma come scegliere quando l’offerta è cosi vasta? Il sito Dealcollector ragruppa tutte le offerte disponibili da Groupon, Groupalia e tanti altri. Dopo un successo in Germania e Spagna Dealcollector arriva in Italia. Infatti Dealcollector è il più grande aggregatore dei deal europei! Puoi sia trovare deal nazionali come viaggi sia dei deal locali in ben più di 70 città italiane. Il sito propone deal in vari settori come i ristoranti, i musei, gli hotel o la bellezza e il wellness.
In un solo click Dealcollector ti permette di scoprire in un’unica pagina tutte le offerte pubblicate ogni giorno su tutti portali italiani. Per restare aggiornato su tutti deals puoi collegarti attraverso twitter, il facebook account o anche la newsletter, una sola per ragruppare tutte le offerte della propria città.
In modo da avere tutte le offerte a portata di mano anche quando non sei di fronte allo schermo, Dealcollector propone anche un iPhone App e tra poco anche su Android. Cosi non mancherai mai più un’offerta quando sei in città o in viaggio, in Italia & in Europa.
Per ogni fornitore di deals esiste una sezione commenti da dove è possibile condividere le propri esperienze con chi ha già approfitato delle offerte pubblicate.
Per tutti gli amatori dello shopping online, Dealcollector è un sito da provare!
Get correct Magento multi level categories page title and canonical url
Hello, I noticed there was a problem with the page titles and canonical urls for multi-level categories pages, for example if I have a category like this: ebook/fiction/general Magento 1.5.1.0 puts a wrong canonical url like this: http://example.com/ebook while it should be: http://example.com/ebook/fiction/general So we need a patch to fix this behavior and I will [...]
Il caricabatterie universale PowerBrick di Feligan
Oggi recensisco questo magnifico prodotto della società Feligan (azienda di Reggio Emilia), il Powerbrick è il caricabatterie che vi lascerà a bocca aperta grazie alla sua flessibilità è in grado infatti di caricare tutti i device che avete con un unico apparecchio, discreto e molto funzionale. Ma andiamo al dettaglio, Powerbrick è una scatoletta dalle [...]
Magento and Uservoice Single Sign-On Autenthication (Free extension)
Hello, I just wrote a small Magento extension to allow you the single sign-on between you Magento ecommerce site and your Uservoice support site. Based upon the original Uservoice documentation, you can install it (just copy the files into your Magento folder), you will find a new configuration settings under the left sidebar “USERVOICE SINGLE [...]
Chrome and Android – A Potent Combination
If you’re a Google user when it comes to email, browsing the web, or using your phone, you’ll know that if there’s one thing the search-engine giant is good at, it’s integrating one Google idea into another seamlessly. Chrome and Android and two great examples, and there are a fair few examples of why you’ll [...]
Magento problem with Paypal Express and new customer registration [Solved]
You know there is this problem with Magento 1.4.* and 1.5.*, if you are using Paypal Express as payment method and your customer is a new one, when she/he complete the order this is without account association (Customer Group 0 USER NOT LOGGED IN) and the new customer is not created. To solve this problem [...]
AWS EC2 Manage Snapshot Backup with PHP SDK
This is a simple script based upon AWS SDK PHP to manage volume’s snapshots. It simply create one snapshot per volume (once you run it) and delete snapshot older then 1 month. Please provide your personal information by copying config-sample.inc.php into config.inc.php. Run the script backup-snapshots.php with your CRON. For example: # Auto AWS Snapshots [...]
Magento add Bestseller products by date range
Here is how to get a collection of products best sold in a given date range (could be daily, monthly, weekly, etc…) <ul> <?php $from = date("Y-m-d H:i:s", (time()-2592000)); $to = date("Y-m-d H:i:s", time()); $_productCollection = Mage::getResourceModel('reports/product_collection') ->addAttributeToSelect('*') ->addOrderedQty($from, $to, true) ->addAttributeToFilter('status', 1) ->setOrder('ordered_qty', 'desc') ->getSelect()->limit(10)->query(); foreach ( $_productCollection as $prod ) : $_product = [...]
Magento adding you own custom RSS Feeds
You know you will need, before or after, to add your own custom RSS feeds to your Magento. For example, I needed to create some custom RSS Feeds to list bestseller products by date (bestseller weekly, monthly, etc…) How to do it? It’s quite complex but not so much if you follow this mini tutorial: [...]
Magento adding downloadable product to cart by coding php
Probably you know it’s possible to add a product to the cart via querystring, but may be you prefer code a new module for your needs using Magento objects and methods. So adding a simple product is easy: … $cart = Mage::getSingleton('checkout/cart'); // start adding the product try { $cart->addProduct($product, array('qty' => 1)); // save [...]

