Ben Casey
Forum Replies Created
-
Thank you for your comments Tyler, Do you want me to let you know when the next release is available?
I understand your frustrations.
Can you list what you would like the plugin to do?
Ben
Hi Tyler
Sorry you are having issues with our plugin.
The output of the plugin is completely customisable using templating
I would be happy to have a look an help you out with this if you would allow me access.
Please contact me via my website (https://www.tigerstrike.media/contact-us/) if you would like me to help.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] YIPES!!! Needs some serious formatting magic!@justsocial
This is a bit more complex than I can help you with on the forums.
Please contact me here: https://www.tigerstrike.media/contact-us/ and i’ll see what I can do.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] font size@justsocial
There are no options in Totally Booked for Social Media. Can you clarify this?
Cheers
BenForum: Plugins
In reply to: [Totally Booked] font sizeHi justjosocial
I’m glad you like our plugin.
There are no settings for things like that, but it is simple to achieve with a little CSS.
I actually don’t think the ISBN and view more sections look too bad, did you want them a little bigger or smaller?
Cheers
BenForum: Plugins
In reply to: [WooCommerce] Call to undefined method WooCommerce::attribute_label()Just because they have to break something in every release.
This has now moved to the function wc_attribute_label()
Peter, I had made a mistake with the code I gave you, it should be as follows:
if( ! $query->is_main_query() ) return;
Try that.
Having a custom archive shouldn’t be the issue.
Cheers
BenHi Peter, This is a strange one, I had a look at my plugin and I have an idea, but i’m not 100% it will work.
in the function
pre_get_posts
intotally_booked.php
(line 280) can you add the following line and let me know if it works? If it does ill push an update immediately.if( ! is_main_query() ) return;
The whole function should look like this when you are done:
public function pre_get_posts( $query ){ if( ! is_main_query() ) return; /** * Add Support for simple page ordering. */ if( class_exists( 'Simple_Page_Ordering' ) ){ if( is_post_type_archive( 'tb_book' ) || is_tax( 'tb_genre' ) || is_tax( 'tb_series' ) || is_tax( 'tb_author' ) ){ $query->set( 'orderby' , 'menu_order' ); $query->set( 'order' , 'ASC' ); } } /** * Initialise the max posts option */ $maxposts = get_option( 'tb_archive_posts_per_page' ); if( $maxposts && $maxposts > 0 ){ if( is_post_type_archive( 'tb_book' ) || is_tax( array( 'tb_genre', 'tb_series', 'tb_author' ) ) ){ $query->set( 'posts_per_page', (int)$maxposts ); } } }
Cheers
BenForum: Plugins
In reply to: [Totally Booked] How to make a page with books as posts?Try checking the “Top Menu” theme location at the bottom of the screen you took a screenshot of, that should do the trick.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] How to make a page with books as posts?Your books archive can be found here: https://projecteasylife.com/books/ if you add a little custom CSS (something like below ) the layout will clean up a little and you can add it to the menu by adding a custom link to “/books/”
.post-type-archive-tb_book .tb_archive_content_wrapper{ float:right; width:65%; }
Let me know if you have any problems.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] How to make a page with books as posts?Can you provide a URL to your site so I can have a look?
Cheers
BenForum: Plugins
In reply to: [Totally Booked] How to make a page with books as posts?You can manage the menus of your site in Appearance -> Menus in wp-admin.
If there is no section on the left called “Books” then ensure “Books” is checked in the screen options of that page (top right hand side just below the dark grey admin bar).
Let me know if you need any more help.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] I can′t link my booksS?nia
Could you please contact me via my website, ( https://www.tigerstrike.media/contact-us/ )This is not something I can debug looking in from the outside.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Use regular post formatHi Taryn
Sorry for the delayed reply. The site is looking great.
Im not sure why the avada theme would be adding that to that archive page and not the others, it seems like quite a complex setup.
As for the templating, if you follow the instructions here: https://www.tigerstrike.media/work/plugins/totally-booked/templating/ and copy the single.php from your theme and modify it to suit that should work fine.
Feel free to reach out to us here: https://www.tigerstrike.media/contact-us/ if you need more intensive support
Cheers
Ben