I found this tip for adding the delete button for orders in prestashop. If you are looking for the delete button for deleting the test orders before going live in PrestaShop, follow the instructions below.
You probably found this blog post because you’re wondering the same thing I was this morning… the ability to delete an order is a very basic function and yet, I cannot find the delete button! Well, the delete button is is not a permission, but instead an option you must turn on by modifying the code. A lot of people that don’t speak PHP will not be happy. Anyway, the delete button will appear at the bottom of your order list by adding the following line of code in the construct of the AdminOrders class.
1. In the renamed admin directory of your store, go to tabs/AdminOrders.php.
2. Around line 28 below $this->colorOnBackground = true; , add $this->delete = true; so it looks like this –
class AdminOrders extends AdminTab
{
public function __construct()
{
$this->table = ‘order’;
$this->className = ‘Order’;
$this->view = ‘noActionColumn’;
$this->colorOnBackground = true;
$this->delete = true;
Minority Report showed ways in which adverts would interact with people. Now it is becoming a reality. A new start-up company is working on bringing this to shopping places near you.
For more information visit: http://www.immersivelabs.com/
An article on NPR about the Portal video game story.
Portgal became a video game sensation and now the new portal 2 hopes to grow on that success. The story stats with the game being created as a student project.
Listen to the story here:
http://www.npr.org/2011/04/19/135511250/portal-2-a-student-video-game-project-all-grown-up
How good is this
Here is a reality touchscreen that is 10 metres long! Take a look at the video below, it looks real good.
Behind the long screen are six cameras and 16 infrared lights. When you touch the screen, a small amount of infrared light is reflected back and the cameras sense the position and then translate that into coordinates on the surface. It is curved over 135 degrees, thereby creating an immersive environment.
http://www.crunchgear.com/2011/02/08/reality-touchscreen-is-10-meters-long-accepts-100-touch-inputs/
Jason Fried of 37 Signals talking about marketing by sharing.
Qualcomm has a competition using its SDK for augmented reality. With prizes on offer for the top AR apps.
AR apps allow a layer of information to be added on top of the real world when looked through a mobile phone for example. So maps and information points as well as games taking place in the real world are popular.
To learn more head over to the competition website.
This video is a great introduction to using social media to promote your blog.
After looking everywhere including jqueryetc for a way to do an image swap that fades, but using the background images, I figured out a rough way to do it.
This is not a fully tested and final way of doing background image fading sequence but thought I would put it out as a potential way to do it. Hopefully it helps somebody looking for it.
<!DOCTYPE html>
<html>
<head>
<style>
#test1, #test2, #test3 { height:200px; background-position:center; background-repeat:no-repeat;width:100%; position:absolute; }
#test1 {
background-image:url(‘img/img1.jpg’);
}
#test2 {
background-image:url(‘img/img2.jpg’);
display:none;
}
#test3 {
background-image:url(‘img/img3.jpg’);
display:none;
}
</style>
<script src=”http://code.jquery.com/jquery-latest.min.js”></script>
</head>
<body>
<script>
var $i = 1;
var auto_refresh = setInterval(
function ()
{
if($i==4) {
$(“#test3”).fadeOut(1000);
$(“#test2”).fadeOut(1000);
$i=1;
} else {
$(“#test”+$i).fadeIn(1000);
$i=$i+1;
}
}, 3000);
</script>
<div id=”test1″> </div>
<div id=”test2″> </div>
<div id=”test3″> </div>
</body>
</html>
The FWA website featured the new website for Doritos. Rather than just being an ordianry snack company Doritos are looking to position themselves as an entertainment brand. Check out the new website at:


