Magento extension Product urlkey from any attribute by Designcomplex

MageCloud partnered with Designcomplex to offer Product urlkey from any attribute in your MageCloud panel for our simple 1-click installation option. To install this extension - create your account with MageCloud and launch a new Magento store. It takes only 3 minutes.

Designcomplex always provides support for customers who have installed Product urlkey from any attribute Magento module. Feel free to leave a review for the company and the extension so we can offer you better products and services in the future.

You may want to check other Designcomplex Magento extensions available at MageCloud and even get extensions from hundreds of other Magento developers using our marketplace.

autofill urlkey with attributes like manufacturer, name, sku, custom attributes, etc. on product save

Compatible with Magento 1.x

Product urlkey from any attribute

With this extension you can manage an autofill of the urlkey from all possible attributes

IMPORTANT!
This extension requires file modification for customization.

Standard setup is:
manufacturer-name-sku

To modify the setup you need to change the following lines in
/app/code/community/Designcomplex/Model/Observer.php

/* Manufacturer added to urlkey */
if(!is_null($Product->getData('manufacturer'))):
$Url=$Url.$Product->getAttributeText('manufacturer').'-';
endif;
/* Name added to urlkey */
if(!is_null($Product->getData('name'))):
$Url=$Url.$Product->getData('name');
endif;
/* SKU added to urlkey */
if(!is_null($Product->getData('sku'))):
$Url=$Url.$Product->getData('sku').'-';
endif;

If there are any questions, please let me know

If there are people out who could help with system.xml and AdminOptions for this extension, please also let me know and help the community to have a better user interface.