Ben Casey
Forum Replies Created
-
Forum: Plugins
In reply to: [Totally Booked] Add Buy Now Button to book pageThe page: http://www.kasvapress.com/books/damaged-mirror-story-memory-redemption/ appears to be an actual Page in wp-admin, not a book. If you remove the page or change the permalink, the single book page should appear.
Is that what you were asking ?
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Changed domain name and pages no longer foundForum: Plugins
In reply to: [Totally Booked] How to make the /books page not an archivesomething like this in your functions.php file should do the trick: Let me know if you need me to have a closer look.
function russbennet_add_buynow_to_archive( $content ){ if( is_post_type_archive( 'tb_book' ) ){ ob_start(); tb_get_buynow_link(); $button = ob_get_contents(); ob_end_clean(); $content .= $button; } return $content; } add_filter( 'the_excerpt', 'russbennet_add_buynow_to_archive', 10, 1 );Forum: Plugins
In reply to: [Totally Booked] Sidebar background – transparentHi Doobie,
Sorry i didn’t get a chance to reply earlier, 3 kids makes life a little hectic.
try this to hide the local bookstore section:
#tb_popup_wrapper .find_retailer_section { display: none!important; }Cheers
BenForum: Plugins
In reply to: [Totally Booked] Sidebar background – transparentHi Doobie
Adding the following CSS to your site either via the theme or a custom CSS plugin will remove the BG colour from the book.
.tb_book .book_cover{ background:none; }Let me know if you need any more help.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] How to make the /books page not an archive@russbennet
The CSS solution Kelli suggested works fine, the only issue is when we update the plugin in the future they updates will be lost.
The most semantic solution would be something like the following, either in your theme (it may have a custom CSS option) or in a plugin that allows you to enter custom CSS to your site
#primary .tb_book .post_thumbnail{ width:auto!important; }as for the buttons, some CSS to this effect will make them appear very similar to the red one you have on the single book page.
.archive .tb-entry-actions a.tb_button { background: #ef0e24!important; border: none!important; box-shadow: none; -moz-box-shadow: none; -webkit-box-shadow:none; padding: 8px 30px; font-size: 14px; }again, this is best not done in the plugin code as future updates will wipe them out.
Let us know how it goes.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Show sidebar with archivesThis will require a custom template. Its really not something that can be copy / pasted.
If you would like me to have a look at it, please contact me at tigerstrikemedia.com or post a job on the job board. (http://jobs.wordpress.net/)
Cheers
BenForum: Plugins
In reply to: [Totally Booked] No pagination in archives?Peter, it hasn’t shown up in the feeds, can you please link to it here?
Cheers
benForum: Plugins
In reply to: [Totally Booked] No pagination in archives?It standard practice if you start your own support thread in the future.
In answer to your questions.
1) Do you have the pagenavi plugin installed? http://wordpress.org/plugins/wp-pagenavi/
2) This would have to be done in a little custom templating
3) try this css:
.entry-content .read-more{ display:none; }Let me know how you go.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] How to make the Featured Image full?@ russbennett
if you change the image sizes, you have to regenerate all the images (http://wordpress.org/plugins/regenerate-thumbnails/) , otherwise the results can be unpredictable.
if you set the image to 150 X 2000 and ensure the option to hard crop them is unchecked, then regenerate the images, that should solve the issue.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] How to remove Find A Local Bookstore option@milan.sipovac
Sorry about the late reply,
Absolutely, you can either add the following CSS to your theme (or via a custom CSS plugin)
.tb_buynow_wrapper .find_retailer_section{ display:none }or you can edit that section out of the template in your theme.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] No pagination in archives?@ marcinrzeczkowski
You can add in the call to
wp_pagenavi()with the following in your functions.php file:add_action( 'tb_wrapper_end', 'wp_pagenavi', 1 )Let me know if you need any more help.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] How to display the library of books@ snowbelly
Sorry I didn’t get a chance to get back to you sooner. It looks like you have moved on from our plugin.
Let me know if you were still willing to give it a go.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Book Displaying in Sidebar@ rjcrayton
It looks like you have moved on from our plugin. Im sorry I didn’t get a chance to get back to you sooner.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] How to make the Featured Image full?@ russbennett can you provide me a link so I can have a better look at the problem ?
Cheers
Ben