Skip to content

Instantly share code, notes, and snippets.

@brandonsheppard
brandonsheppard / gist:8778130
Last active August 29, 2015 13:55
Show an advert on all categories
[%advert type:'text' category:'0' template:'footer'%][%/advert%]
@brandonsheppard
brandonsheppard / gist:8840144
Created February 6, 2014 08:14
Alkemi/Dynamic Re-marketing with B@se
<script type="text/javascript">
var google_tag_params = {
[%if [@sku@]%]
ecomm_prodid: '[@sku@]',
[%else%]
[%cart_items%][%PARAM header%]ecomm_prodid:[[%end PARAM%][%PARAM *body%]"[@SKU@]",[%end PARAM%][%PARAM *footer%]],[%end PARAM%][%end cart_items%]
[%/ if%]
ecomm_pagetype: '[@config:current_page_type@]',
[%if [@sku@]%]
ecomm_totalvalue: '[@store_price@]',
@brandonsheppard
brandonsheppard / gist:8910575
Created February 10, 2014 04:55
Link to a products brand or a specific category tree
[%CONTENT_PATH id:'[@inventory_id@]' type:'designer' limit:'1'%][%PARAM *body%]
<a href="[%url type:'cms'%][%PARAM id%][@content_id@][%END PARAM%][%/ url%]">[@content_name@]</a>
[%END PARAM%][%END CONTENT_PATH%]
@brandonsheppard
brandonsheppard / gist:9316605
Created March 3, 2014 00:54
Show the cart total using Neto B@SE
<div class="total-text">
Total:
<strong>
<span rel="a2c_sub_total" id="header-subtotal">
[%if [@product_total@]%]
$[%FORMAT type:'number' dp:'0'%][%CART id:'product_total'%][%END CART%][%END FORMAT%]
[%else%]
$[%FORMAT type:'number' dp:'0'%][%CART id:'product_total'%][%END CART%][%END FORMAT%].00
[%/ if%]
</span>
@brandonsheppard
brandonsheppard / gist:9316734
Last active August 29, 2015 13:56
Basic category menu in B@SE
[%categorymenu sortby:'sortorder,selected,name' show_empty:'1'%]
[%param header%]
<ul>
[%end param%]
[%param *level_1%]
<li>
<a href="[@url@]">[@name@]</a>
[%if [@next_level@]%]
<ul>[@next_level@]</ul>
[%end if%]
@brandonsheppard
brandonsheppard / gist:9460229
Created March 10, 2014 06:10
Open Graph Tags with Neto
<meta property="og:image" content="[%if [@config:current_page_type@] eq 'product'%][%asset_url type:'product' id:'[@SKU@]' thumb:'full'%][%end asset_url%][%ELSEIF [@config:current_page_type@] eq 'content'%][%ASSET_url type:'content' id:'[@content_id@]' default:'/assets/website_logo.png'%][%end ASSET_url%][%ELSE%]/assets/website_logo.png[%end if%]"/>
<meta property="og:title" content="[%url_info name:'page_title'%][%end url_info%]"/>
<meta property="og:site_name" content="[@config:website_name@] "/>
@brandonsheppard
brandonsheppard / gist:10081866
Created April 8, 2014 01:48
Responsive contact form in Neto
<form action="[%URL type:'page' id:'[@content_id@]'%][%END URL%]" method="post"><input name="inp-submit" type="hidden" value="y" />
<h3>Email Enquiry Form <small>Complete this form to email us your enquiry.</small></h3>
<div class="form-group"><label for="inp-first_name">First Name </label>
<p class="small text-danger"><label for="inp-first_name">Required</label></p>
<input class="form-control" id="inp-first_name" name="inp-first_name" required="" size="40" type="text" value="[%nohtml%][@inp-first_name@][%end nohtml%]" /></div>
<div class="form-group"><label>Surname</label> <input class="form-control" name="inp-last_name" size="40" type="text" value="[%nohtml%][@inp-last_name@][%end nohtml%]" /></div>
@brandonsheppard
brandonsheppard / gist:10706151
Created April 15, 2014 06:05
Show all tags available in B@SE
[%debug show_data:'1'/%]
@brandonsheppard
brandonsheppard / gist:10797534
Created April 16, 2014 01:56
Display current date in B@SE
Copyright &copy; [%format type:'date' format:'#Y'%]today[%/format%] [@config:company_name@]
@brandonsheppard
brandonsheppard / gist:6c7c3ca874a8f1c1481c
Created May 6, 2014 23:59
Add content_short_description2 to the scope of a category menu
[%categorymenu get_fields:'content_short_description2'%]...