Add a fixed menu. The basic menu is at the bottom, but it can also be displayed on the top, left, and right.
Add a fixed menu. The basic menu is at the bottom, but it can also be displayed on the top, left, and right.
template/fixedbottommenu-template-html.php
and template/fixedbottommenu-template-css.php
. Using this as a reference, you can specify a separate template file using the filters below./** ================================================== * Filter for template file of html. * */ add_filter( 'fixed_bottom_menu_generate_template_html_file', function () { $wp_uploads = wp_upload_dir(); $upload_dir = wp_normalize_path( $wp_uploads['basedir'] ); $upload_dir = untrailingslashit( $upload_dir ); return $upload_dir . '/tmp/fixedbottommenu-template-html.php'; }, 10, 1 );
/** ================================================== * Filter for template file of css. * */ add_filter( 'fixed_bottom_menu_generate_template_css_file', function () { $wp_uploads = wp_upload_dir(); $upload_dir = wp_normalize_path( $wp_uploads['basedir'] ); $upload_dir = untrailingslashit( $upload_dir ); return $upload_dir . '/tmp/fixedbottommenu-template-css.php'; }, 10, 1 );
/** ================================================== * Filter for CSS file. * */ add_filter( 'fixed_bottom_menu_css_url', function () { $wp_uploads = wp_upload_dir(); $upload_url = $wp_uploads['baseurl']; if ( is_ssl() ) { $upload_url = str_replace( 'http:', 'https:', $upload_url ); } $upload_url = untrailingslashit( $upload_url ); return $upload_url . '/tmp/fixedbottommenu.css'; }, 10, 1 );
fixed-bottom-menu
directory to the /wp-content/plugins/
directorynone
Supported WordPress 6.4.
PHP 8.0 is now required.
Fixed problem with adding columns.
Supported WordPress 5.7.
Fixed uninstall.
Supported WordPress 5.6.
Updates related to add-ons.
Updates related to add-ons.
A link to the demo site has been posted.
Fixed Bottom Menu Live
Added footer class option.
Changed color picker.
Fixed an error related to add-ons.
Added filter for erase menu.
Added filter for z-index.
Added filter for values in columns.
Removed unnecessary code.
Added several options.
Added several filter.
Fixed a problem with the iOS home bar being covered.
Can specify the number of columns from 3 to 5.
Fixed translation.
Fixed translation.
Fixed url link problem.
Old settings (ver1.01) can now be selected.
The setting screen has been changed.
Fixed problem of CSS.
Fixed issue “Max Width”.
Fixed problem of CSS.
Fixed link to the setting page.
Initial release.