View child-theme-settings.php
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 | |
/** | |
* Course Maker Pro Theme settings. | |
* | |
* Genesis 2.9+ updates these settings when themes are activated. | |
* | |
* @package Course Maker Pro | |
*/ | |
return array( |
View theme-supports.php
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 | |
/** | |
* Course Maker Pro - Theme supports declarations. | |
* | |
* @package Course Maker Pro | |
* @author StudioPress | |
* @license GPL-2.0-or-later | |
* @link https://my.studiopress.com/themes/genesis-sample/ | |
*/ |
View 01-original-script.js
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 ($) { | |
$( 'div[class^="front-page-"] a[href*=#]:not([href=#])' ).click( function() { | |
// More code here... | |
}); | |
})(jQuery); |
View style.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
body { | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
font-size: calc(.35vw + 1rem); | |
line-height: 1.8; | |
} | |
h1 { | |
font-size: calc(2.0vw + 1rem); | |
} |
View block-style-variations.js
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($) { | |
// Add 'Semibold' style to Paragraph blocks | |
wp.blocks.registerBlockStyle("core/paragraph", { | |
name: "semibold", | |
label: "Semibold" | |
}); | |
// Add 'Black' style to Paragraph blocks | |
wp.blocks.registerBlockStyle("core/paragraph", { |
View header.php
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 | |
// ... | |
<!-- // HAMBURGER MENU TOGGLE // --> | |
<button class="navbar-toggler" type="button" data-toggle="modal" data-target="#menuModal" aria-controls="#menuModal" aria-expanded="false" aria-label="<?php esc_attr_e( 'Toggle navigation', 'understrap' ); ?>"> | |
<i class="fa fa-bars menu_burger" aria-hidden="true"></i> | |
</button> | |
<!-- // DESKTOP MENU // --> | |
<?php wp_nav_menu( |
View functions.php
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
//* Shortcode optimization | |
add_filter( 'the_content', 'do_shortcode' ); // Allow shortcodes inside of shortcodes | |
add_filter( 'comment_text', 'do_shortcode' ); // Allow shortcodes in comments | |
add_filter( 'comment_text', 'shortcode_unautop' ); // Prevent comment shortcodes from wrapping in <p>...</p> tags | |
add_filter( 'the_excerpt', 'do_shortcode' ); // Allow shortcodes in excerpts | |
add_filter( 'the_excerpt', 'shortcode_unautop' ); // Prevent excerpt shortcodes from wrapping in <p>...</p> tags | |
add_filter( 'widget_text', 'do_shortcode' ); // Allow shortcodes in widgets | |
add_filter( 'widget_text', 'shortcode_unautop' ); // Prevent shortcodes in widgets from wrapping in <p>...</p> tags |
View functions.php
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 | |
/** | |
* Increases or decreases the brightness of a color by a percentage of the current brightness. | |
* | |
* Credit: https://stackoverflow.com/a/54393956/4256497 | |
* | |
* @param string $hex_code Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF` | |
* @param float $adjust_pct A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker. | |
* |
View plugin.php
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 | |
/** | |
* Disable Admin Notification of User Password Change | |
* | |
* Credit: https://wordpress.stackexchange.com/a/266006/67466 | |
* | |
* Suppressing this email notification has to be handled | |
* with a plugin because pluggable.php is loaded earlier | |
* than a theme's functions.php file. |