FORMATEUR INDÉPENDANT AGRÉÉ NDA

Code de la vidéo Bricks Builder Custom Animation

add_filter( ‘bricks/setup/control_options’, function( $options ) { // Add custom animation into animationTypes // Note that the key is very important, must be unique $options[‘animationTypes’][‘pedroMove’] = esc_html__( ‘Custom animation’, ‘bricks’ ); return $options; }, 10 ); .brx-animate-pedroMove { animation-name: pedroMove; } @keyframes pedroMove { 0% { animation-timing-function: ease-in; opacity: 0; transform: translateY(-250px); } 38% { animation-timing-function: […]

Code JQuery de la video sur le formulaire à étapes

Pensez à changer les paramètres de ce code si vous souhaitez avoir un autre type d’affichage de votre date. Quelques exemples de format $today = date(« F j, Y, g:i a »); // March 10, 2001, 5:16 pm $today = date(« m.d.y »); // 03.10.01 $today = date(« j, n, Y »); // 10, 3, 2001 $today = date(« Ymd »); // 20010310 […]

Le snippet du tutoriel youTube Make Crocoblock JetEngine

// Define your webhook endpoint add_action( ‘rest_api_init’, function () { register_rest_route( ‘myplugin/v1’, ‘/get_term_name/’, array( ‘methods’ => ‘GET’, ‘callback’ => ‘get_term_name_by_id’, ) ); }); // Function to retrieve term name by ID function get_term_name_by_id( $data ) { $term_id = $data[‘id’]; // Assuming you’re passing the term ID via the URL parameter ‘id’ // Check if the […]