Admin Columns
Admin Columns lets you customize and organize the columns displayed in the WordPress admin list tables for posts, pages, users, comments and media. Instead of the limited default list table, you get to display the information you actually need – like custom fields, featured images, taxonomies, file data and more. Trusted by 100,000+ WordPress sites worldwide. With a simple drag-and-drop interface you can: Add any column to posts, pages, users, media and comments Reorder and resize columns to match your workflow Choose from 200+ column types including custom fields, taxonomies and file data Display rich metadata such as images, dates, colors and relational fields Create clean overviews for even the most complex websites It works for any site from simple blogs to large WooCommerce stores. Why Admin Columns? Default WordPress list tables are limited. They often show only the title, author and date. Admin Columns turns them into useful management screens that show you what matters. Examples: See featured images, custom fields and taxonomies directly in the post list table Display media file size, dimensions or EXIF data View user metadata and roles in the users screen Keep track of large content libraries Popular use cases Admin Columns is used by developers, agencies and site owners to manage content more efficiently. Common setups: Managing WooCommerce products with price, SKU or stock columns Displaying ACF custom fields in post list tables Organizing large media libraries Reviewing SEO metadata from Yoast Organizing custom post types with the right columns Built for developers Admin Columns is open source and built to be extended. Use actions and filters to register custom column types, modify output or integrate with your own plugins. Full hooks and filters reference for custom integrations Register column configurations in PHP for version-controlled setups Designed to work alongside page builders, custom post type plugins and third-party extensions Explore the developer documentation. Admin Columns Pro Upgrade to Admin Columns Pro for sorting, filtering, inline editing and more. With Pro you can: Sort any column Filter content with stackable smart filters Inline editing – edit titles, custom fields, taxonomies and more directly from the list table Bulk editing – update multiple items at once Conditional formatting – color-code rows and cells based on rules Export to CSV Import/export column sets between sites or team members Save to PHP for version-controlled column configurations Admin Columns Pro also provides deep integrations with popular plugins: Advanced Custom Fields – display and edit all field types WooCommerce – product and order columns Yoast SEO – SEO score and metadata columns Toolset Types – custom fields and relationships Pods – Pods fields and content types Learn more about the additional features of Admin Columns Pro on our website: Upgrade to Admin Columns Pro Supported content types Admin Columns works with the following WordPress admin screens: Posts, Pages and Custom Post Types Users Media Library Comments Taxonomies (Pro) Custom field column Admin Columns allows you to display custom fields (post meta and user meta) directly in the admin list table. Supported field formats include: Color Date Images Number Text URL True/False Relational: Posts, Users and Media Docs & Support Is this your first time using Admin Columns? Check out our documentation and guides: Documentation Getting Started Developer documentation Need help? Please visit the Admin Columns support forums. Contribute Admin Columns is open source and community-driven. There are several ways to contribute: Translate: Help translate Admin Columns on WordPress.org or Pro translations on Transifex Report issues: Found a bug? Report it on GitHub Suggest features: Submit ideas to our public roadmap
Top keywords
- columns22×3.76%
- admin19×3.25%
- admin columns16×2.74%
- custom14×2.39%
- fields10×1.71%
- column8×1.37%
- custom fields8×1.37%
- pro8×1.37%
- types8×1.37%
- list7×1.20%
- media6×1.03%
- post6×1.03%
Wemono Abandoned Cart Recovery for WooCommerce
Wemono Abandoned Cart Recovery for WooCommerce helps recover potentially lost sales by tracking abandoned checkouts and restoring carts when users return. The plugin works automatically after activation and also provides REST API endpoints that let you fetch abandoned checkout lists and summary statistics for integration with your CRM, marketing, or notification tools. Key features: – Abandoned cart tracking for guests and logged-in users – Automatic cart persistence and restoration across sessions – WooCommerce REST API–authenticated endpoints to fetch cart data and statistics – Lightweight and privacy‑aware: stores cart data in your site’s database For more information, visit Wemono. For documentation, visit Wemono Documentation. Configuration The plugin works out‑of‑the‑box without configuration. Defaults: – Abandoned timeout: 2 hours (a cart is considered abandoned if not updated for 2 hours) – Pagination: _offset=0, _limit=200 for REST responses These can be overridden per request via REST API query parameters (see Usage). Server‑side defaults are defined in includes/WemonoRestAPIConfig.php. Usage After activation, cart tracking is automatic. To integrate with external systems, use the REST API. Generate WooCommerce API keys Go to WooCommerce > Settings > Advanced > REST API. Click Add key, give it a description, select a user with manage_woocommerce capability (e.g., Administrator), and choose Read or Read/Write as needed. Copy the Consumer Key and Consumer Secret. REST API base All endpoints are under: https://yourstore.com/wp-json/wc-wemono/v1/ Authentication: Use the WooCommerce REST API Consumer Key and Secret via Basic Auth over HTTPS or as query parameters (ck_…/cs_…). Endpoints require authentication and proper capability. Requests without valid credentials will be rejected. Quick testing scenarios Use these simple steps to manually test the plugin end‑to‑end. 1) Verify abandoned checkouts endpoint with timeout=0 (for testing) – Log in to your shop (optional), add a few products to the cart, but do not place an order. – Call the endpoint with _timeout=0 to treat any idle cart as abandoned for testing: curl -u ck_your_key:cs_your_secret \ “https://yourstore.com/wp-json/wc-wemono/v1/abandoned-checkouts?_timeout=0&_limit=10” Expected: a JSON array with at least one record for your current cart. Each record includes enriched products, totals, and an abandoned_checkout_url. 2) Check cart recovery after WooCommerce session close – Logged‑in user: Log in, add items to cart, then log out (or clear cookies woocommerce_cart_hash, woocommerce_items_in_cart, wp_woocommerce_session_*). Log back in and open the cart page. Expected: previous cart contents are restored. – Guest user: In a private window, add items to cart. Close the private window (deleting the session). Open a new private window and revisit the store. Expected: the previous cart may be restored based on session behavior, and the cart will appear via the API. Optional API checks: – Before closing the session: curl -u ck_your_key:cs_your_secret \ “https://yourstore.com/wp-json/wc-wemono/v1/abandoned-checkouts?_timeout=0&_limit=5” After recovery or after completing checkout, show completed carts: curl -u ck_your_key:cs_your_secret \ “https://yourstore.com/wp-json/wc-wemono/v1/abandoned-checkouts?is_completed=true&_limit=5” Notes: _timeout overrides the default 2‑hour threshold for testing. Always use HTTPS in production when sending API keys. Endpoints 1) GET /abandoned-checkouts – Returns a list of abandoned checkouts with enriched product details and cart summary. – Query parameters: – _order_dir: ASC or DESC (default: DESC by updated_at) – _offset: integer, default 0 – _limit: integer, default 200 – _min_id: integer, filter records with id > value – _max_updated_at: unix timestamp, include records updated before this time – _min_created_at: unix timestamp, include records created after this time – _timeout: seconds, override abandoned timeout (default 7200 seconds) – has_phone: true/false, only results with a customer phone when true – is_completed: true/false/all (default: false). By default only non‑completed checkouts are returned. 2) GET /abandoned-checkouts/with-phone – Same as /abandoned-checkouts but automatically filters to results that include a phone number. 3) GET /cart-statistics – Returns aggregate statistics about abandoned carts (e.g., totals, carts with phone, last 24h, average age). Example requests Curl with Basic Auth (recommended over HTTPS): Fetch latest 50 non‑completed abandoned checkouts: curl -u ck_your_key:cs_your_secret \ “https://yourstore.com/wp-json/wc-wemono/v1/abandoned-checkouts?_limit=50” Fetch checkouts with a phone updated before a timestamp: curl -u ck_your_key:cs_your_secret \ “https://yourstore.com/wp-json/wc-wemono/v1/abandoned-checkouts?has_phone=true&_max_updated_at=1730000000” Fetch statistics: curl -u ck_your_key:cs_your_secret \ “https://yourstore.com/wp-json/wc-wemono/v1/cart-statistics” If you prefer query parameter authentication (ensure HTTPS): https://yourstore.com/wp-json/wc-wemono/v1/abandoned-checkouts?consumer_key=ck_your_key&consumer_secret=cs_your_secret