This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Corner News Ribbon | |
*/ | |
.wrapper { | |
margin: 50px auto; | |
width: 280px; | |
height: 370px; | |
background: white; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#header { | |
display: none !important; | |
visibility: collapse !important; | |
overflow: hidden !important; | |
position: relative !important; | |
height: 0px !important; | |
} | |
.wufoo { | |
padding-bottom: 0px !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
margin:0px 0px 0px 0px; | |
padding:0; | |
background: #FFFFFF; | |
} | |
#a4page { | |
overflow: hidden; | |
background:#ffffff; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* SilverStripe Black Candy Theme | |
* http://www.silverstripe.com | |
* | |
* Form Styling | |
*/ | |
/* FIELDSETS | |
---------------------------------------- */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ if products }} | |
{{ firesale:products limit="24" order="created desc" }} | |
<div class="accordion-group"> | |
<div class="accordion-heading"><a href="#collapse{{ id }}" class="accordion-toggle" data-toggle="collapse" data-parent="#accordion">{{ title }}</a></div> | |
<div id="collapse{{ id }}" class="accordion-body collapse"> | |
<div class="accordion-inner"> | |
<p>{{ description }}</p> | |
<a href="{{ firesale:url route='cart' }}insert/{{ id }}/1" class="basket"><span class="icon"></span>Add to Cart</a> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ firesale:products limit="24" category="2" order="created desc" }} | |
{{ if products }} | |
<div id="accordion" class="accordion"> | |
{{ products }} | |
<div class="accordion-group"> | |
<div class="accordion-heading"><a href="#collapse{{ id }}" class="accordion-toggle" data-toggle="collapse" data-parent="#accordion">{{ title }}</a></div> | |
<div id="collapse{{ id }}" class="accordion-body collapse"> | |
<div class="accordion-inner"> | |
<p>{{ description }}</p> | |
<input type="number" id="quanty_{{ id }}" value="1" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php defined('BASEPATH') or exit('No direct script access allowed'); | |
/** | |
* This file is part of FireSale, a PHP based eCommerce system built for | |
* PyroCMS. | |
* | |
* Copyright (c) 2013 Moltin Ltd. | |
* http://github.com/firesale/firesale | |
* | |
* For the full copyright and license information, please view the LICENSE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"email":"[email protected]","ip":"10.0.0.1","description":"200 Web 2.0 M&Ms","address_line1":"42 Sevenoaks St","address_line2":"","address_city":"Perth","address_postcode":"6454","address_state":"WA","address_country":"Australia"} | |
{"params":{"error":"invalid_resource","error_description":"One or more parameters were missing or invalid.","messages":[{"param":"card.address_line1","code":"card_address_line1_invalid","message":"Card address line1 can't be blank"},{"param":"card.address_city","code":"card_address_city_invalid","message":"Card address city can't be blank"},{"param":"card.address_country","code":"card_address_country_invalid","message":"Card address country can't be blank"}]},"message":"One or more parameters were missing or invalid.","success":false,"test":true,"authorization":null,"fraud_review":null,"avs_result":{"code":null,"message":null,"street_match":null,"postal_match":null},"cvv_result":{"code":null,"message":null}} | |
Error: One or more parameters were missing or invalid. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<h1>New group</h1> | |
<form action="/your_purchase_url" class="pin" method="post"> | |
<div class="errors" style="display:none"> | |
<h3></h3> | |
<ul></ul> | |
</div> | |
<fieldset> | |
<legend>Billing</legend> |