Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/david-poindexter/HotcakesCartItemCount
This is a DNN theme / skin object for use with Hotcakes Commerce. It utilizes the Hotcakes Server-Side API to obtain the current customer's cart line item count and display it.
https://github.com/david-poindexter/HotcakesCartItemCount
Last synced: 3 months ago
JSON representation
This is a DNN theme / skin object for use with Hotcakes Commerce. It utilizes the Hotcakes Server-Side API to obtain the current customer's cart line item count and display it.
- Host: GitHub
- URL: https://github.com/david-poindexter/HotcakesCartItemCount
- Owner: david-poindexter
- License: other
- Created: 2015-08-29T16:40:07.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-15T21:50:18.000Z (about 9 years ago)
- Last Synced: 2024-05-19T00:38:36.465Z (6 months ago)
- Language: Visual Basic
- Homepage: http://nvisionative.github.io/HotcakesCartItemCount
- Size: 2.37 MB
- Stars: 4
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
- awesome-dnn - HotcakesCartItemCount - (by: @nvisionative) (Awesome DNN (DotNetNuke) [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) / Open Source Modules)
README
# Hotcakes Cart Item Count
This is a DNN theme / skin object for use with [Hotcakes Commerce](http://www.hotcakescommerce.com). It utilizes the Hotcakes **Server-Side API** to obtain the current customer's cart line item count and display it.## Project Dependicies
| DNN | Hotcakes Commerce |
|:-----------:|:-----------------:|
| `7.4.1.280` | `01.08.07` |## Usage
#### Styling
Styling can be added to **HotcakesCartItemCount.ascx** utilizing CssClass or inline styling.
#### MS Build Support
We have added support for MS Build to this project. When building the project in **Debug** mode, all appropriate files are automatically copied to a DNN instance setup at **/../../../Website**. When building the project in **Release** mode, the project automatically creates a Private Assembly package for installation via DNN's Host > Extensions. The package is located within the **~/Install/Modules** directory of the local development DNN instance. Should you want to just download the latest installation package, you can get it from the **Releases** page for this project.
#### Manual Installation
Only one folder needs to be manually created and two files copied over to the DNN instance file/folder structure.
##### Create folder
1. Within DNN instance, create a folder named **HotcakesCartItemCount** within **~/DesktopModules**.
##### Copy two files over
1. Copy **HotcakesCartItemCount.ascx** from this project to the new folder just created above within DNN.
2. Copy **HotcakesCartItemCount.dll** from this project (**/bin** folder) to **~/bin** within DNN.#### Registering within DNN theme/skin
+ Be sure to register the theme/skin object at the top of desired ASCX theme files:
```html
<%@ Register TagPrefix="hcc" TagName="CartItemCount" Src="~/DesktopModules/HotcakesCartItemCount/HotcakesCartItemCount.ascx" %>
```
+ Utilize the following code within the desired ASCX theme/skin files:
```html```