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
<!-- Table CSS --> | |
<style> | |
#resp-table { | |
width: 100%; | |
display: table; | |
} | |
#resp-table-caption{ | |
display: table-caption; |
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
:root { | |
--brf-color-primary: #14854F; | |
--brf-color-lightGrey: #d2d6dd; | |
--brf-color-grey: #747681; | |
--brf-color-darkGrey: #3f4144; | |
--brf-color-error: #d43939; | |
--brf-color-success: #28bd14; | |
--brf-grid-maxWidth: 120rem; | |
--brf-grid-gutter: 2rem; | |
--brf-font-size: 1.6rem; |
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
.uael-woo-products-summary-wrap { | |
display: flex; | |
flex-direction: column; | |
align-content: baseline; | |
margin: auto; | |
min-height: 265px; | |
justify-content: space-between; | |
} |
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
// Place in Functions.php or a plugin | |
function year_shortcode() { | |
$year = date('Y'); | |
return $year; | |
} | |
add_shortcode('year', 'year_shortcode'); |
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 | |
function dgs_preload_font() { | |
?> | |
<link rel="preload" href="<?php echo get_site_url(); ?>/wp-content/uploads/2021/10/calibre-web-light.woff2" as="font" type="font/woff2" crossorigin> | |
<link rel="preload" href="<?php echo get_site_url(); ?>/wp-content/uploads/2021/10/calibre-web-regular.woff2" as="font" type="font/woff2" crossorigin> | |
<link rel="preload" href="<?php echo get_site_url(); ?>/wp-content/uploads/2021/10/calibre-web-medium.woff2" as="font" type="font/woff2" crossorigin> | |
<link rel="preload" href="<?php echo get_site_url(); ?>/wp-content/uploads/2021/10/calibre-web-light-italic.woff2" as="font" type="font/woff2" crossorigin> | |
<link rel="preload" href="<?php echo get_site_url(); ?>/wp-content/uploads/2021/10/calibre-web-semibold.woff2" as="font" type="font/woff2" crossorigin> | |
<?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 | |
/** | |
* The main archive template file | |
* | |
* @package kadence | |
*/ | |
/** | |
* Step 1 - Duplicate index.php in the parent kadence theme and copy it to your child theme | |
* Step 2 - In your child theme, rename the index file to archive-{post-type-slug}.php where post type slug is your custom post type slug. |
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
<a class="kt-blocks-post-readmore" href="https://example.com/">View Profile <span class="screen-reader-text">of Griffen Stapp</span></a> |
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
name: Pantheon Terminus Deploy to Members Branch | |
# Controls when the action will run. | |
on: | |
push: | |
branches: | |
- 'members' | |
jobs: | |
build: |
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
h1 { | |
margin: 0 8px 16px; | |
font-size: 3.625rem; | |
line-height: 64px; | |
color: #fff; | |
letter-spacing: 2px; | |
font-weight: 900; | |
-webkit-text-stroke: 2px; | |
-webkit-text-stroke-color: #000; | |
text-shadow: -1p |
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
terminus auth:login --machine-token={your_machine_token} | |
terminus wp {sitename}.{env} -- user update {userID} --user_pass={enterStrongPassword} |