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
const domande = [ | |
{ | |
question: | |
"1 Domanda profilo logico?", | |
answers: [ | |
{ | |
answer: "SI", | |
tags: [], | |
profile: ["logico"], | |
value: 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
const domande = [ | |
{ | |
question: | |
"Seleziona l'affermazione che più ti descrive: in un progetto la cosa più importante è...", | |
answers: [ | |
{ | |
answer: "Raccogliere il maggior numero possibile di informazioni utili", | |
tags: [], | |
profile: ["logico", "analista", "pioniere"], | |
question: "Nei miei processi valutativi...", |
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
export const flats = [ | |
{ | |
floor: 1, | |
options: [ | |
{ | |
van: 1, | |
cost: 10 | |
}, | |
{ | |
van: 2, |
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
export const distance = [ | |
{ | |
van: 1, | |
details: [ | |
{ | |
round_trip: 100, | |
price: 310, | |
staff: 2, | |
final_price: 403 | |
}, |
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 | |
/** | |
* | |
*/ | |
class FeedImport | |
{ | |
private $xml_url; | |
function __construct() | |
{ |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Confindustria SFC - Economia Circolare</title> | |
<style type="text/css"> | |
footer { | |
bottom: 0; | |
position: absolute; | |
} |
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 | |
/** | |
* Template Name: Vendor Products | |
*/ | |
// File Security Check | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit; | |
} | |
Vendor::no_vendor_redirect(); |
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 | |
//cambio testo e oggetto email di cambio password | |
add_filter('password_change_email', 'change_password_mail_message', 10, 3 ); | |
function change_password_mail_message( $pass_change_mail, $user, $userdata ) { | |
$new_message_txt = __( 'Ciao ###USERNAME###, | |
ti confermiamo che la tua password è stata modificata. | |
Se non sei stato tu ad aver cambiato password, scrivici a info@xxxxxxxxx | |
Saluti.'); | |
$pass_change_mail[ 'subject' ] = 'Hai cambiato la password'; |
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
var offset = $("#filter-search").offset(); | |
var topPadding = 100; | |
$(window).scroll(function() { | |
if ($(window).scrollTop() > offset.top) { | |
$("#filter-search").stop().animate({ | |
marginTop: $(window).scrollTop() - offset.top + topPadding | |
}); | |
} else { | |
$("#filter-search").stop().animate({ | |
marginTop: 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 | |
/** | |
* Insert an attachment from an URL address. | |
* | |
* @param String $url | |
* @param Int $post_id | |
* @param Array $meta_data | |
* @return Int Attachment ID | |
*/ |
NewerOlder