PHP Wordpress2 Min Read CodexonSeptember 19, 2025 How to Build an SEO-Friendly FAQ System in WordPress (Step-by-Step) Recently, I worked with a client who is a professional consultant in her field. She wanted me to create a Q&A system — basically a…
PHP2 Min Read CodexonSeptember 18, 2025 Issue: cURL requests (used for DB/API communication) stopped working After you installed a new SSL certificate on AWS, your PHP cURL requests (used for DB/API communication) stopped working. This usually happens…
PHP Wordpress3 Min Read CodexonSeptember 17, 2025 Contact Form 7 inquiries go Email and WhatsApp automatically Same time, the details are sent automatically to your WhatsApp using the WhatsApp Cloud API. Step 1: Create Contact Form 7 Form Add a new CF7…
PHP Wordpress1 Min Read CodexonSeptember 16, 2025 Enquiry sent automatically to WhatsApp Someone submits the inquiry form on your WordPress site, the inquiry details should be sent automatically to your WhatsApp number (not just…
PHP Wordpress1 Min Read CodexonSeptember 15, 2025 Gemini chatbot : create for WordPress Plugin Let’s create Gemini chatbot into WordPress so you can use it anywhere on your site via a shortcode (e.g., [gemini_chatbot]). Step 1: Create a…
Javascript PHP1 Min Read CodexonSeptember 14, 2025 full interactive chatbot using PHP (backend) + HTML/CSS + JavaScript (frontend) with the Gemini API. Step 1: Backend (chatbot.php) This PHP script will receive the user’s message via AJAX, call Gemini API, and return the response. Step 2:…
PHP Wordpress2 Min Read CodexonSeptember 11, 2025 How to Enable WebP Support in WordPress Media Uploads WebP is a modern image format that provides smaller file sizes and faster loading compared to JPEG and PNG. Since WordPress 5.8, WebP is…
PHP2 Min Read CodexonSeptember 10, 2025 FPDF : Table with MultiCells The goal of this script is to show how to build a table from MultiCells. As MultiCells go to the next line after being output, the base idea…
PHP Wordpress1 Min Read CodexonSeptember 1, 2025 Create a chatbot in PHP using the Gemini API (from Google AI) Requirements PHP 7.4+ cURL enabled in PHP Gemini API Key (from Google AI Studio: https://makersuite.google.com/app) Step 1: Setup Your PHP…