UPDATE 2014-12-21: RubyGems 1.8.30, 2.0.15 and 2.2.3 have been released. It requires manual installation, please see instructions below.
Hello,
If you reached this page, means you've hit this SSL error when trying to
<?php | |
// Don't include the PHP tag | |
genesis_widget_area( 'optin', array( | |
'before' => '<div id="sfws-optin" class="sfws-optin widget-area"><div class="wrap">', | |
'after' => '</div></div>', | |
) ); |
<?php | |
//* Change the Add To Cart Link | |
add_filter( 'woocommerce_loop_add_to_cart_link', 'sfws_add_product_link' ); | |
function sfws_add_product_link( $link ) { | |
global $product; | |
$product_id = $product->id; | |
$product_sku = $product->get_sku(); | |
$link = '<a href="'.get_permalink().'" rel="nofollow" data-product_id="'.$product_id.'" data-product_sku="'.$product_sku.'" data-quantity="1" class="button add_to_cart_button product_type_variable">'.sfws_woocommerce_product_add_to_cart_text().'</a>'; | |
return $link; | |
} |
<?php | |
/** | |
* Template Name: Page Builder | |
* | |
* This page template only works with Genesis child themes and works great with the | |
* Beaver Builder plugin. Learn more: http://clickwp.com/blog/beaver-builder/ | |
*/ | |
// Force full width content layout to remove sidebar |
/* Beaver Builder Full Width Page*/ | |
.beaver-page.fl-builder .content, | |
.beaver-page.fl-builder .content .page, | |
.beaver-page.fl-builder .content-sidebar-wrap, | |
.beaver-page.fl-builder .site-container, | |
.beaver-page.fl-builder .site-inner { | |
background: none; | |
border: 0; | |
float: none; |
<?php | |
//* Add beaver-page body class | |
add_filter( 'body_class', 'beaver_body_class' ); | |
function beaver_body_class( $classes ) { | |
$classes[] = 'beaver-page'; | |
return $classes; | |
} |
// Set the element to select; the only moving part here | |
// Like literally... | |
var elem = document.querySelector("elem") | |
, html = document.querySelector("html"); | |
// Apply positioning, just in case it wasn't already | |
elem.style.position = "absolute"; | |
// Take the viewport height/width into consideration | |
// @TODO: should be updated on window resize |
UPDATE 2014-12-21: RubyGems 1.8.30, 2.0.15 and 2.2.3 have been released. It requires manual installation, please see instructions below.
Hello,
If you reached this page, means you've hit this SSL error when trying to
# place this file in ~/.config/terminator/config | |
[global_config] | |
title_transmit_bg_color = "#d30102" | |
focus = system | |
[keybindings] | |
reset_clear = <Ctrl>R | |
new_tab = <Ctrl>T | |
split_horiz = <Ctrl><Shift>E | |
split_vert = <Ctrl>E | |
close_term = <Ctrl><Shift>W |