Skip to content

Instantly share code, notes, and snippets.

View marklchaves's full-sized avatar
🏄‍♂️

mark l chaves marklchaves

🏄‍♂️
View GitHub Profile
@marklchaves
marklchaves / add_font_family_and_size.php
Created April 8, 2024 00:17
Add Font Family and Custom Font Size Options to TinyMCE
<?php // Ignore this first line when copying to your child theme's functions.php file.
// Turn on font size & font family selects in the classic editor.
add_filter( 'mce_buttons_2', function( $buttons ) {
array_unshift( $buttons, 'fontselect' );
array_unshift( $buttons, 'fontsizeselect' );
return $buttons;
} );
/**
@marklchaves
marklchaves / help-scout-custom-code-top-banner-css.html
Last active March 28, 2024 09:19
Help Scout Docs Top Banner Custom CSS and JavaScript
<!-- Winter 2004 Banner -->
<style>
body {
margin-top: 113px !important;
}
#winter-2004-banner.hidden {
top: -113px;
}
#winter-2004-banner {
@marklchaves
marklchaves / avada-make-read-more-symbol-into-icon.css
Last active March 26, 2024 06:30
How to change the Read More text in Avada ThemeFusion blog post teasers.
/* Make a Coffee Cup be the read more symbol. */
.fusion-read-more::after {
content: '\002615' !important; /* Hot Beverage */
right: -20px !important;
}
/**
* How to add CSS to Wordpress.
* https://medium.com/@marklchaves/adding-custom-css-to-your-wordpress-website-how-to-guide-a50b474af36d
*/
@marklchaves
marklchaves / template-parts-header-example.html
Created February 25, 2024 09:59
Content Control restrict header example
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|10","left":"var:preset|spacing|10","top":"var:preset|spacing|10","bottom":"var:preset|spacing|10"}}},"backgroundColor":"accent","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"},"contentControls":{"enabled":false,"rules":{}}} -->
<div class="wp-block-group has-accent-background-color has-background" style="padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)"><!-- wp:site-logo {"width":79,"shouldSyncIcon":true} /-->
<!-- wp:paragraph {"fontSize":"large","contentControls":{"enabled":false,"rules":{"user":{"userStatus":"logged_out","roleMatch":"any","userRoles":[]}}}} -->
<p class="has-large-font-size">Logged-out Menu</p>
<!-- /wp:paragraph -->
<!-- wp:navigation {"ref":56,"layout":{"type":"flex"},"fontSize":"large","contentControls":{"enabled":false,"rules":{"user":{"userStatus":"logge
@marklchaves
marklchaves / nyt-style-wp-blocks-pattern.html
Created January 26, 2024 04:26
Example Content for New York Times Style Teaser
<!-- wp:columns -->
<div class="wp-block-columns"><!-- wp:column {"width":"30%"} -->
<div class="wp-block-column" style="flex-basis:30%"></div>
<!-- /wp:column -->
<!-- wp:column {"width":"40%"} -->
<div class="wp-block-column" style="flex-basis:40%"><!-- wp:group {"metadata":{"name":"Card"},"style":{"spacing":{"blockGap":"var:preset|spacing|small","padding":{"top":"var:preset|spacing|small","right":"var:preset|spacing|small","bottom":"var:preset|spacing|small","left":"var:preset|spacing|small"}},"border":{"radius":"5px"},"layout":{"selfStretch":"fixed","flexSize":"360px"}},"backgroundColor":"base","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-base-background-color has-background" style="border-radius:5px;padding-top:var(--wp--preset--spacing--small);padding-right:var(--wp--preset--spacing--small);padding-bottom:var(--wp--preset--spacing--small);padding-left:var(--wp--preset--spacing--small)"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|small"}},"layout":{"type":"co
@marklchaves
marklchaves / popup-maker-disable-if-elementor-live-preview.php
Last active January 23, 2024 16:43
Disable Popup Maker if Elementor Preview Mode is Active
<?php // Ignore this first line when copying to your child theme's functions.php file.
/**
* Disable Popup Maker if Elementor Preview Mode is Active
*
* References:
* - https://code.elementor.com/methods/elementor-preview-is_preview_mode/
* - https://ralphjsmit.com/elementor-check-active/
*/
@marklchaves
marklchaves / listen_for_alternate_close.php
Last active June 14, 2023 14:03
Popup Maker: A workaround to fix the alternate close methods not working on back-to-back popups.
<?php // Ignore this first line when copying to your child theme's functions.php file.
/**
* Listen for alternate close
*
* A workaround to fix the alternate close methods not working on back-to-back popups.
*
*/
function listen_for_alternate_close() { ?>
<script type="text/javascript">
@marklchaves
marklchaves / every_third_page.php
Last active June 14, 2023 05:05
Show a popup on every third page
<?php // Ignore this first line when copying to your child theme's functions.php file.
function every_third_page() { ?>
<script type="text/javascript">
/** Set up a page counter in the browser's session storage. */
(function(){
let pc = parseInt(sessionStorage.getItem("my-page-count"));
if (!pc) {
sessionStorage.setItem("my-page-count", 1);
@marklchaves
marklchaves / say_hello_sc.php
Last active June 6, 2023 04:02
The say hello shortcode prints your display name and role if you're logged into a WordPress site. This is great if you need to know who you are logged in as and what role you have for any given post/page you're on.
<?php // Ignore this first line when copying to your child theme's functions.php file.
function say_hello_sc() {
$u = wp_get_current_user();
$display_name = $u->display_name ?: 'there';
$roles = (array) $u->roles ?: ['not logged in'];
return '<p>Yo, <strong>' . $display_name . '</strong> (<em>' . $roles[0] . '</em>)' . '. Thanks for stopping by ;-)</p>';
}
add_shortcode('say_hello', 'say_hello_sc');
/**
@marklchaves
marklchaves / holy_smokes_function.php
Last active May 31, 2023 04:03
Popup Maker: Use a filter or shortcode to display a popup's contents including its ACF
<?php // Ignore this first line when copying to your child theme's functions.php file.
/** Use a Popup Maker filter to tack on the popup's ACF if it has one. */
function holy_smokes_function($content, $id)
{
$acf_value = get_post_meta($id, 'test', true);
return $content . '<p>Holy smokes, Batman! ' . ($acf_value ? $acf_value : 'Aw, nothing :-(') . '</p>';
}
add_filter('pum_popup_content', 'holy_smokes_function', $content, $id);