Guide
Share buttons for Joomla
A Custom HTML module puts the buttons under every article.
Where they end up: In any template position, most usefully right after the article body.
- 01
Create a Custom HTML module
Content → Site Modules → New → Custom. Switch the editor to code view before pasting, then paste the snippet from the configurator.
- 02
Place it where articles end
Set Position to a slot your template renders below the article — most templates offer one. On the Menu Assignment tab choose On all pages, or just the menu items you want.
- 03
Load the script once
Rather than putting the script tag in the module, add it to your template index.php so it loads once per page instead of once per module.
php<?php $doc = JFactory::getDocument(); $doc->addScript('//static.addtosite.com/widget.js', [], ['async' => true]);
Want a different set of services?
The snippets above use a sensible default. The configurator builds the exact markup for whichever services you want, in whichever order, at whichever size — paste that in place of the kit shown here.