
osCommerce
Would you like to improve your affiliate software even more? Check out the osCommerce integration for Post Affiliate Pro.
osCSS is an open-source e-commerce solution available for free. Integrate Post Affiliate Pro with osCSS by placing a sale tracking script on the confirmation page to retrieve OrderID and TotalSale values from the database.
An open source online shop e-commerce solution that is available for free under the GNU General Public License.
osCSS is the leading Open Source online shop e-commerce solution thatis available for free under the GNU General Public License. It featuresa rich set of out-of-the-box online shopping cart functionality thatallows store owners to setup, run, and maintain their online storeswith minimum effort and with no costs, license fees, or limitationsinvolved.
Integration of Post Affiliate Pro with osCSS is made by placing sale tracking script into the confirmation page of osCSS. To obtain the values of OrderID and TotalSale, snippet connects to osCSS database and retrieves the values from there.
Find and open file /includes/content/checkout_success.php.
Inside the file find this line:
<!-- extra divs to add extra pictures. -->
Insert the following code just above that line:
<?php
//--------------------------------------------------------------------------
// STAT - PAP Integration code
//--------------------------------------------------------------------------
// Get order id
$sql = "select orders_id from ".TABLE_ORDERS.
" where customers_id='".(int)$customer_id.
"' order by date_purchased desc limit 1";
$pap_orders_query = tep_db_query($sql);
$pap_orders = tep_db_fetch_array($pap_orders_query);
$pap_order_id = $pap_orders['orders_id'];
// Get total amount of order
$sql = "select value from ".TABLE_ORDERS_TOTAL.
" where orders_id='".(int)$pap_order_id.
"' and class='ot_subtotal'";
$pap_orders_total_query = tep_db_query($sql);
$pap_orders_total = tep_db_fetch_array($pap_orders_total_query);
$pap_total_value = $pap_orders_total['value'];
// Draw invisible image to register sale
if($pap_total_value != "" && $pap_order_id != "")
{
print '<script id="pap_x2s6df8d" src="https://URL_TO_PostAffiliatePro/scripts/trackjs.js" type="text/javascript"></script>'."
<script type=\"text/javascript\">
var sale = PostAffTracker.createSale();
sale.setTotalCost('$pap_total_value');
sale.setOrderID('$pap_order_id');
PostAffTracker.register();
</script>";
}
//--------------------------------------------------------------------------
// END - PAP Integration code
//--------------------------------------------------------------------------
?>
osCSS is an open-source e-commerce solution designed to enhance the osCommerce platform. Built on PHP and integrating technologies like CSS, jQuery, and Bootstrap, osCSS offers a versatile online shopping experience. It empowers online store owners to manage their shops efficiently, featuring functionalities such as a shopping cart and support for various payment and shipping options.
osCSS was developed as a CSS-based template system specifically for osCommerce. Its primary goal is to enhance design flexibility, allowing store owners to customize the appearance of their online shops without altering the core e-commerce functionalities. While detailed historical milestones of osCSS are scarce, its creation marked a significant step towards more adaptable and aesthetically pleasing online store designs within the osCommerce community.
osCSS is tailored for web developers and osCommerce store owners who aim to elevate their store’s design without delving into extensive coding. By utilizing osCSS, users can effortlessly customize their store’s aesthetics, improving the overall look and feel. This enhancement not only provides a better customer experience but also has the potential to increase sales by making the store more appealing to visitors.
Although detailed features of osCSS are not extensively documented, its core focus lies in CSS-driven customization and a structured approach to design. osCSS allows users to:
osCSS is an open-source tool, making it freely available for developers and store owners. This accessibility allows users to implement and modify the system without the constraints of licensing fees, providing an economical solution for enhancing online store designs.
Pros:
Cons:
If osCSS doesn’t fully meet your needs, consider these alternatives:
osCSS is an open-source e-commerce solution designed to enhance the osCommerce platform. It offers a CSS-based template system, allowing store owners to customize their online shop's design and layout without altering the core e-commerce functionalities.
Integration is achieved by placing a sale tracking script on the osCSS confirmation page. This script retrieves the OrderID and TotalSale values to accurately track affiliate sales.
osCSS provides design flexibility, responsive layouts, and non-intrusive customization for online stores. It allows store owners to enhance the look and feel of their shops while maintaining core e-commerce functionalities.
Yes, osCSS is open-source and available for free under the GNU General Public License. There are no licensing fees or restrictions for developers and store owners.
Yes, alternatives include Bootstrap for osCommerce, Template Monster, WordPress themes with WooCommerce, Shopify themes, Magento templates, and PrestaShop themes for enhanced e-commerce functionality and customization.
Lucia is a talented content editor who ensures the seamless publication of content across multiple platforms.
Discover how integrating osCSS with Post Affiliate Pro can streamline your affiliate tracking and boost your online store's performance.
Would you like to improve your affiliate software even more? Check out the osCommerce integration for Post Affiliate Pro.
Would you like to improve your affiliate software even more? Check out the Open Source Excellence Membership Control integration for Post Affiliate Pro.
Would you like to improve your affiliate software even more? Check out the Presta Shop integration for Post Affiliate Pro.