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 | |
/*--------------------- | |
Dashboard Menu Adjustments | |
---------------------*/ | |
// Only hide specific dashboard menu items on the live server. | |
// Show on localhost so we can control every component. | |
$whitelist = array('127.0.0.1','::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
<a class="modal-trigger" data-modal="recap-video-modal">Recap Video</a> | |
<div class="modal recap-video-modal"> | |
<div class="modal__transparent-layer modal-close"></div> | |
<div class="modal__content"> | |
<p>Some content to go in the modal.</p> | |
</div> | |
<span class="close-icon modal-close"></span> | |
</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
<!-- Place somewhere in the <body> of your page --> | |
<div class="flexslider"> | |
<ul class="slides"> | |
<li> | |
<img src="homepage-banner-slide-1.jpg" /> | |
</li> | |
<li> | |
<img src="homepage-banner-slide-2.jpg" /> | |
</li> |
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="flexslider"> | |
<ul class="slides"> | |
<li> | |
{% include 'otto', location: 'homepage-banner-slide-1' %} | |
</li> | |
<li> | |
{% include 'otto', location: 'homepage-banner-slide-2' %} | |
</li> | |
<li> | |
{% include 'otto', location: 'homepage-banner-slide-3' %} |
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
{% comment %} | |
Otto Slideshow Section | |
--- | |
Flexslider composed of Otto automated images. | |
Flexslider - https://woocommerce.com/flexslider/ | |
{% endcomment %} |
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
# Load media files from production server if they don't exist locally. | |
# Below snippet must be placed before wordpress default htaccess rules. | |
<IfModule mod_rewrite.c> | |
RewriteEngine on | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule wp-content/uploads/(.*) http://production-url.com/wp-content/uploads/$1 [NC,L] | |
</IfModule> |
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
/*================================== | |
Lists | |
--- | |
General ul and ol elements within wysiwyg content areas having specific bullet or numbered styling. | |
The below styles create custom bullets and numbered lists. Bullets can be any image or unicode. Numbers can have a specific font style. | |
==================================*/ | |
ul, ol { | |
margin: 0; | |
padding: 0; |
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="notification_banner dismissible" id="store_locator_notification"> | |
<p>Notification Content</p> | |
<div class="notification_dismiss_button" data-dismiss="store_locator_notification"> | |
<i class="fas fa-times"></i> | |
</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
/*================================= | |
Animate In View | |
=================================*/ | |
// Elements | |
const animatedElements = document.querySelectorAll('.animate_in_view'); | |
// Check position of each element on scroll and animate |