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 | |
add_filter( 'posts_search', '__search_by_title_only', 500, 2 ); | |
function get_city_data($city = ""){ | |
if(empty($city)){ | |
if(isset($_COOKIE["city"])){ | |
$result = array(); | |
$city = urldecode($_COOKIE["city"]); | |
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 | |
/** | |
* Change the add to cart text on single product pages | |
*/ | |
add_filter('woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text'); | |
function woo_custom_cart_button_text() { | |
foreach( WC()->cart->get_cart() as $cart_item_key => $values ) { |
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 | |
mb_internal_encoding("UTF-8"); | |
function mb_ucfirst($text) { | |
return mb_strtoupper(mb_substr($text, 0, 1)) . mb_substr($text, 1); | |
} |
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 openPopup(el) { // get the class name in arguments here | |
$.magnificPopup.open({ | |
items: { | |
src: '#test-modal', | |
}, | |
type: 'inline' | |
}); | |
} | |
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
<form> | |
<h1>Form 1</h1> | |
<div><input type="text" name="field1" placeholder="field1"></div> | |
<div><input type="text" name="field2" placeholder="field2"></div> | |
<div id="RecaptchaField1"></div> | |
<div><input type="submit"></div> | |
</form> | |
<form> | |
<h1>Form 2</h1> |
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 | |
add_filter("body_class", "clean_body_class", 10, 2); | |
function clean_body_class($wp_classes){ | |
if(is_front_page()){ | |
if(($key = array_search("page", $wp_classes)) !== false) { | |
unset($wp_classes[$key]); | |
} |
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
sudo add-apt-repository ppa:git-core/ppa -y | |
# sudo apt-get install python-software-properties software-properties-common | |
sudo apt-get update | |
sudo apt-get install git -y | |
git --version |
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 | |
$id = JFactory::getApplication()->input->getInt('id'); | |
$article = JTable::getInstance("content"); | |
$article->load($id); | |
echo $article->get("introtext"); |
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 | |
// https://github.com/mpdf/mpdf | |
$stylesheet = file_get_contents(JPath::clean(JPATH_BASE.'/media/teachers/tmpl/pdf_curator.css')); | |
//$stylesheet .= file_get_contents(JPath::clean(JPATH_BASE.'/media/teachers/tmpl/pdf_license_print.css')); | |
$stylesheet .= ' @page{'.$bg_style.'background-image-resolution:300dpi;background-image-resize:1;}'; | |
$mpdf->CSSselectMedia = 'pdf'; |
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
$customFieldnames = FieldsHelper::getFields('com_content.article', $item->id, true); | |
$customFieldIds = array_map(create_function('$o', 'return $o->id;'), $customFieldnames); //get custom field Ids by custom field names | |
$model = JModelLegacy::getInstance('Field', 'FieldsModel', array('ignore_request' => true)); //load fields model | |
$customFieldValues = $model->getFieldValues($customFieldIds , $item->id); //Fetch values for custom field Ids |