Publisher does not support the Fluid field type. Please do not contact asking when support will be available.
If you purchased an add-on from expressionengine.com, be sure to visit boldminded.com/claim to add the license to your account here on boldminded.com.
Ticket: Wrong tab is hidden on entry edit page
Status | Resolved |
Add-on / Version | Publisher Lite 3.9.1 |
Severity | |
EE Version | 7.2.9 |
Andrew Gunstone
Feb 13, 2023When you have more than 9 tabs on an entry page, then the first tab is hidden rather than the Publisher tab. For example, the Publisher tab was “t-11” in one Channel, but it removed “t-1”.
The fix is very simple. In “tab.publisher.php” ... change line 123 from:
var tabId = tabClass.match(/t-(\d)/);
to:
var tabId = tabClass.match(/t-(\d+)/);
Cheers.
BoldMinded (Brian)
Feb 14, 2023
Ah, thanks for pointing this out. I’ll make the change.