zookatron
Forum Replies Created
-
Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] Book Image SizeIt can depend somewhat on your theme since MyBookTable scales the book image responsively based on your theme width, but 800px high (scaling the width proportionally for whatever ratio your image is) is the default size used by MyBookTable for loading the image, so that’s a good size to go with.
~Tim
Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] visual editor ProblemHi @aamirpsy,
Unfortunately I’m not able to reproduce the issues that you are seeing with the post editor in any of the tests that I ran. It seems that the most likely cause of the problem you are seeing is an incompatibility between MyBookTable and some other plugin or the theme on your site.
Please try disabling all other plugins on your site and switching to a standard theme, and see if the problem persists. If that makes it go away, you can then re-enable the plugins and your theme one-by-one, until the problem comes back again. That way you can know which plugin on your site is not working properly with MyBookTable.
~Tim
Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] visual editor ProblemHi @aamirpsy,
Can you give me a few more details about what the problem you’re having is? Preferably a screenshot with a description of what is going wrong would be helpful.
Thanks,
~TimYou can find information on the new Book Sections system here: https://github.com/authormedia/mybooktable/wiki/Template-System-Overview#book-sections-system
You can override the section titles using the ‘mbt_get_<display_mode>_content_sections’ filter. So for example if you wanted to change the title of the “Endorsements” section on the storefront Display Mode, you could do so with something like this:
function mytheme_add_content_section($sections) { $sections['endorsements']['name'] = 'What people are saying'; return $sections; } add_action('mbt_get_storefront_content_sections', 'mytheme_add_content_section');You could also change it using the “mbt_book_section_title” filter, like so:
function mytheme_book_section_title($title, $post_id, $section_id) { if($section_id == 'endorsements') { return 'What people are saying'; } return $title; } add_action('mbt_book_section_title', 'mytheme_book_section_title', 10, 3);Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] Adding Custom Buy now buttonsHi Quinell,
You can learn more about Style Packs and Customizing Buy Buttons from our developer wiki here: https://github.com/authormedia/mybooktable/wiki
However uploading a custom style pack should work for customizing the Amazon button. Are you sure you packaged your style pack correctly as a zip and saved your button image as “amazon_button.png”, like it says here?
~Tim
Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] Order Now! ButtonThanks for your feedback on this. We’re planning on making it so that the new button will match your style pack in the near future.
This happened to your new book because of the new Display Mode system we added in MyBookTable 3.0. In the mean time you can change the Display Mode of your new book to match your other books by setting it to Storefront. You can find the display mode selector in the Publish box here:

Hi, @say_hello,
Thanks for the suggestion! We’ll look into adding this feature in a future version of MyBookTable.
~Tim
Unfortunately there is no built in way for doing this in MyBookTable. Thanks for the suggestion though, this is something we may consider adding in the future.
~Tim
Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] Quick Edit Deletes Book Meta DataThanks for reporting this! This will be fixed in the next update to the plugin.
~Tim
Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] Open Library1. We don’t have any integration with FlipSnack in the base version of MyBookTable, so in order to link to it you would need to purchase the MyBookTable Professional Upgrade and use the Universal Buy Button feature.
2. We don’t have any built-in system designed specifically for adding a readers count to the plugin, but this would certainly be possible to implement with custom PHP development. You can read more about integrating with our plugin on our Developer Wiki here.- This reply was modified 9 years, 8 months ago by zookatron.
Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] Plugin is generating 404 errorsIt looks like an issue with your permalink structure or your hosting provider. We’ve never worked with MySite before but their PHP support looks like it may be sub-par.
What are your permalink settings set to? (Found in Settings > Permalinks in your WordPress backend)
Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] PHP 7 SupportAbsolutely, thanks for letting us know. This should be fixed in the next version of MyBookTable.
~Tim
Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] Support for WP Version 4.5.3Hi @mkowal100,
The current version of MyBookTable should fully support WordPress 4.5.3, even though it doesn’t explicitly say that right now. We will be releasing an update in a couple weeks that will bump the officially supported version up to 4.6.0, but there’s no need to wait for that, it will work right now.
~Tim
Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] Find a Store feature disabledCan you describe what you mean by it being randomly disabled? Is it not showing up on some books but showing up on others? Is it only showing up sometimes on a single book?
If you can link to the specific pages in question that it’s not working on that would be a big help.
~Tim
Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] Grid View and List ViewUnfortunately not, the Grid View setting is site-wide. You can only turn it on or off for the whole site.
~Tim