- http://www.codanada.com -- Coming soon!
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
/** | |
* File: wp-config.php file. | |
* | |
* Take note of the comment line below. | |
* This code should be placed above that line. | |
* | |
*/ | |
define('WP_HOME', 'http://tmp.example.com'); | |
define('WP_SITEURL', 'http://tmp.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
<?php | |
// | |
// Remove Font Awesome reference from Beaver Builder Theme | |
// --------------------------------------------------------- | |
add_action( 'wp_enqueue_scripts', function(){ | |
wp_dequeue_style( 'font-awesome' ); | |
wp_deregister_style( 'font-awesome' ); | |
}, 100 ); |
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 (max-width: 768px){ | |
/* 1. Float left all cols */ | |
.high-octane-icons-row .fl-col-group .fl-col-small{ | |
clear: none; | |
float: left; | |
} | |
/* 2nd Elem -- clear none */ | |
.high-octane-icons-row .fl-col-group .fl-col-small:nth-child(2){ |
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
jQuery(document).ready(function($){ | |
if( typeof window.FLBuilderConfig === 'undefined' || window.FLBuilderConfig === null ) { | |
// You are on a live page! | |
// Rest of the code here; | |
} | |
}); |
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
/** | |
* | |
* BB Theme Search Results Page with no sidebars. | |
* I added as well the ID = "bb-custom-search-result" so you can apply custom CSS to it. | |
* | |
* Try the CSS below, for example, to remove the right border and increase the width of the search results content. | |
* | |
* @media (min-width: 992px){ | |
* #bb-custom-search-result{ | |
* border: none; |
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
jQuery( '.plugin-title > strong' ).each( function () { | |
console.log( jQuery(this).text() ); | |
} ); |
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
<div class="fl-builder-content fl-builder-content-1003" data-post-id="1003"><div class="fl-row fl-row-fixed-width fl-row-bg-none fl-node-58f60c7d3a748 bb-view-row" data-node="58f60c7d3a748"> | |
<div class="fl-row-content-wrap"> | |
<div class="fl-row-content fl-row-fixed-width fl-node-content"> | |
<div class="fl-col-group fl-node-59668e8d05571" data-node="59668e8d05571"> | |
<div class="fl-col fl-node-59668e8d05659" data-node="59668e8d05659"> | |
<div class="fl-col-content fl-node-content"> | |
<div class="fl-module fl-module-heading fl-node-59668e8d054ce bb-view-headline" data-node="59668e8d054ce"> | |
<div class="fl-module-content fl-node-content"> | |
<h3 class="fl-heading"> |
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
add_action( 'customize_controls_print_scripts', function(){ | |
?> | |
<style id='no-ace-editor-style'> | |
#customize-control-fl-js-code textarea, | |
#customize-control-fl-head-code textarea, | |
#customize-control-fl-header-code textarea, | |
#customize-control-fl-footer-code textarea{ | |
display: block !important; | |
} | |
</style> |
OlderNewer