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
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap"); | |
.teamsynerg-getting-started-guide { | |
position: absolute; | |
display: block; | |
top: 0; | |
z-index: 99999999; | |
width: 100%; | |
height: 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
if ( ! function_exists( 'WC_KORAPAY\\display_proper_error' ) ) { | |
/** | |
* Display messages properly. | |
* | |
* Incase of debugging | |
* | |
* @param array $response | |
* @param array $kora_params | |
* @param int $order_id | |
*/ |
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
/* TAI Team style start */ | |
.pum-theme-default-theme { | |
background-color: rgba( 0, 0, 0, 0.4 ); | |
} | |
.pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close { | |
border-radius: 0 0 0 10px; | |
background-color: #a0cf4f; | |
} |
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 | |
$jsonData = '{ | |
"data": [ | |
{ | |
"ValueDate": "7/3/2023 12:00:00 AM", | |
"Description": "Opening Balance", | |
"Debit": "0.0000", | |
"Credit": "5905.1135", | |
"Label": "credit", |
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="pekky-stm-quantity"> | |
<div class="pekky-stm-minus fff"><a class="pekky-stm-btn-change" href="#" data-multi="-1">-</a></div> | |
<div class="pekky-stm-input"> | |
<input type="number" class="stm_quantity_input" value="1" /> | |
</div> | |
<div class="spekky-stm-plus fff"><a class="pekky-stm-btn-change" href="#" data-multi="1">+</a></div> | |
</div> |
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 | |
/** | |
* Main Plugin | |
* @version 1.0.0 | |
*/ | |
namespace Backcourt; | |
use Backcourt\Vendor\League\Container\Container as Container; | |
use Backcourt\Vendor\League\Container\Definition\Definition as BaseDefinition; |
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 pekky_var_error_log( $object=null ){ | |
ob_start(); // start buffer capture | |
var_dump( $object ); // dump the values | |
$contents = ob_get_contents(); // put the buffer into a variable | |
ob_end_clean(); // end capture | |
error_log( $contents ); // log contents of the result of var_dump( $object ) | |
} | |
############ |
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
<script> | |
jQuery( function($) { | |
$( document ).on( 'click', '.ld-expand-button', function( event ) { | |
// Get the clicked element section cover. | |
let $_ParentEl = $(this).closest( '.ld-item-lesson-item' ); | |
// Check if it's the parent expand all. | |
if ( $_ParentEl.length < 1 ) { // It's da big one. | |
let $_Expanded = $( '.ld-item-list .ld-item-list-item-expanded' ); // trigger all. |
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( function($) { | |
$( document ).on( 'click', '.ola-section-readmore', function( event ) { | |
event.preventDefault(); | |
console.log("workssss"); | |
// Get the clicked element section cover. | |
$_ParentEl = $(this).closest( '.ola-section-cover' ); | |
// Now trigger the necessary for the clicked item. | |
$_ParentEl.find( '.short-d' ).css( 'display', '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
<?php | |
/** | |
* Pre-selects first variation option. | |
* | |
* @param array $args | |
* return array | |
*/ | |
function pekky_wc_select_first_variation_option( $args ) { | |
$args['selected'] = $args['options'][0]; | |
return $args; |
NewerOlder