- https://woffice.io
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
$(".animate_bottom_top, .animate_top_bottom, .animate_left_right, .animate_right_left,.animate_fade").waypoint(function () { | |
if (!$(this).hasClass("animate_go")) { | |
var e = $(this); | |
setTimeout(function () { | |
e.addClass("animate_go") | |
}, 30) | |
} | |
}, { | |
offset: "80%" | |
}); |
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
/** | |
WISE CHAT THEME | |
Depends on the Body font color for now and also the input style | |
**/ | |
.wcContainer .wcMessages{ | |
margin: 0; | |
border-radius: 3px; | |
padding: 10px; | |
font-size: 14px; | |
} |
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
/* Bouton | |
* par DojoDave <http://www.0j0.org> | |
* | |
*Allume et éteint une Diode Electroluminescente (DEL/LED) connectée à la patte | |
*numérique 13, lorsque le bouton poussoir connecté à la patte 7 est enfoncé. | |
* http://www.arduino.cc/en/Tutorial/Button | |
*/ | |
int ledPin = 13; //Sélectionne la patte pour la LED< br> | |
int inputPin = 2; | |
//Détermine la patte d’entrée (pour un bouton poussoir) |
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
/* Bouton | |
* par Francois et Pieere | |
* | |
*Allume et éteint une Diode Electroluminescente (DEL/LED) connectée à la patte | |
*numérique 13, lorsque le bouton poussoir connecté à la patte 7 est enfoncé. | |
* http://www.arduino.cc/en/Tutorial/Button | |
*/ | |
int ledPin = 13; //Sélectionne la patte pour la LED< br> | |
int inputPin = 2; | |
//Détermine la patte d’entrée (pour un bouton poussoir) |
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 | |
/* | |
* PLAN | |
* 1) On se connecte à la base de données | |
* 2) On check si le forumlaire a été envoyé | |
* - On verifie si il existe dans le BDD sinon on créé une variable d'erreur | |
* 3) On commence le HTML | |
* 4) Menu et classes qui vous servent a rien | |
* 5) On affiche une erreur ou le nom | |
* 6) On affiche le formulaire qui dirige vers la MEME page |
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 | |
/** | |
* Get Sales total from a REMOTE .json file | |
* | |
* @link https://shopicruit.myshopify.com/admin/orders.json?page=1&access_token=c32313df0d0ef512ca64d5b336a0d7c6 | |
* @author François Forest | |
* @version 1.0.0 | |
*/ | |
Class ShopifyIntern | |
{ |
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 | |
/** | |
* Get Sales total from a REMOTE .json file | |
* | |
* @link https://shopicruit.myshopify.com/admin/orders.json?page=1&access_token=c32313df0d0ef512ca64d5b336a0d7c6 | |
* @author François Forest | |
* @version 1.0.0 | |
*/ | |
Class ShopifyIntern | |
{ |
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 | |
/** | |
* Traitement | |
*/ | |
session_start(); | |
if(isset($_GET['articles_list']) && !empty($_GET['articles_list'])) { | |
// Du formulaire |
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 revert_to_old_design() { | |
return "woffice-2-x"; | |
} | |
add_filter('woffice_design_version', 'revert_to_old_design') |
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
<div id="buddypress"> | |
<?php do_action( 'bp_before_activation_page' ); ?> | |
<div class="page" id="activate-page"> | |
<?php do_action( 'template_notices' ); ?> | |
<?php do_action( 'bp_before_activate_content' ); ?> |
OlderNewer