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%
Order Tip for WooCommerce
Order Tip for WooCommerce is a plugin that allows customers to add a tip or donation to a WooCommerce order. The tip is added under the form of a WooCommerce fee. It allows the tip to be a percentage of the order total or a fixed custom amount. Cash tip is also available which marks the tip as 0 in value, but you should expect a tip on the delivery of your products or on the pickup of the order by the customer. There is also an option for adding a custom tip which brings up a text field where the customer is able to type in a custom amount and which is subsequently added as a fixed amount to the order. The tip can also be set to be taxed or not as per your current Tax options set in WooCommerce. It features 6 standard tip rates (5, 10, 15, 20, 25, 30) that can be extended through a filter – see below under the Developers section. It features various configuration options in the WooCommerce Settings panel under the tab Order Tip. The plugin’s backend is translated in German, Swiss German, Spanish, French, Italian, Romanian. Dutch language support was added, thanks to Roel Mehlkopf (@mhlkpf). Check out a demo here: Live Preview Check out a video on installing and using the plugin Important Notes The plugin works out of the box, with no coding skills required on basically any theme. However, it uses JavaScript for adding the tip to the order. If for some reason it doesn’t work as expected, please check your browser’s console for any JS errors or drop a line here in the Support tab providing a link to your website. Websites using the Astra or Neve theme should avoid using the “After customer details position” to display the tip form. It may break the layout causing the order review sidebar to fall under the customer details one. Developers There are a couple of filters you can hook into should you need to extend or edit the core functionality: wc_order_tip_title – takes in 1 string variable which holds the title of the form which appears before the form; wc_order_tip_rates – takes in 1 array variable which holds the values of the predefined standard tip rates. You should return a simple array containing the values you wish to add. Eg: array( 10, 15, 30 ); And a few other filters for changing various strings dynamically, from a different plugin or the active theme: wc_order_tip_title – changes the tip form title; wc_order_tip_cash_label – changes the Cash tip button label; wc_order_tip_custom_label – changes the Custom tip button label; wc_order_tip_custom_enter_tip_placeholder – changes the Custom tip field placeholder; wc_order_tip_display_form – prevents the tip form from being displayed on the page. And one filter for the backend: wc_order_tip_reports_date_time_format – allows changing the date format of the reports order created date/time. The format needs to comply with the PHP date format. See more here CSS classes and IDs that allow customization: #wooot_order_tip_form – main form container #wooot_order_tip_form button.woo_order_tip – regular tip buttons #wooot_order_tip_form button#woo_order_tip_cash – cash tip button #wooot_order_tip_form button#woo_order_tip_custom – custom tip button #wooot_order_tip_form p.woo_order_tip_custom_text_field – row for the custom tip input box #wooot_order_tip_form input.woo_order_tip_custom_text – custom tip input box #wooot_order_tip_form button.woo_order_tip_apply – tip apply button #wooot_order_tip_form button.woo_order_tip_remove – tip remove button