The Default Tool Bar

Textstem comes with a simple admin tool bar for the front end. Administrators can enable or disable this from appearing via a a preference that is set in the Admin Preferences section.

To enable the toolbar, the following snippet should be added to the page layout (eg guest.blade.php):

<x-textstem::adminbar on="{{$adminbar ?? 0}}" :edit_url="$edit_url" />

Inline Admin Helpers

Textstem also supports some inline admin helpers to add clickable links to components and global options that are rendered into the page. The "editable option" helper adds an outline and link any global option on the page to the Admin editor interface. The "editable component" similarly adds an outline and links any component on the page to the Admin editor interface.

By default the editable option is enabled when "Admin Helpers" are turned on by the administrator. However, "editable component" are disabled by default. To enable "editable components" on your site, edit the textstemapp.php config:

'inline-component-editor'=> 1 

Note- the inline helpers will try and load some js and css. You can publish these to your site:

php artisan textstem:refresh-assets

And then include them in your layout