Support Forum
Support › Meta Box AIO › Idea: Include links to Docs in AIO settings?Resolved
Hello Anh & MB team--
I find myself frequently searching for the docs, or plugin page, or support form pages for a particular plugin. For myself, I modified the AIO settings page by adding these links to the page for each plugin. It's been really helpful for me. I'm offering it here if it helps anyone else.
In the AIO JS: /wp-content/plugins/meta-box-aio/js/aio.js
on the line above the final closing curly brace (near line 60 or so) I've added the following JS:
let allInputs = document.querySelectorAll('.extension-list li input');
allInputs.forEach(function(el,i){
let info = <code><a href="https://metabox.io/plugins/${el.getAttribute('value')}" target="_blank">INFO</a></code>;
let docs = <code><a href="https://docs.metabox.io/extensions/${el.getAttribute('value')}" target="_blank">DOCS</a></code>;
let forum = <code><a href="https://support.metabox.io/forum/${el.getAttribute('value')}" target="_blank">FORUM</a></code>;
let links = <code><small style="opacity:0.6;"> ${info} / ${docs} / ${forum} </small></code>;
el.parentNode.insertAdjacentHTML('afterend', links);
});
This adds (INFO/DOCS/FORUM) links for each extension.
Some problems with this:
No reply needed, just contributing what I've done if it's helpful for others.
--bp
That’s awesome! Thanks a lot for your idea and the code!
Hi, I've just released a new version for Meta Box AIO, which has a complete redesign for the settings page. It now includes all links to the docs, forums. Please try it.