开发者 |
maxfoundry
basszje arcware johnbhartley |
---|---|
更新时间 | 2024年8月23日 20:27 |
PHP版本: | 7.0 及以上 |
WordPress版本: | 6.6 |
“The best plugin of its kind” - by celito “This plugin makes creating buttons sooooo easy.” - by ncrocker202 Why aren’t all plugins like this?!? MaxButtons easily solved my problem with lots of options when creating the button and a live view of what it was going to look like. It would have done the job for me there and then but being able to adjust the text AND link with shortcodes on my page made modifications a breeze. - by discgosforth “Easy, clear, and robust. I'm a programmer and can write CSS till the cows come home, but why? Just get it, install it and use it. Then, when you're impressed, buy the pro version” - by jleahyMax Foundry also makes the WordPress Gallery plugin MaxGalleria and WordPress Media Folders plugin for real WordPress Media Library folders. Requirements
No. The shortcode enables you to change various items on the button including the text and link. It's better to create a single button and reuse it. To change text and link : [maxbutton id="1" text="yourtext" url="http://yoururl"] If you only want to change one of the two, just leave the not needed option out. Most often used options: [maxbutton id="1" text="yourtext" url="http://yoururl" window="new" nofollow="true"] You should never copy buttons if you only have a different line of text and / or link on any button. You can use the 'add button' dialog from your posts and pages to easily use this options
Simply add the button shortcode to your widget (ex: [maxbutton id="17"] or [maxbutton name="MaxButtons Button Name"]). If the styling is missing on the widget, try to check the 'use important' checkbox under 'advanced' settings.
You can use the WordPress do_shortcode function for this. Use the button name instead of ID for clearer code and easier replacement.
Sometimes the button styling doesn't load on the frontpage. There are usually two major reasons:
TablePress uses a caching mechanism which prevents the MaxButtons style design from functioning. To solve this problem, simply add the caching option to the shortcode like this: [table id=123 cache_table_output=false]
. See this support topic on TablePress.
A solution which will keep the cache enabled is to use this in your shortcode: [maxbutton id=1 style="inline"] . Flush the TablePress cache after adding this.
Use this only if you encounter issues. Most of the time MaxButtons works without any need for modifications.
Try enabling the container and setting its margin options. You could also fix this manually by surrounding your button shortcode with a div element with margins. For example: ` ` Then adjust the margin values as needed (the order is: top, right, bottom, left).
Enable the "Wrap with Center Div" option in the Container settings.
Enable the container option and set the alignment property to either "display: inline-block" or "float: left". You might also want to add some margin values to put some spacing between your buttons. If that doesn't work, try using a simple HTML table. ` [maxbutton id="1"] [maxbutton id="2"] [maxbutton id="3"] ` * A lot of modern page builders have solution for positioning content, like grids. You can leverage those for better results. * You can use TablePress to create tables in WordPress.
By default WordPress can't display shortcodes in a menu. You can use this plugin to allow shortcodes in a menu. Just copy the MaxButton shortcode in the menu after installing
By default WordPress only displays plain text in Post Excerpts. If you want to show a button there, you can add this snippet to your functions.php
add_filter( 'the_excerpt', 'shortcode_unautop'); add_filter( 'the_excerpt', 'do_shortcode');
Alternatively there are many plugins for customizing the excerpt that can do this for you and give control over other parts of the excerpt as well.
This depends on the slider plugin you are using. Most of the well-known ones are allowing the use of shortcodes within the slides. To find out if your plugin can handle that, please ask the slider vendor.
Autoptimize is supported and should work fine in most cases. However, if you see weird results, try to load the pageby adding ?ao_noptimize=1 to the URL. If the buttons load normally then the issue is with Autoptimize. You can enter an exclusion for .maxbutton in the CSS exclusions.
The plugin works with users of non-lating languages with a few exceptions. First, the character set of the Database Table should be in UTF-8. If you see '????' characters in the plugin, go to Settings -> Advanced. There is a button to set the tabel to UTF-8 Secondly, please use latin only characters for button name ( Basic settings) and extra classes ( Advanced settings ). Not doing so might prevent the styling output from working correctly.
Upgrading to the PRO version is quite simple. Obtain a license key via our site. You can enter the license code within the free version on the 'Upgrade to PRO' page. After entering the license key, the PRO version will automatically download and install. You are good to go!