Ben Casey
Forum Replies Created
-
Forum: Plugins
In reply to: [Totally Booked] Would like a way to add ISBNcan you post a link to the page and Ill have a look.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Alignment off on book archives pageNot a problem at all, if you wouldn’t mind leaving a review of the plugin that would be great.
http://wordpress.org/support/view/plugin-reviews/totally-booked
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Would like a way to add ISBNI have just pushed a new update with the ISBN number included, but as for the styling, I have tried top keep it as light as possible to integrate with most themes.
Let me know if there is anything else I can help with.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Alignment off on book archives pageOk, I have just pushed an update to version 0.4 to fix the bug with the inability to remove the links, The alignment issue has also been corrected. That should be available any moment now.
The plugin supports the “Simple Page Ordering” plugin which will allow you to drag and drop the books to the desired order after publishing. http://wordpress.org/plugins/simple-page-ordering/
Let me know if you have any more problems.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Alignment off on book archives pageHi Arose
This is a minor failure of your theme, I will have a fix in the next version, but it might be a while off. If you add the following to your stylesheet ( Or a custom CSS plugin ) the alignment will be corrected.
.archive .tb_book{ clear:both; }Let me know if that helps.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Would like a way to add ISBNHi idogenealogy I will definitely consider putting that into the next version.
Thank you for your support.
Cheers
BenForum: Plugins
In reply to: [WP Slick Slider] Some sliders work, some don'tNo Problem, Im marking this as resolved, if you have any more issues, please let me know.
Cheers
BenForum: Plugins
In reply to: [WP Slick Slider] Displaying slide counterThere are 2 pager options, 1 to use the image and another that is a plain text option, Can you try using the other one? “Use Pager Links?” instead of “Use Featured Images As Pager Links?”
Cheers
BenForum: Plugins
In reply to: [Totally Booked] 404 Errors on PostsDon’t forget to review the plugin here : http://wordpress.org/support/view/plugin-reviews/totally-booked 😉
Cheers
BenForum: Plugins
In reply to: [Totally Booked] 404 Errors on PostsThank you, you should add this to your theme CSS:
.tb_book .post_thumbnail img { max-width: 100%; height: auto; }This will scale your images correctly.
Im marking this thread as resolved, if you have any further problems, don’t hesitate to ask.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] 404 Errors on PostsNot a problem,
Can you send me a link to the current books archive? also are you using customised templates in your theme?
Cheers
BenForum: Plugins
In reply to: [Totally Booked] 404 Errors on PostsHave you updated to the latest version of the plugin? There were quite a few template bugs in 0.1 and a few left in 0.2 they should have fixed the image sizing issue.
as for the the permalinks i do believe that the plugin Mybooks For Authors (there are some scripts loaded from that plugin in the header of your website so I am assuming it is active) is conflicting with my plugin.
In the Totally Booked->Update Settings->advanced options page, please edit the “Books Archive Slug” to something other than “books” and refresh your permalinks, this should solve the conflict, let me know if you have any problems.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] 404 Errors on PostsHi
Have you tried refreshing your permalinks?
If that is not the case, can you post a link to the offending site so I can have a look?
Forum: Plugins
In reply to: [WP Slick Slider] Displaying slide counterAbsolutely, Have you tried checking the “Use Pager Links” option in the slide options ?
Cheers
BenForum: Plugins
In reply to: [WP Slick Slider] Some sliders work, some don'tHi LiMaNi,
Sorry about the late reply, did you ever get this sorted out?
I would suggest cleaning up the code a bit. Something like this:
if( function_exists( 'wp_slick_slider' ) ): if( is_home() ) { wp_slick_slider( 'homeslider' ); } elseif( is_page( 'unser-spektrum' ) ){ wp_slick_slider( 'unserspektrumslider' ); } elseif( '' ) { //Edit this and add more elseif lines as required. wp_slick_slider( '..' ); } endif;Alternatively, You could add some post meta to the pages, and use something like this:
if( function_exists( 'wp_slick_slider' ) ): //Use Post meta on single pages / posts, otherwise default to 'homeslider' if( is_singular() ){ $slider = get_post_meta( get_the_ID(), 'page_slider' , true ); } else { $slider = 'homeslider'; } if( $slider && ! empty( $slider ) ){ wp_slick_slider( $slider ); } endif;