This file contains 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
_wrappers.so |
This file contains 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
<script> | |
var Webflow = Webflow || []; | |
Webflow.push(function () { | |
// Getting the #hash from the URL | |
var url = window.location.hash; | |
// Removing the # symbel | |
var tab = url.substr(1); | |
// Acticating the tab with the same name as the #hash from the URL | |
$('.w-tab-menu > a[data-w-tab="' + tab + '"]').click(); | |
}); |
This file contains 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
<script> | |
// Adding the title of the page to a hidden form element. | |
var Webflow = Webflow || []; | |
Webflow.push(function () { | |
$('#event').attr( 'value', $('title').html() ); | |
}); | |
</script> | |
<input type="hidden" id="event" name="event" value="Unknown"> |
This file contains 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 | |
header('HTTP/1.1 301 Moved Permanently'); | |
header('Location: http://example.com'); | |
?> |
This file contains 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
<script> | |
var Webflow = Webflow || []; | |
Webflow.push(function () { | |
// DOMready has fired, may now use jQuery and Webflow api | |
}); | |
</script> |
This file contains 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
var Webflow = Webflow || []; | |
Webflow.push(function () { | |
// Find example element | |
var $element = $('.resize-demo'); | |
var $parent = $element.parent(); | |
// Listen for optimized resize event | |
Webflow.resize.on(function () { | |
This file contains 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
(function($){ | |
$(document).ready(function() { | |
}) | |
})(jQuery); |
This file contains 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
@media screen and (max-width: 991px) { | |
/* Your responsive CSS */ | |
} | |
@media screen and (max-width: 767px) { | |
/* Your responsive CSS */ | |
} | |
@media screen and (max-width: 479px) { | |
/* Your responsive CSS */ | |
} |
This file contains 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 | |
/** | |
* Process variables for user-profile.tpl.php. | |
* | |
* The $variables array contains the following arguments: | |
* - $account | |
* | |
* @see user-profile.tpl.php | |
*/ | |
function YOUR_THEMENAME_preprocess_user_profile(&$variables) { |
NewerOlder