• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Resolved CustomButtons order

jimlongo56

Basic Pleskian
Is there no way to order CustomButtons that are in the Toolbar. "order" seems to have no effect. The button always appears first.

And is there a way to assign an ID. it seems to always be id=[0].

Code:
            'place' => [self::PLACE_TOOLBAR],
            'order' => 4,

Thanks.
 
I found a hack that helped, here it is in case anyone is looking for something similar.
Using the param 'id' will change the id=[0].
At this point the button goes last in the toolbar not first.
Any ID will do the same thing, there doesn't seem to be any logic or ordering going on.


Code:
            'place' => [self::PLACE_TOOLBAR],
            //'order' => 1,
            'id' => 'aaaaaaaa',



without this hack the html looks like this and puts my Get Started button first
Code:
    <ul class="dropdown-menu pull-right">
        <li style="display: none;"><a id="0" href="" class="my-button"> Get Started</a></li>
        <li style="display: none;"><a id="buttonAddDomain" href="/smb/web/add-domain" class=""> Add Domain</a></li>
        <li style="display: none;"><a id="buttonAddSubDomain" href="/smb/web/add-subdomain" class=""> Add Subdomain</a></li>
        <li style="display: none;"><a id="buttonAddDomainAlias" href="/smb/web/add-domain-alias" class=""> Add Domain Alias</a></li>
    </ul>


If I change the id it now appears last in the list
Code:
    <ul class="dropdown-menu pull-right">
        <li style="display: none;"><a id="buttonAddDomain" href="/smb/web/add-domain" class=""> Add Domain</a></li>
        <li style="display: none;"><a id="buttonAddSubDomain" href="/smb/web/add-subdomain" class=""> Add Subdomain</a></li>
        <li style="display: none;"><a id="buttonAddDomainAlias" href="/smb/web/add-domain-alias" class=""> Add Domain Alias</a></li>
        <li style="display: none;"><a id="aaaaaaaaMYBUTTON" href="" class="my-button"> Get Started</a></li>
    </ul>
 
Last edited:
Back
Top