Skip to content

Instantly share code, notes, and snippets.

View ScarletPonytail's full-sized avatar

ScarletPonytail ScarletPonytail

View GitHub Profile
@ScarletPonytail
ScarletPonytail / fix-01.txt
Last active March 22, 2019 16:25
MySQL - Fix MySQL not starting on MAMP
01. Quit MAMP.
02. In the finder go to Applications/MAMP/db/mysql56/.
03. Delete the log files (in my case ib_logfile0 & ib_logfile1).
04. Restart MAMP
@ScarletPonytail
ScarletPonytail / style.css
Created January 29, 2018 16:21
CSS - Styling for print
@media print {
.buttons-set {
display: none;
}
h1, h2, h3 {
font-size: 16px;
color: #666666;
}
}
@ScarletPonytail
ScarletPonytail / page.phtml
Last active January 19, 2018 11:15
Magento - Get skin images or wysiwyg url for .phtml files
<!-- Image from skin folder -->
<img src="<?php echo $this->getSkinUrl();?>images/icon-email.svg" />
<!-- Image from wysiwyg folder -->
<img src="<?php echo $this->getUrl('') ?>media/wysiwyg/beer-logo.jpg" />
@ScarletPonytail
ScarletPonytail / script.js
Created January 12, 2018 14:47
JS - Scroll back to top on click
// Global - Scroll to the top of the page
$j(".introView button").click(function(){
$j('html, body').animate({ scrollTop: 0 }, 'slow');
});
@ScarletPonytail
ScarletPonytail / style.css
Last active January 15, 2018 14:00
CSS - Exact position background image
background: url('../images/arrow-button-next-hov.png') no-repeat right 10px top 50% #00973A;
/*--or--*/
background-image: url('../images/icon-filter.svg');
background-size: 30px 30px;
background-repeat: no-repeat;
background-color: transparent !important;
background-position: right 10px bottom 0px;
@ScarletPonytail
ScarletPonytail / index.html
Last active December 13, 2017 09:42
JS - Check is the div is empty and apply a class
<!-- Add the following comment code so you can indent the code and it still shows as empty -->
<div class="row">
<div id="global-message-inner" class="col-md-12"><!--
--><?php echo $this->getChildHtml('global_messages') ?><!--
--></div>
</div>
@ScarletPonytail
ScarletPonytail / index.html
Last active November 27, 2017 11:41
CSS / JS / HTML - Off Canvas Top
<div class="the-search">
<!-- Something here -->
</div>
@ScarletPonytail
ScarletPonytail / page.html
Last active November 23, 2017 14:41
Magento - Insert image from style folder into cms page in admin
{{skin url='images/drinkaware_logo.png'}}
@ScarletPonytail
ScarletPonytail / text.txt
Created August 31, 2017 08:41
Woocommerce - Add product filter to sidebar
// Adding Filters to sidebar
// ------------------------------------
01. Apply plugin 'WOOF - WooCommerce Products Filter'
02. Select 'Settings' from the plugin page
03. Select what you would like to filter and how you would like it to look
04. Go to the Widgets menu, and drag the 'WOOF - WooCommerce Products Filter' to the sidebar
@ScarletPonytail
ScarletPonytail / text.txt
Last active September 22, 2017 13:23
Woocommerce - Plugins
// Base Plugins
// ------------------------------
WooCommerce
By WooCommerce
// Payment Gateways
// ------------------------------