Skip to content

Instantly share code, notes, and snippets.

@qwersk
qwersk / search_by_title.php
Created September 21, 2017 05:09
Search post by title #WORDPRESS #WP
<?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"]);
@qwersk
qwersk / gist:f28e834e808049857e287ed06752b448
Created September 14, 2017 03:10 — forked from corsonr/gist:6775121
WooCommerce - Product already in cart, change "add to cart" text
<?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 ) {
@qwersk
qwersk / ucfirst_utf8.php
Created September 8, 2017 03:34
Ucfirst analogue for utf-8 #PHP
<?php
mb_internal_encoding("UTF-8");
function mb_ucfirst($text) {
return mb_strtoupper(mb_substr($text, 0, 1)) . mb_substr($text, 1);
}
@qwersk
qwersk / magnific_popup.js
Created September 8, 2017 03:06
Magnific popup on click event #JS #JQUERY #MAGNIFIC
function openPopup(el) { // get the class name in arguments here
$.magnificPopup.open({
items: {
src: '#test-modal',
},
type: 'inline'
});
}
@qwersk
qwersk / multiple_recaptcha.html
Created September 7, 2017 10:24
Multiple Google Recaptcha #JS #JAVASCRIPT
<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>
@qwersk
qwersk / remove_class_from_body.php
Created September 5, 2017 14:01
Remove class from body #WP #Wordpress
<?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]);
}
@qwersk
qwersk / gist:54b48fec3c33bf7bbb0dfb6b4043e61c
Created September 2, 2017 11:53
Install git on ubuntu
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
@qwersk
qwersk / get_article.php
Created August 31, 2017 03:18
Get article content #Joomla
<?php
$id = JFactory::getApplication()->input->getInt('id');
$article = JTable::getInstance("content");
$article->load($id);
echo $article->get("introtext");
@qwersk
qwersk / generate_pdf.php
Created August 22, 2017 10:45
GENERATE PDF #PHP
<?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';
@qwersk
qwersk / get_custom_field.php
Last active August 17, 2017 09:41
Get custom fields #JOOMLA
$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