FormPays Pro
FormPays Pro is a comprehensive payment form plugin designed to make online payments simple and secure. Whether you’re running a small business or a large site, this plugin provides everything you need to collect payments through custom forms. From flexible payment forms to enterprise-grade security, FormPays Pro is designed to simplify online payments for businesses, nonprofits, and educators. Core Features Custom Payment Forms: Create unlimited payment forms with custom fields Multiple Payment Gateways: Support for Razorpay and PayU (more coming soon) Conditional Logic: Show/hide fields based on user selections Shortcode Support: Easy embedding with [formpays_pro_payment_form id="123"] Transaction Management: Complete payment tracking and management Email Notifications: Automatic notifications for payments and failures Email Templates: Customize notification emails for customers and admins Payment Gateways Razorpay: Cards, UPI, NetBanking, Wallets PayU: Cards, UPI, NetBanking, Wallets Test Mode: Development and testing support Webhook Integration: Automatic payment status updates Form Builder Field Types: Text, Email, Phone, Number, Select, Radio, Checkbox, Textarea Custom Fields: Add unlimited custom fields Required Fields: Mark fields as required Field Validation: Built-in validation for all field types Drag & Drop: Easy field reordering Admin Features Dashboard: Overview of forms, transactions, and revenue Form Management: Create, edit, and delete payment forms Transaction Tracking: View all payments with filters and export Gateway Settings: Secure configuration for payment gateways Email Templates: Customize notification emails Security Features Nonce Verification: CSRF protection for all forms Input Sanitization: All user inputs are sanitized Encrypted Storage: Sensitive gateway credentials are encrypted Webhook Verification: Secure webhook handling with signature verification Permission Checks: Admin-only access to sensitive operations External Services This plugin connects to third-party payment gateway services to process payments. Below is detailed information about each service: Razorpay What it is: Payment gateway service for processing online payments in India When data is sent: When a user submits a payment form using Razorpay gateway Data sent: Customer name, email, mobile number, payment amount, currency, order details Purpose: To create payment orders and process payments securely Service URL: https://razorpay.com/ Terms of Service: https://razorpay.com/terms/ Privacy Policy: https://razorpay.com/privacy/ Documentation: https://razorpay.com/docs/ PayU What it is: Payment gateway service for processing online payments When data is sent: When a user submits a payment form using PayU gateway Data sent: Customer name, email, mobile number, payment amount, currency, order details Purpose: To create payment orders and process payments securely Service URL: https://payu.in/ Terms of Service: https://payu.in/terms-of-use Privacy Policy: https://payu.in/privacy-policy Documentation: https://docs.payu.com/ PayPal What it is: Global payment gateway service for processing online payments When data is sent: When a user submits a payment form using PayPal gateway Data sent: Customer name, email, payment amount, currency, order details Purpose: To create payment orders and process payments securely Service URL: https://paypal.com/ Terms of Service: https://www.paypal.com/us/legalhub/useragreement-full Privacy Policy: https://www.paypal.com/us/legalhub/privacy-full Documentation: https://developer.paypal.com/ PhonePe What it is: Digital payment platform for processing UPI and other payments in India When data is sent: When a user submits a payment form using PhonePe gateway Data sent: Customer name, email, mobile number, payment amount, currency, order details Purpose: To create payment orders and process payments securely Service URL: https://phonepe.com/ Terms of Service: https://www.phonepe.com/terms-and-conditions/ Privacy Policy: https://www.phonepe.com/privacy-policy/ Documentation: https://developer.phonepe.com/ Instamojo What it is: Payment gateway service for processing online payments in India When data is sent: When a user submits a payment form using Instamojo gateway Data sent: Customer name, email, mobile number, payment amount, currency, order details Purpose: To create payment orders and process payments securely Service URL: https://instamojo.com/ Terms of Service: https://instamojo.com/terms/ Privacy Policy: https://instamojo.com/privacy/ Documentation: https://docs.instamojo.com/ Data Security: All payment data is transmitted securely using HTTPS encryption. Customer payment details (card numbers, etc.) are handled directly by the payment gateways and never stored on your WordPress site. User Consent: By using payment forms created with this plugin, users consent to their payment data being processed by the selected payment gateway according to that gateway’s terms and privacy policy. Requirements WordPress 5.0 or higher PHP 7.4 or higher MySQL 5.6 or higher SSL certificate (recommended for production) Configuration 1. Gateway Setup Go to FormPays Pro → Settings Select your preferred payment gateway Enter your gateway credentials: Razorpay: Key ID, Key Secret, Webhook Secret PayU: Merchant Key, Salt Key, Authorization Header 2. Create Your First Form Go to FormPays Pro → Forms → Add New Fill in form details (title, description, gateway) Add fields (Name, Email, Mobile, Amount, etc.) Set up conditional logic if needed Save the form 3. Embed the Form Use the generated shortcode in any post or page: [formpays_pro_payment_form id=”1″] Usage Creating Payment Forms Basic form structure: php $form_data = array( 'title' => 'Product Payment', 'description' => 'Complete your purchase', 'gateway' => 'razorpay', 'amount_type' => 'fixed', 'fixed_amount' => 999.00, 'currency' => 'INR', 'fields' => array( array( 'id' => 'name', 'label' => 'Full Name', 'type' => 'text', 'required' => true ), array( 'id' => 'email', 'label' => 'Email Address', 'type' => 'email', 'required' => true ), array( 'id' => 'mobile', 'label' => 'Mobile Number', 'type' => 'tel', 'required' => true ) ) ); Conditional Logic `php $conditional_logic = array( array( ‘field’ => ‘payment_type’, ‘operator’ => ‘equals’, ‘value’ => ‘business’, ‘action’ => ‘show’, ‘target’ => ‘company_name’ ) ); ` Payment Processing Form submission: `php add_action(‘wp_ajax_formpays_pro_submit_form’, ‘handle_payment’); add_action(‘wp_ajax_nopriv_formpays_pro_submit_form’, ‘handle_payment’); function handle_payment() { // Form data is automatically processed // Payment gateway is initialized // User is redirected to payment page } ` Webhook handling: php // Webhook endpoints are automatically created // /wp-json/formpays-pro/v1/webhook/razorpay // /wp-json/formpays-pro/v1/webhook/payu Transaction Management Get transaction: php global $formpays_pro; $transaction = $formpays_pro->transactions->get_transaction('TXN_123'); Update status: php $result = $formpays_pro->transactions->update_transaction_status( 'TXN_123', 'success' ); Customization Styling The plugin includes CSS classes for easy customization: css .formpays-pro-form-wrapper { /* Form container */ } .formpays-pro-field { /* Individual field */ } .formpays-pro-field-label { /* Field labels */ } .formpays-pro-field-input { /* Field inputs */ } .formpays-pro-submit-btn { /* Submit button */ } JavaScript Events `javascript // Form submission events jQuery(document).on(‘formpays_pro_form_submit’, function(e, formData) { // Custom handling before submission }); // Payment success events jQuery(document).on(‘formpays_pro_payment_success’, function(e, response) { // Custom handling after successful payment }); ` Hooks and Filters `php // Modify form data before processing add_filter(‘formpays_pro_form_data’, ‘modify_form_data’, 10, 2); // Custom payment validation add_filter(‘formpays_pro_validate_payment’, ‘custom_validation’, 10, 2); // Modify email content add_filter(‘formpays_pro_email_content’, ‘customize_email’, 10, 3); ` Testing Test Mode Both Razorpay and PayU support test mode: 1. Enable test mode in gateway settings 2. Use test credentials from your gateway dashboard 3. Test complete payment flow without real charges Test Cards Razorpay: * Success: 4111 1111 1111 1111 * Failure: 4000 0000 0000 0002 PayU: * Success: 4012 0000 0000 0000 * Failure: 4000 0000 0000 0002 Email Notifications Available Notifications Payment Success – Customer: Confirmation email to customer with transaction details Payment Success – Admin: Notification to admin about successful payment Payment Failed – Customer: Failure notification with retry information Payment Failed – Admin: Alert to admin about failed payment Email Template Customization Go to FormPays Pro → Email Notifications Customize email templates with dynamic placeholders: {transaction_id} – Transaction ID {amount} – Payment amount {customer_name} – Customer name {customer_email} – Customer email {payment_date} – Payment date and time {payment_method} – Selected payment method {form_title} – Form title {site_name} – Your site name Enable/disable individual email notifications Test email functionality to verify settings Customization `php // Modify email templates add_filter(‘formpays_pro_email_template’, ‘custom_email_template’, 10, 3); // Add custom notification recipients add_filter(‘formpays_pro_admin_emails’, ‘add_custom_emails’); ` Troubleshooting Common Issues Payment Not Processing: 1. Check gateway credentials 2. Verify webhook URLs are set correctly 3. Check server logs for errors 4. Ensure SSL is enabled (for live mode) Forms Not Displaying: 1. Check if form is published 2. Verify shortcode syntax 3. Check for JavaScript conflicts 4. Review browser console for errors Webhook Issues: 1. Verify webhook secret is correct 2. Check webhook URL accessibility 3. Review server logs for webhook failures 4. Test webhook endpoint manually Debug Mode Enable WordPress debug mode for detailed error logging: php // wp-config.php define('WP_DEBUG', true); define('WP_DEBUG_LOG', true); API Reference REST API Endpoints ` GET /wp-json/formpays-pro/v1/forms/{id} GET /wp-json/formpays-pro/v1/transactions/{id} POST /wp-json/formpays-pro/v1/webhook/{gateway} ` AJAX Actions `php // Form submission wp_ajax_formpays_pro_submit_form wp_ajax_nopriv_formpays_pro_submit_form // Admin actions wp_ajax_formpays_pro_save_form wp_ajax_formpays_pro_delete_form wp_ajax_formpays_pro_save_gateway_settings ` Contributing We welcome contributions! Please follow these steps: Fork the repository (https://github.com/sanyogs/formpays-pro) Create a feature branch Make your changes Add tests if applicable Submit a pull request License This plugin is licensed under the GPL v2 or later. Acknowledgments WordPress community for the amazing platform Razorpay and PayU for their excellent APIs All contributors and beta testers FormPays Pro – Making payment forms simple and powerful!
Top keywords
- payment67×4.43%
- form34×2.25%
- email25×1.65%
- formpays25×1.65%
- gateway24×1.59%
- formpays pro23×1.52%
- pro23×1.52%
- https22×1.45%
- com18×1.19%
- data18×1.19%
- payments16×1.06%
- service15×0.99%
Yoast SEO – Advanced SEO with real-time guidance and built-in AI
Real-time SEO guidance, schema, and AI built in. Help search engines and AI systems understand your content. All AI tools included, no hidden fees. Yoast SEO: the #1 WordPress SEO plugin Since 2008, Yoast SEO has helped site owners get their content found. More than 10 million websites now run it, from small local businesses to some of the most visited sites on the web. Our mission is SEO for everyone. You should not need a specialist, a big budget, or a technical background to give your content a fair chance of being discovered. Yoast SEO gives you everything you need to manage your on-site SEO. The Yoast SEO Premium plugin and its extensions unlock more advanced and AI-powered tools. Ready for search, and ready for AI People no longer only type queries into Google. They ask AI assistants, and those answers are built from content the AI has crawled, understood, and trusted. Yoast SEO helps you prepare for both. Schema.org structured data, so search engines and AI systems can understand what your content is actually about. Premium outputs significantly more schema types, including the E-E-A-T signals (experience, expertise, authoritativeness, and trustworthiness) that help AI systems understand who you are. Schema aggregation for NLWeb (Premium), which combines your site’s structured data into a single, deduplicated graph, so AI agents get a complete picture of your content in one request. Turn it on with a single toggle. LLMs.txt management, to guide how large language models interact with your content, including manual control over which pages are included. Bot blocker (Premium), to control which AI crawlers can use your content for training, including GPTBot, CCBot, and Google-Extended. Abilities API, so AI tools, dashboards, and automated workflows can read your SEO, readability, and inclusive language scores directly. Algorithm changes have been arriving for over 15 years, and Yoast has tracked every one of them. Keeping the plugin updated means you benefit from ongoing technical improvements, schema updates, and AI advancements automatically, all guided by our signature traffic light approach. Real-time guidance while you write SEO is one of the most consistent and cost-effective sources of website traffic, though it can be complex. Whether you are just starting out or you have done this for years, Yoast SEO tells you what to fix before you publish, not after. Red, orange, green. That is the whole idea. You get in-depth content and readability analysis that helps you create content designed to perform well in search, without needing to learn a new discipline first. Quick and easy setup Setting up Yoast SEO is quick and straightforward. No technical background required. Our step-by-step configuration wizard walks you through the essentials, so Yoast SEO can generate accurate structured data that helps search engines understand your site. Switching from another SEO plugin? Migration is seamless. You can import your existing SEO data and settings safely with our built-in import and export tools. AI tools built into your workflow Yoast’s AI tools come with Yoast SEO Premium, and they sit inside the editor you already use. There is no separate AI subscription, no extra login, and no credit top-up to buy. Every suggestion waits for your approval before anything saves. Yoast AI Generate: creates five SEO-friendly titles and meta descriptions instantly, with one-click regeneration for more options. Yoast AI Optimize: suggests improvements to keyphrase placement, including introduction, distribution, and density, with the option to apply or dismiss each edit. Yoast AI Summarize: generates a quick summary of your post to place anywhere in the block editor, so readers grasp the value fast. Yoast AI Content Planner (Premium): suggests five site-specific post ideas and builds a structured starter draft the moment you open a new post. Ideas are grounded in your own site, not generic topics, so your team never begins from a blank page. Bulk editor with AI drafts: review and fix titles, meta descriptions, and focus keyphrases across your whole site from one workspace, with search and status filters and a dedicated view per content type. The bulk editor is free. With Premium, select what needs work and AI drafts the metadata, including social sharing titles and descriptions, for you to approve. All AI tools included: no extra accounts, no separate credit purchase, no hidden costs. Content analysis and optimization SEO analysis to guide your keyword targeting, with up to 5 keyphrases in Premium and support for 20+ languages. Readability analysis for clear, engaging, user-friendly writing. Inclusive language analysis, so your content is more considerate and accessible. SERP previews for both desktop and mobile results. HowTo and FAQ blocks with built-in schema support. Breadcrumbs block for improved navigation. Semrush integration for keyword research directly inside Yoast SEO. Wincher integration to track keyword performance from your dashboard. Elementor integration for optimization inside your favorite builder. Technical SEO, handled for you Yoast SEO takes care of much of your site’s technical SEO automatically, which frees you to focus on your content. Automated meta tag optimization right out of the box. Canonical URLs to prevent duplicate content issues. Advanced XML sitemaps for clear site indexing. Deep Schema.org integration to improve how search engines and AI systems understand your site. Complete breadcrumb control for visitors and crawlers. Performance improvements that help reduce load times. Crawl settings to manage how bots access your site and reduce unnecessary server load. Every update delivers ongoing technical SEO enhancements automatically. Keep your website in perfect shape Whether you are a creator, a business owner, or a developer, Yoast SEO helps you maintain your site’s SEO health: Cornerstone content tools to organize and prioritize your key pages. Front-end SEO inspector to view and edit titles, descriptions, and schema live. SEO roles to delegate plugin access securely across your team. Regular 2-week update cycle, so you stay compatible with the latest SEO standards and search engine changes. Powerful integrations Yoast SEO works seamlessly with popular WordPress tools: Google Site Kit: access insights from Search Console, Analytics, and PageSpeed inside WordPress. Advanced Custom Fields (ACF): combine with ACF Content Analysis for Yoast SEO for advanced field optimization. Elementor: use full Yoast SEO functionality inside Elementor’s editor. Algolia: improve internal search accuracy and performance. Semrush: discover and optimize for high-value keywords. Wincher: track keyword positions and trends in Google Search. Jetpack: manage SEO and social previews in one place. Easy Digital Downloads (EDD): improve digital product visibility with integrated schema. Mastodon: verify your website on Mastodon with Yoast SEO Premium. WooCommerce: optimize ecommerce SEO with the dedicated WooCommerce extension. Yoast SEO Premium: AI-powered SEO for WordPress Yoast SEO Premium builds on everything above with advanced automation, AI tools, and professional support. It helps you optimize efficiently for both traditional search and AI-driven discovery. What it helps you tackle: Keeping pace with algorithm changes and AI search. Reaching the right audience. Automating redirects, crawl controls, and internal linking. Finding orphaned content and improving your site structure. Getting expert help when you need it. Premium highlights: AI-generated titles and meta descriptions, page by page or in bulk. AI Content Planner, so you never open a blank page. Smart internal linking suggestions to strengthen your site structure. Social previews for Facebook and X. Redirect manager with bulk tools, CSV import and export, and automatic prompts when you move or delete content. Bot blocker for AI crawlers, including GPTBot, CCBot, and Google-Extended. Schema aggregation for NLWeb, plus significantly more schema types than free. IndexNow integration, so search engines hear about your updates the moment you publish. Front-end SEO inspector for real-time editing. SEO workouts for orphaned and cornerstone content. Task list, unlocked in full, showing what to work on next with priority levels and time estimates. Google Docs add-on, so writers can run the full Yoast analysis before content ever reaches WordPress. One seat included. 24/7 premium support from SEO specialists. Included at no extra cost: Yoast Local SEO: help nearby customers find you, with local schema, a store locator, and opening hours management. Yoast Video SEO: help Google understand your videos, with video sitemaps and schema. Yoast News SEO: help your news content get discovered in Google News and Top Stories. Yoast WooCommerce SEO: advanced SEO for online stores Yoast WooCommerce SEO builds on Yoast SEO Premium with ecommerce-specific tools for your store’s visibility. Key ecommerce features: WooCommerce-specific XML sitemap that excludes non-shopping content. Product structured data for rich results, including price, reviews, and availability. Canonical URL management to prevent duplicates. Ecommerce-focused content analysis for GTINs, SKUs, and short descriptions. AI Generate for ecommerce: optimized titles and meta descriptions for product and category pages, at page level or drafted in bulk for products and categories. What that gets you: Better product visibility through automated structured data. More efficient crawling for large catalogs. Time saved through metadata templates and automation. Metadata across your whole catalog without editing rows one at a time. Built for WooCommerce, trusted by thousands of online stores worldwide. For developers Yoast SEO is built with developers in mind. With modern APIs, hooks, and a unified indexables system, you can extend or integrate SEO functionality across custom themes, plugins, or headless setups. REST API Retrieve SEO metadata for any post or URL, including meta tags, Open Graph, Twitter Cards, and Schema.org data. Learn more about the REST API. Surfaces API Access SEO data directly in code via YoastSEO()->meta->for_current_page(). Supports titles, descriptions, canonicals, and schema. Read the Surfaces API documentation. Metadata API Use the Metadata API to filter, override, or extend meta tags with WordPress hooks such as wpseo_title, wpseo_metadesc, and wpseo_canonical. Schema API The Schema API lets you modify or extend Schema.org graph pieces, including Article, Organization, Person, Breadcrumb, and WebPage entities. Abilities API integration Let AI tools, dashboards, and automated workflows read Yoast SEO data programmatically, including SEO, readability, and inclusive language scores for recent posts. Block editor compatibility Yoast SEO integrates directly with the WordPress block editor. It outputs schema for HowTo and FAQ blocks by default, and you can extend schema for custom blocks. Indexables At the core of Yoast SEO lies the indexables system, unifying all SEO data for faster queries and consistent metadata across outputs. Ongoing support and education Yoast is powered by expert developers, testers, and SEO specialists who keep improving the plugin. We are committed to helping you grow your SEO skills: Yoast SEO Academy: free and premium SEO courses, included in all paid plans. Yoast SEO blog, newsletter, and webinars. Yoast SEO Update podcast for the latest SEO insights. Bug reports on GitHub, for issue tracking rather than support. Yoast SEO: built to make search optimization accessible, reliable, and ready for the future of AI search.