Skip to content

Instantly share code, notes, and snippets.

View stefanmm's full-sized avatar
🏠
Working from home

Stefan stefanmm

🏠
Working from home
View GitHub Profile
@stefanmm
stefanmm / server.js
Created July 1, 2019 11:04
Dialogflow + Facebook Messenger: handle stickers and images (node.js)
/*
some code...
*/
function imagesFunc(agent) {
const sticker_id = agent.request_.body.originalDetectIntentRequest.payload.data.message.sticker_id; // get "sticker_id"
if (sticker_id != undefined) { // it's a sticker
agent.add("That is nice sticker!"); // send answer to user
} else { // it is not a sticker
agent.add("Thank you for image!"); // send answer to user
}
@stefanmm
stefanmm / functions.php
Last active May 17, 2022 14:49
Edit WP cookie expiration
add_filter( 'auth_cookie_expiration', 'keep_me_logged_in_for_2_weeks', 99, 1 );
function keep_me_logged_in_for_2_weeks( $expire ) {
return 1209600; // 2 weeks in seconds
}
@stefanmm
stefanmm / functions.php
Created May 17, 2022 12:48
WP pass single post title to email subject
echo '<a href="mailto:[email protected]?subject='.get_the_title( get_the_ID() ).'">Pošalji email</a>';
@stefanmm
stefanmm / functions.php
Created May 17, 2022 12:49
ACFBS - search by ACF fields only
function stfn_acfbs_post_fields( $fields ) {
// default lista: ['post_title', 'post_content', 'post_excerpt']
$fields = [];
return $fields;
}
add_filter( 'acfbs_search_post_object_fields', 'stfn_acfbs_post_fields', 10, 1 );
@stefanmm
stefanmm / wp-config.php
Created May 17, 2022 21:32
Set WP URL wp-config
// Other code...
define( 'WP_HOME', 'http://yoursiteurl.com' );
define( 'WP_SITEURL', 'http://yoursiteurl.com' );
@stefanmm
stefanmm / functions.php
Created May 20, 2022 20:12
Simple honeypot for WP comments
<?php
// We will add a fake input field to the WP comment form and make it invisible for humans
// The "firstname" field name is not used by WP (by default) so we can use it
function simple_honey_pot_44587513(){
ob_start();
?>
<style>
.rpodum {
top: 0;
left: 0;
@stefanmm
stefanmm / woo-get-list-of-countries.php
Created June 6, 2022 15:08
Get list of Woo countries using Woo API
<?php
// Ref: https://woocommerce.github.io/code-reference/classes/WC-Countries.html#method___get
global $woocommerce;
$countries = new WC_Countries();
$countries = $countries->__get('countries'); // obj
// echo "<pre>".var_export($countries,true)."</pre>";
?>
@stefanmm
stefanmm / functions.php
Created July 24, 2022 22:51
Get Gravity Forms entries by field value
<?php
/* https://docs.gravityforms.com/searching-and-getting-entries-with-the-gfapi/
* $form_id: ID of the GF form. Default is 0 which means "All" (int)
* $field_id: ID of the field inside the GF $form_id (string)
* $field_val: value you want to search (string)
* $operator: =, IS, CONTAINS, IS NOT, ISNOT, <>, LIKE, NOT IN, NOTIN, IN (string)
* $limit: number of results to return (int)
*/
function gf_get_entries_by_field( $form_id = 0, $field_id = "", $field_val = "", $operator = "=", $limit = 10 ){
if ( !class_exists('GFAPI') ) { return; } // bail early if GF class doesn't exist
@stefanmm
stefanmm / functions.php
Created September 25, 2022 10:06
WP enqueue scripts, ignore caching
<?php
// Enqueue JS and CSS
function enqueue_scripts_44587912556() {
$js_ver_stamp = filemtime( plugin_dir_path( __FILE__ ) . 'js/scripts.js' ); // Get timestamp of the file
$css_ver_stamp = filemtime( plugin_dir_path( __FILE__ ) . 'css/styles.js' ); // Get timestamp of the file
wp_enqueue_script('my_scripts', plugins_url( 'js/scripts.js', __FILE__ ), array(), $js_ver_stamp); // Append timestamp of the file
wp_register_style('my_styles', plugins_url( 'css/styles.css', __FILE__ ), false, $css_ver_stamp); // Append timestamp of the file
wp_enqueue_style ('my_styles');
@stefanmm
stefanmm / functions.php
Created December 24, 2022 11:44
Forbid Woo checkouts outside of a specific country (using Cloudflare)
<?php
// First read: https://support.cloudflare.com/hc/en-us/articles/200168236-Configuring-Cloudflare-IP-Geolocation
function woo_validate_country( $fields, $errors ){
$countryCode = "RS"; // List of codes: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
if( isset($_SERVER["HTTP_CF_IPCOUNTRY"]) && $_SERVER["HTTP_CF_IPCOUNTRY"] != "" ){
if( $_SERVER["HTTP_CF_IPCOUNTRY"] != $countryCode && !is_user_logged_in() ){ // ...but allow logged-in users to make orders
$errors->add( 'validation', 'Error...' ); // <-- Your error message here
}
}