Is it possible for a short url to add an item?

Jose

Would it be possible to have links to add items to carts. I've had gone to through the script to figure out how the top grid add items?

All I see is this: index.php/sales/add

how is the item being selected is addded?

Comments

1 comment

  • Comment author
    Chris Muench
    It makes a post request to sales/add. 

    here is minimal example
    <script>
    var ITEM_ID_TO_ADD = 1;
    $.post('<?php echo site_url("sales/add"); ?>', {
            item:ITEM_ID_TO_ADD+"|FORCE_ITEM_ID|"
        }
    </script>
    0

Please sign in to leave a comment.