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%
Trusted Shops Easy Integration for WooCommerce
The well-known Trustmark, the Buyer Protection and the authentic reviews from Trusted Shops have stood for trust for over 20 years. More than 30,000 online shops throughout Europe use our Trust solutions for more traffic, higher sales and better conversion rates. Trusted Shops Easy Integration is the easiest and fastest way to convince visitors of the trustworthiness of your online shop. The simple installation guarantees product use in just 5 minutes and usually requires little to no prior technical knowledge. With our extension you are always technically up to date and have no additional maintenance effort. Your benefit: With just a few clicks, visitors to your online shop can see trust elements such as the Trustbadge or other on-site widgets, can benefit from buyer protection and are automatically asked for feedback after placing an order. All features at a glance: Show Trustbadge, integrate Buyer Protection & collect shop reviews Present your collected reviews in an appealing and sales-boosting way Collect and display Product Reviews Configure multiple shops within the same plugin Please note: To use the extension Trusted Shops Easy Integration, you need an existing Trusted Shops membership. You can find out more about the products and benefits of Trusted Shops on our website or by calling: +44 23364 5906 Overriding templates Templates may be overridden in a (child-) theme. Overriding the templates/widgets/product-widget.php template in your theme by placing the original file in the following directory: my-child-theme/woocommerce/widgets/product-widget.php. Product attributes Brand WooCommerce does by default not provide a global brand attribute/setting for products. The Package::get_product_brand() method determines the brand for a certain product. By default, the logic searches for an attribute stored within the product data matching the keyword Brand (or a translated version of it). One might easily adjust the brand attribute name by using the filter ts_easy_integration_product_brand_attribute_name. E.g.: `php add_filter( ‘ts_easy_integration_product_brand_attribute_name’, function( $attribute_name, $product ) { // Maybe adjust the $attribute_name based on the WC_Product $product return $attribute_name; }, 10, 2 ); ` Additionally the filter ts_easy_integration_product_brand is provided which allows filtering the actual brand per product. `php add_filter( ‘ts_easy_integration_product_brand’, function( $brand, $product ) { // Maybe adjust the $brand based on the WC_Product $product return $brand; }, 10, 2 ); ` GTIN, MPN, SKU The plugin uses product identifiers, which might not be provided by the Woo core (e.g. GTIN, MPN) for widgets, order exports and the Trustcard. GTIN and MPN fields are provided through the WooCommerce edit product panel and stored as meta data, using the meta_key _ts_gtin and _ts_mpn. Similar to the brand attribute, Package::get_product_gtin(), Package::get_product_mpn() and Package::get_product_sku() are used to retrieve the data. Filters exist to adjust the attributes: ts_easy_integration_product_gtin ts_easy_integration_product_mpn ts_easy_integration_product_sku Example filter-usage to adjust the GTIN: `php add_filter( ‘ts_easy_integration_product_gtin’, function( $gtin, $product ) { // Maybe adjust the $gtin based on the WC_Product $product return $gtin; }, 10, 2 ); ` Technical Insights More technical insights in the Github Repository readme.md Minimal Requirements WordPress 4.9 or newer WooCommerce 3.9 (newest version recommended) PHP Version 5.6 or newer