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;
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.
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>
New ecommerce cake box website launched. My company has launched a new cake box ecommerce website that we designed and built. The ecommerce platform we chose for this web project was PrestaShop. This is the first time that we used this platform so it will be interesting to see how it goes.
PrestaShop is a modern opensource ecommerce platform that allows quite a few options that come built in.
View the site now.
Here is a Google video about html 5
The new possibilities that html 5 will bring could be a big change to the way that webpages are developed.
Here is a good resource site about it:
Also YouTube are now starting to use html5 video embeded videos.
This video has a look at the future of what magazines maybe like. It is a concept video of how they could work in the near future.
Just a quick update to post a video that was on techcrunch of the new iPad. People really go crazy over all things Apple, so it will be interesting to see if this changes the playing field for web developers. It king of looks like a giant iPhone I think, which is no bad thing.
Below is the video:
I have found a good program to test websites out in the problematic ie6, its called IE Tester.
The link is: http://www.my-debugbar.com/wiki/IETester/HomePag
Although I still think that ie developer tools should include testing in ie6 as well as 7 and 8
I found this tip about a tip to align the form text field and submit button it seems to work.
http://nclud.com/sketchbook/css-fix-for-graphical-input-submit-button-off-set/