Skip to content

Instantly share code, notes, and snippets.

@jabberdog
Forked from bizlift/configurable.phtml
Created February 23, 2019 12:01
Show Gist options
  • Save jabberdog/e339d9b97f414fc5f5fbe132c3ed4be6 to your computer and use it in GitHub Desktop.
Save jabberdog/e339d9b97f414fc5f5fbe132c3ed4be6 to your computer and use it in GitHub Desktop.
Magento configurable product default options by attribute label
Product.Config.prototype.fillSelect = Product.Config.prototype.fillSelect.wrap(function(superMethod, element){
var attributeId = element.id.replace(/[a-z]*/, '');
var attribute = this.config.attributes[attributeId];
this.config.chooseText = 'Select ' + this.config.attributes[attributeId].label;
return superMethod(element);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment