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
/* | |
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 | |
} |
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_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 | |
} |
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
echo '<a href="mailto:[email protected]?subject='.get_the_title( get_the_ID() ).'">Pošalji email</a>'; |
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 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 ); |
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
// Other code... | |
define( 'WP_HOME', 'http://yoursiteurl.com' ); | |
define( 'WP_SITEURL', 'http://yoursiteurl.com' ); |
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 | |
// 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; |
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 | |
// 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>"; | |
?> |
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://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 |
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 | |
// 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'); |
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 | |
// 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 | |
} | |
} |
OlderNewer