maxfoundry
Forum Replies Created
-
Forum: Plugins
In reply to: [MaxButtons - Create buttons] Buttons split into two.Try increasing it to 150px or more. That works when I do it using Chrome Dev Tools.
Forum: Plugins
In reply to: [MaxButtons - Create buttons] Buttons split into two.It looks like you simply need to increase the width of the button container. That should stop it from splitting in two.
Forum: Plugins
In reply to: [MaxButtons - Create buttons] Using same button to link to many URLsYou have to edit your theme’s template files to use that PHP code.
Forum: Plugins
In reply to: [MaxButtons - Create buttons] Target=blankMarking resolved.
Forum: Plugins
In reply to: [MaxButtons - Create buttons] Can't save buttonsSorry, but other than deactivate/reactivate, we don’t have any other suggestions. The reason why aa deativate/reactivate is sometimes required is because some updates include a change to the buttons table in the database, and the only way to get the change is during the activation process (for which you need to deactivate first). So if that’s not working, then it’s really hard for us to be able to tell what the issue is without seeing the underlying database.
Forum: Plugins
In reply to: [MaxButtons - Create buttons] Using same button to link to many URLsYes, you can do this with a little PHP and the url parameter for the button shortcode, as such:
<?php echo do_shortcode('[maxbutton id="17" url="http://website.com/"]') ?>Change the ID, of course, then replicate this code where you need it, passing in a different url.
Thanks for the suggestion, we have some options we’re looking at. Hopefully we’ll be able to do more with the responsiveness in an upcoming release.
Forum: Plugins
In reply to: [MaxButtons - Create buttons] Maxbutton url to use for paypal buttonI’m not sure I follow. The button editor has a URL field, which you use to enter the URL for where the button should go when clicked.
Forum: Plugins
In reply to: [MaxButtons - Create buttons] Button Text color IssueI don’t know why that would have had anything to do with the footer, unless you’re missing a closing HTML tag somewhere.
Forum: Plugins
In reply to: [MaxButtons - Create buttons] Maxbutton url to use for paypal buttonThe URL for a MaxButton is whatever you put into the URL field. At this time you can only make a button go to a particular URL, not post any data.
Forum: Plugins
In reply to: [MaxButtons - Create buttons] Installing Maxbutton in Sidebar WidgetI can’t really say how to edit your theme template by hand because I don’t know what files are included in your theme or how it’s coded. You’ll have to contact the theme author for that.
As for replacing the Contact Form 7 submit button with a MaxButton, unfortunately it’s not really possible at this time, sorry.
Forum: Plugins
In reply to: [MaxButtons - Create buttons] Installing Maxbutton in Sidebar WidgetYou should just be able to use the shortcode in a sidebar widget. That PHP code is there if you need to edit your theme template files by hand. The id=17 is just an example and should be replaced with the ID of your own button.
Forum: Plugins
In reply to: [MaxButtons - Create buttons] Button Text color IssueTry doing this instead:
<div align=”center”>
<table>
<tbody>
<tr>
<td>[maxbutton id=”1″]</td>
<td>[maxbutton id=”4″]</td>
<td>[maxbutton id=”5″]</td>
</tr>
</tbody>
</table>
<div>Forum: Plugins
In reply to: [MaxButtons - Create buttons] utf-8It’s a known issue that we hope to fix in an upcoming release. Sorry for the current inconvenience.
Forum: Plugins
In reply to: [MaxButtons - Create buttons] How to use Maxbutton to triggle fancybox?This isn’t something the buttons can do on their own. You’d have to write some other script to handle it.