I have buttons on the home page of the website hidden link
These buttons have the bootstrap class defined as follows:
[wpv-filter-submit name="GO" type="button" output="bootstrap" class="btn btn-primary btn-lg"]
Until the recent plugin upgrades this code worked fine and the styling for "btn-primary" meant that the buttons were blue (#337ab7). After the plugin upgrades the buttons are now an off white (#e0eef2).
The reason for this is that additional classes have been added to the outputted code:
<button type="submit" class="btn btn-primary btn-lg wpv-submit-trigger js-wpv-submit-trigger btn btn-secondary">GO</button>
The presence of the "btn-secondary" in the class is overriding the "btn-primary" that I have specified.
Could you please explain what is going on and if there is a way for me to prevent the "btn-secondary" from being added to the class?
I've upgraded my development site today and unfortunately this issue does not appear to have been resolved. "btn-secondary" is still being inserted into the css.
Apologies, I just checked the version number and I'm still on 3.1.3. There's no update available within the plugin management interface in WordPress. Is there a delay between release and when the update will appear in WordPress as being available?