CSS

body:not(.home) #primary-menu { display: none !important; } /* 1) Remove the border/background from .shortcode so it becomes invisible within .panel-content */ .shortcode { background: transparent !important; border: none !important; padding: 0 !important; white-space: normal !important; overflow-x: visible !important; } /*…Continue reading

Disable Fluent Booking Autofill on Specific slug pages

// Name: Disable Fluent Booking Autofill on Specific Pages // Description: Prevents autofill of name and email in the Fluent Booking form on pages with ‘apt-team’ in the slug. // Author:Sumaiya, Clickup Documentation: https://app.clickup.com/36636088/v/dc/12y1dr-23175/12y1dr-18975 function modify_fluent_booking_vars($data) { if (is_page()) {…Continue reading

Arranger menu anglais RDV (Script)

document.addEventListener(“DOMContentLoaded”, function() { // Vérifiez si vous êtes sur la bonne page if (window.location.href.includes(‘/en/fd-booking/#/’)) { // Trouvez tous les éléments de menu const menuItems = document.querySelectorAll(‘.fframe_menu_primary’); // Modifiez leurs URLs menuItems.forEach(item => { const href = item.getAttribute(‘href’); // Remplacez les…Continue reading

CSS couleurs et boutons pour Affiliation

#back-to-site-link { display: none !important; } a[href=”https://francodeal.com/7d-connexion/?action=logout&redirect_to=https%3A%2F%2Ffrancodeal.com%2Faffiliation-tableau%2F&_wpnonce=6854756720″] { display: none !important; } nav.bg-gray-800 { background-color: black !important; } div.bg-gray-800 { background-color: #000000 !important; color: white !important; /* Modifie la couleur du texte en blanc */ } a.bg-gray-900 { background-color: #cd923d…Continue reading

Couleur filtre de droite Buddypress et la barre de recherce

#activity-filter-by { background-color: white; color: black; /* Vous pouvez ajuster la couleur du texte ici si nécessaire */ } /* Style du champ de recherche spécifique */ #dir-activity-search-form.bp-dir-search-form input[type=”search”] { width: 100%; /* Prend toute la largeur de son conteneur…Continue reading

Code CSS pour vidéos intégrées dans buddypress

/* Personnalisation des vidéos intégrées dans BuddyPress */ .bp-video-embed-wrapper { max-width: 100%; margin: 20px 0; padding: 10px; background-color: #f0f0f0; /* Couleur de fond légère */ border-radius: 8px; /* Coins arrondis pour un look plus doux */ box-shadow: 0 2px 10px…Continue reading

Faire les images apparaitre comme Buddy X pro

/* — Conteneur Principal de l’Activité — */ .buddypress .activity-inner { display: block; margin: 20px 0; padding: 15px; background: #fff; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } /* — Images Open Graph — */ .buddypress .activity-inner…Continue reading

Nouveau CSS Buddypress

/* === Style pour les avatars (cercle parfait petit) === */ #buddypress .activity-avatar img { border-radius: 50%; /* Cercle parfait */ border: 2px solid #000085; /* Bordure bleue élégante */ width: 40px; /* Diamètre pour les petits avatars */ height:…Continue reading