Blesta Addons Posted June 3, 2017 Report Posted June 3, 2017 when we set a class for the widget in admin side, the widget class is not adding the set class to the default class . this is because a wrong addintion array are set . the fix to change // Set the attributes, don't allow overwriting the default class, concat instead if (isset($attributes['class']) && isset($default_attributes['class'])) { $attributes['class'] .= ' ' . $default_attributes['class']; } to // Set the attributes, don't allow overwriting the default class, concat instead if (isset($attributes['class']) && isset($default_attributes['class'])) { $default_attributes['class'] .= ' ' . $attributes['class']; } widget helper class. MiikaaQC 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.