توضیحات
Attribute Icon for WooCommerce extends the WooCommerce attribute system with icon support. Each attribute (Color, Size, Material, etc.) gets a native WordPress media uploader field. Upload an icon — it appears before the attribute label on the single product page.
Feature summary:
- Icon upload field on every attribute — add and edit screens.
- Icon column in the attribute list table.
- Frontend display via
woocommerce_attribute_labelfilter (automatic). - Template helpers for custom themes —
render_image()andget_image_html(). - No configuration. Activate and every attribute gets the field.
- Uses WordPress media library — no custom uploader, no external dependencies.
عکسهای صفحه




نصب
- Upload the plugin folder to
/wp-content/plugins/or install via Plugins > Add New. - Activate the plugin. WooCommerce must be active.
- Edit any attribute (Products > Attributes > Edit). An icon upload field appears.
سوالات متداول
-
Does this work with custom themes?
-
Yes. If your theme uses
wc_display_product_attributes()orwoocommerce_attribute_label, icons appear automatically. For custom templates, use the static helpers:`use AttrIconWoo\AttributeFrontend;
echo AttributeFrontend::get_image_html( $attribute_id, ‘thumbnail’, ‘Color’ );
` -
Where is the icon stored?
-
The image attachment ID is stored in
wp_optionsunder the keyattricfo_attribute_image_{id}. The actual file uses the WordPress media library. -
What happens when I deactivate?
-
Icons stop displaying on the frontend. Options are preserved — reactivate and icons return. No data loss.
-
What happens when I delete the plugin?
-
All
attricfo_attribute_image_*options are removed. Deleting via the Plugins screen runs the uninstall routine.
نقد و بررسیها
نقد و بررسیای برای این افزونه یافت نشد.
توسعه دهندگان و همکاران
“Attribute Icon for WooCommerce” نرم افزار متن باز است. افراد زیر در این افزونه مشارکت کردهاند.
مشارکت کنندگانترجمه “Attribute Icon for WooCommerce” به زبان شما.
علاقه مند به توسعه هستید؟
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
گزارش تغییرات
1.0.0
- Initial release.
- Admin icon field on attribute add/edit screens.
- Icon column in attribute list table.
- Frontend display via
woocommerce_attribute_labelfilter. - Template helpers for custom theme integration.
- Uninstall cleanup of options.