Skip to content

Instantly share code, notes, and snippets.

View WayneStratton's full-sized avatar

Wayne WayneStratton

View GitHub Profile
@grantambrose
grantambrose / style.css
Last active September 19, 2017 02:08
transparent header with Beaver Builder
/* Make the header transparent */
body .fl-page-header-primary{
background:transparent;
position:relative;
z-index: 10;
}
/* Remove the bottom border from the header
// if you do not add this there will be a faint line under your header */
header .fl-page-header-wrap { border-bottom: 0; }
@patpohler
patpohler / Big List of Real Estate APIs.md
Last active June 6, 2024 01:03
Evolving list of Real Estate APIs by Category

Big List of Real Estate APIs

Listings / Property Data

####Rets Rabbit http://www.retsrabbit.com

Rets Rabbit removes the nightmare of importing thousands of real estate listings and photos from RETS or ListHub and gives you an easy to use import and Web API server so you can focus on building your listing search powered website or app.

<?php
function smyles_custom_listify_listing_data( $data ) {
// Set price key to value from get_custom_field (if there is a value).
// This will allow you to use {{{ data.price }}} in /templates/tmpl-map-popup.php file
if( $price = get_custom_field( 'price', $data['id'] ) ){
$data[ 'price' ] = $price;
}
@blogjunkie
blogjunkie / functions.php
Last active March 24, 2020 09:02
Define defaults for Beaver Builder button module Link: https://pro.wpbeaverworld.com/add-default-colors-button-module/
<?php
add_filter( 'fl_builder_settings_form_defaults', 'wpbw_default_color_button_module', 20, 2 );
function wpbw_default_color_button_module( $defaults, $type )
{
if( $type == "button-module" )
{
$defaults->bg_color = "f59120";
$defaults->bg_hover_color = "808080";
$defaults->text_color = "ffffff";
@salcode
salcode / 2017-nearby-wordcamps.md
Last active October 5, 2017 22:45
2017 WordCamps Near Me
@psahalot
psahalot / beaver-button-styles.css
Created May 17, 2017 08:05
Beaver Builder Button Styles
.bb-custom-button-1 {
letter-spacing: 2px;
}
.bb-custom-button-1 a.fl-button {
border-width: 3px !important;
}
.bb-custom-button-1 a.fl-button:hover {
background-color: transparent !important;
@seothemes
seothemes / page-builder.php
Created May 22, 2017 04:20
Genesis page template for Beaver Builder.
<?php
/**
* Template Name: Page Builder
*
* This file adds the page builder template to the Genesis Starter theme.
* It removes everything in between the header and footer leaving
* a blank template that is compatibale with page builder plugins.
*
* @package GenesisStarter
* @link https://seothemes.net/genesis-starter
@neilgee
neilgee / bb.css
Last active May 29, 2018 22:25
Beaver Builder CSS Snippets
/* Content Slider
* Set Opacity Bg on text 100% wide to overlay image - then position text with fl-slide-title and fl-slide-text
---------------------------------------------------------------------------------------------------- */
@media (min-width:768px) {
.hero-slider-row .fl-slide-2 .fl-slide-title,
.hero-slider-row .fl-slide-2 .fl-slide-text {
width: 65%;
margin: 0 auto !important;
}
@tlctara
tlctara / Beaver Builder Mega Menu Integration CSS Example
Last active May 8, 2020 15:43
CSS to customize Beaver Builder Mega Menu with columns as sub pages, images and intro text
/* This code hides the column headers when they are a sub-menu item */
.fl-menu .sub-menu .fl-has-submenu-container {
display:none;
}
/* This code styles the images and intro text in the mega menu */
.menu-image a {
visibility: hidden;
margin-top: -20px!important;
}
@carlosonweb
carlosonweb / bb-themer-sticky-topbar.js
Last active March 2, 2018 04:39
How to make a sticky Topbar in Beaver Themer.
/**
* First, you need to setup this CSS
*******************************************
.fl-sticky {
position: fixed !important;
width: 100% !important;
left: 0 !important;
top: 0 !important;
z-index: 9999 !important;
border-top: 0 !important;