Rename module to AdminOrderColumns and add thumbnail removal

Major changes:
- Renamed module from OrderItemsCustom to AdminOrderColumns for clarity
- Added CSS to hide product thumbnails in order items view
- Updated all namespaces from Shopkeeper\OrderItemsCustom to Shopkeeper\AdminOrderColumns
- Updated composer package name to shopkeeper/module-admin-order-columns
- Bumped version to 1.1.0
- Added layout XML and CSS files for thumbnail removal
- Updated all documentation and installation instructions

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
shopkeeperdev
2025-11-11 09:06:37 -05:00
parent 0df62bfa79
commit fbc0d17cae
9 changed files with 61 additions and 28 deletions

View File

@@ -2,13 +2,13 @@
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<type name="Magento\Sales\Block\Adminhtml\Order\View\Items\Renderer\DefaultRenderer">
<plugin name="shopkeeper_order_items_custom"
type="Shopkeeper\OrderItemsCustom\Plugin\Order\View\Items\Renderer\DefaultRenderer"
<plugin name="shopkeeper_admin_order_columns_renderer"
type="Shopkeeper\AdminOrderColumns\Plugin\Order\View\Items\Renderer\DefaultRenderer"
sortOrder="10"/>
</type>
<type name="Magento\Sales\Block\Adminhtml\Order\View\Items">
<plugin name="shopkeeper_order_items_columns"
type="Shopkeeper\OrderItemsCustom\Plugin\Order\View\ItemsColumns"
<plugin name="shopkeeper_admin_order_columns"
type="Shopkeeper\AdminOrderColumns\Plugin\Order\View\ItemsColumns"
sortOrder="10"/>
</type>
</config>

View File

@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Shopkeeper_OrderItemsCustom" setup_version="1.0.0">
<module name="Shopkeeper_AdminOrderColumns" setup_version="1.0.0">
<sequence>
<module name="Magento_Sales"/>
</sequence>