Skip to main content

Posts

Showing posts from July 27, 2011

Google Plus Android APK

The official Google+ Android is only available in certain regions.  https://market.android.com/details?id=com.google.android.apps.plus&hl=en But, fear not, XDA member sacredsoul , has got his hand on the unofficial Google Plus APK for international Android users. I've tried it on my Galaxy S i9000, and it works perfectly fine. Get yours from XDA forum  http://forum.xda-developers.com/showthread.php?t=1148305

[Virtuemart] Customize Order List - adding extra column

In this post, I am going explain on how to add an extra column in Virtuemart Administrator Order List page. (Note that, in this example, I'm going to add a new address_1 column). Getting Started. In /administrator/components/com_virtuemart/html/order.order_list.php locate this section, around line 27. Then add " address_1 " into the line, as below. //$list .= "first_name, last_name FROM #__{vm}_orders, #__{vm}_order_user_info WHERE "; // This is the modified line. $list .= "first_name, last_name, address_1 FROM #__{vm}_orders, #__{vm}_order_user_info WHERE "; After that, locate this section, as usual and note that " Address_1 " is already the added column. $columns = Array( "#" => "width=\"20\"", "<input type=\"checkbox\" name=\"toggle\" value=\"\"  onclick=\"checkAll(".$checklimit.")\" />" => "width=\"20\...