
andW Fixed Footer is a responsive mobile-first fixed footer plugin for WordPress. It displays a customizable footer bar on mobile devices with scroll-based show/hide behavior.
Key Features
- Responsive Design: Configurable screen width threshold (default: 768px)
- Scroll Interaction: Shows on scroll down, hides on scroll up
- Flexible Layout: 2-6 button layout options
- Customizable Styling: Colors, icons, links, and text fully configurable
- Font Awesome Support: Icon display with external Font Awesome plugin
- Close Button: Temporary hide functionality for users
- Two-tier Structure: Button area and bottom text area
Configuration Options
General Settings
* Plugin enable/disable
* Display mode (2-6 button layout)
* Button height
* Screen width threshold (320-1200px, default 768px)
* Button width distribution
* Close button display and position
* Font Awesome detection status
Button Settings (up to 6 buttons)
* Enable/disable individual buttons
* Background and text colors
* Font Awesome icon codes
* Label text
* Link URLs (tel:, mailto:, https:// supported)
Bottom Bar
* Background and text colors
* Multi-line text (automatic line break conversion)
Use Cases
- Corporate website phone/email contact
- E-commerce inquiry buttons
- Store location/reservation links
- Service website resource requests
Security Features
- Proper input sanitization
- Output escaping
- Nonce authentication for settings protection
- Administrator permission checks
Technical Notes
対応URL形式
- tel:086-000-0000
- mailto:info@example.com
- https://example.com
- http://example.com
CSS Class Names
.andw-fixed-footer-wrapper– Main container.andw-footer-buttons– Button area.andw-footer-button– Individual button.andw-footer-bottom– Bottom text area
JavaScript API
`javascript
// Show
window.andwFixedFooter.show();
// Hide
window.andwFixedFooter.hide();
// Close
window.andwFixedFooter.close();
// Check visibility
window.andwFixedFooter.isVisible();
`