J2T Points & Rewards v1.5.12 VA

The new version of J2T Points & Rewards is available, but this new version is not just a number! ;) More »

J2T Ajax cart v.0.7.0 is out!

We are proud to annonce that J2T Ajax cart v.0.7.0 is available! In this new version, you will be able to choose which products have to be shown as associated products in More »

New incentive module is coming soon!

J2T is working on a new module and you might like the way it works! The module is going to be really flexible, and will allow you to do accurate customer sibling, More »

J2T Points & Rewards Extension v1.2.0 is out!

J2T Points & Rewards Extension v1.2.0 is out! With this version comes great new features! More »

J2T MassConf Module is out!

This module is quite interesting when you have a store full of configurable products! More »

J2T Points & Rewards v1.5.12 VA

J2T Points & Rewards v1.5.12 VA is available!!!

This is not only a new version! We modified the module in order to optimize the module!

Many improvements have been done in the past regarding points calculation with introduction of turbo mode. With this version, the module is using a new way to process point usage and with this version, you will have a lot less conflict problems with other module that would modify cart behaviours!

Don’t hesitate to check the module specificities on http://www.j2t-design.net/index.php/j2t-points-rewards.html

J2T Ajax cart v.0.7.0 is out!

We are proud to annonce that J2T Ajax cart v.0.7.0 is available!

In this new version, you will be able to choose which products have to be shown as associated products in the ajax box:

  • up-sells products
  • cross-sells products
  • related products

You may also like the new squared theme available

Possible issues when installing J2t Reward Points

When installing Reward points loyalty system extension, sometimes you can face some issues. The main issue that you can have are:

  1. user account redirection from secure to non secure url (from 1.4.2, you are not having this issue anymore)
  2. problem when creating table, when installing the module
  3. conflict with other modules (not likely)

All these problems can be solved quite easily. Here are how to fix those issues:

  1. to fix secure url redirection in user account, please add in app/code/community/Rewardpoints/etc/config.xml (between frontend tags), the following entry: <secure_url><rewardpoints_index>rewardpoints/index</rewardpoints_index></secure_url>
  2. if you have problem to create tables of the modules, you need to make sure that your mysql user has permission to access COLUMS mysql tables. If you have sql issues, please contact us and we will provide full direction to you
  3. conlicts could arise if you are using other modules dealing with coupon codes and promotion system. Those issues can be fixed quite easily, but you need to be able to find the classes that are overloaded in both modules,  deactivate the overload process from the other module and extands Rewardpoints concerned class to the other module class. Fortunately, you don’t usually have this issue, but if it’s the case, please note that you can request help from us by taking the technical support option. This will allow our team to check the module against your server and we will provide to you a customized version that you will simply need to upload to your server.

We hope that this will help you all!

New incentive module is coming soon!

J2T is working on a new module and you might like the way it works!

The module is going to be really flexible, and will allow you to do accurate customer sibling, allowing you to sell more products!

Keep tuned!

J2T Points & Rewards Extension v1.2.0 is out!

J2T Points & Rewards Extension v1.2.0 is out!

With this version comes great new features!
The work we’ve done on v1.2.0 are :

  • select validity status field in admin
  • select valid statuses in admin
  • activate points X days after a purchase has been made
  • points on review rewritten
  • decide to apply points either on ex. tax or not)

J2T MassConf Module is out!

This module is quite interesting when you have a store full of configurable products!

You will be able to add multiple products to your shopping cart during once and don’t need to add them one by

New J2T Points & Reward is out!

The new version of J2T Points & Reward is out.

The new features are:

  • New slider on shopping cart page
  • Currency rate can be use while calculating points & discounts
  • Promotion description added when used with credit points (in shopping cart).
  • Major update! With this version you can import/export points. More importantly, you can decide to include shipping fees to reward point discounts! You can decide to include or not tax amount as well.

Visit the module page here

* 1.0.1: New feature – added slider on shopping cart page* 1.0.0: New feature – Currency rate can be use while calculating points & discounts* 0.9.3: New feature – Promotion description added while when used with credit points (in shopping cart).* 0.9.2: Fixing bug related to points calculation when referring a friend.* 0.9.1: Minor bug fix in magento 1.3.x point listing in admin* 0.9.0: Major update! With this version you can import/export points & more importantly, you can decide to include shipping fare to reward point discounts! You can decide to include or not tax amount as well.

Load product by SKU

To load a product by SKU, you have two options:

  1. load by attribute
  2. get the product id and load the product according to its id

1st method: load by attribute

$product = Mage::getModel(‘catalog/product’)->loadByAttribute(‘sku’,'PRODUCT_SKU’);

2nd method: get product id and load by product id

$product = Mage::getModel(‘catalog/product’);
$productId = $product->getIdBySku(‘PRODUCT_SKU’);
if ($productId) {
$product->load($productId);
}

$product = Mage::getModel(‘catalog/product’);
$productId = $product->getIdBySku(‘PRODUCT_SKU’);if ($productId) {    $product->load($productId);}

J2T Points & Rewards Extension

Add an advanced feature to your magento installation. J2T Points & Rewards module allow your customer to collect points on their order and use them as discount while ordering.

You can use refer-a-friend feature of this module to increase your site traffic!

For more details, click here.

How to use Mage::getBaseUrl

You always wanted to know how to access to your current magento URL.

Here are some example of  Mage:getBaseUrl use:

<?php
Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN);
Mage::getBaseUrl('skin');
//returned value: http://www.mymagento.com/skin/

Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);
Mage::getBaseUrl('media');
//returned value: http://www.mymagento.com/media/

Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS);
Mage::getBaseUrl('js');
//returned value: http://www.mymagento.com/js/

Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);
Mage::getBaseUrl('web');
//returned value: http://www.mymagento.com/
?>

You can use a second parameter (true or false) to specify if you want a secure url or not.