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
wp.domReady(() => { | |
const deleteBlockQuestion = "Are you sure to delete this block?"; | |
document.addEventListener("click", (event) => { | |
const deleteButton = event.target.closest('.components-button.components-menu-item__button'); | |
if ( deleteButton && ( deleteButton.textContent.includes("Delete") || deleteButton.textContent.includes("Remove") ) ) { | |
const userConfirmed = confirm( deleteBlockQuestion ) ; | |
const { dispatch, select } = wp.data; |
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="block-reviews2__items"> | |
<?php $i=1; foreach ($reviews as $review) { | |
if ( $i === 1 || ( $i - 1 ) % 2 === 0 ) { | |
echo '<div class="block-reviews2__slide flex flex-wrap">'; | |
} | |
?> | |
<div class="block-reviews__item w-[calc(100%/2-40px)] md:w-full"> | |
<div class="block-reviews__heading flex mb-[16px] md:mb-[12px]"> |
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
{% if template == 'index' %} | |
{% endif %} |
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 class to first word in text-block/tag by class '.styling-first-word' | |
*/ | |
function addClassToFirstWord() { | |
let first_word_class = 'first-word'; | |
let el = jQuery('.styling-first-word'); | |
el.each(function(){ | |
let string = jQuery(this).html(); | |
let first_word = string.split(" "); |
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
.team-partners__items[style*="display: block"]{ | |
display:flex!important; | |
} |
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
overflow: hidden; | |
text-overflow: ellipsis; | |
display: -moz-box; | |
-moz-box-orient: vertical; | |
display: -webkit-box; | |
-webkit-line-clamp: 2; | |
-webkit-box-orient: vertical; | |
line-clamp: 2; | |
box-orient: vertical; |
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
//remove 'Archive:' from archive title | |
add_filter( 'get_the_archive_title', function( $title ){ | |
return preg_replace('~^[^:]+: ~', '', $title ); | |
}); |
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 blg_current_location() | |
{ | |
if (isset($_SERVER['HTTPS']) && | |
($_SERVER['HTTPS'] == 'on' || $_SERVER['HTTPS'] == 1) || | |
isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && | |
$_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') { | |
$protocol = 'https://'; | |
} else { | |
$protocol = 'http://'; | |
} |
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
// reference the Dompdf namespace | |
use Dompdf\Dompdf; | |
use Dompdf\Options; | |
$text_data = [ | |
'<p><b>Analyst:</b> <span>SEAN WIELAND</span> (PIPER SANDLER)</p>', | |
'<p><b>The Stock:</b> <span>CHNG</span> (Change Healthcare Inc)</p>', | |
'<p><b>Price Target Change:</b> $494->$549 = $55 (11.13%)</p>', | |
'<p><b>Average Time For PT To Be Met:</b> 251</p>', | |
'<p><b>Potential Upside Change:</b> $109.6->$164.6; 198%->133%</p>', |
NewerOlder