Hi there nerd... don't fear to ask questions dude!
If you click RMB (right mouse button) on any toolbar and select the Customize context menu option... this puts you into 'Customize mode' . Once there, you can minmize the Customize dialog and still navigate through folders... and as you find the ones you're interested in, drag and drop the folders to whatever toolbar you want. This automatically creates a button for each folder you drop onto the toolbar. Each button runs the command Go "drive:\path\to\folder" where the drive and path info is obviously specific to whatever folder you've selected...
Also, while still in customize mode... try copying the exact text inside this 'code' box, then click RMB somewhere on a toolbar and select the Paste option from the context menu.
<?xml version="1.0"?>
<button display="label" effect="gray" field_type="filter" size="297">
<guid>{A1E7C6C1-6D49-446F-A357-91E9ECE42891}</guid>
<label>Filter</label>
<tip>Directly enter a wildcard pattern to filter files visible in the current Lister</tip>
<template>realtime</template>
<icon1>0</icon1>
<function type="normal">
<instruction>Set FILTER</instruction>
</function>
</button>
This will create a dynamic file and folder 'filter' field on your toolbar which will let you type whatever you want into it to 'show' only files which match the pattern you've typed.
Otherwise, you might like to go with something like:
<?xml version="1.0"?>
<button display="both" effect="gray" icon_size="large">
<guid>{277804AA-9D6C-44C3-A82F-475FE761903D}</guid>
<label>Show PDF files only</label>
<tip>Show PDF files only</tip>
<icon1>43</icon1>
<function type="normal">
<instruction>Set SHOWFILTERFILENAME *.pdf</instruction>
</function>
</button>
This will create a button that you can click that will just filter/show PDF files automatically. Clicking the button again will return your view to normal...
You'll have to first 'Close' the Customize dialog to actually use any of these buttons/fields... and once you do clicking on any of the folder buttons you dragged to your toolbar will make Opus take you to those folders (that's what the internal 'Go' function does which the buttons run).
There are other ways to do all this, but the steps above show you two quick 'shortcuts' for creating buttons on a toolbar. Similar to dragging 'folders' to a toolbar while in Customize mode... dragging an application (executable) to a toolbar creates a 'shortuct' to that application. You can also drag a regular windows shortcut to the toolbar, but then that's an unnecessary 'shortcut' to a shortcut .
Reply back if you have any questions and welcome to Opus!
Edit note- you mentioned you were aware there was a 'Favorites' drop down menu. If you'd like to use that, shout back. The method above 'works', but if you use Opus 'favorites' you can drag a different command to the toolbar which will show you a list of your favorites and will be updated dynamically as you modify your favorites... which is cool too.