macguru2000
Forum Replies Created
-
Forum: Plugins
In reply to: [CataBlog] Content for catablog item permalinkEach CataBlog item is a custom post, so when viewing a item’s page (I assumed you meant using the newer public feature) you can very easily fetch the data you want inside the template file,
single-catablog-item.php, which is used to render a single catalog item.Regardless, I am still confused on exactly what you need or what you are explaining…but since you found a solution I will just leave it be, cheers!
Forum: Plugins
In reply to: Catablog single viewIn your CataBlog Template, in the options area, replace the %LINK% token with the %PERMALINK% token. It should now work the way you want, read more about tokens and how to use them at Making Custom Templates.
Forum: Plugins
In reply to: Catablog single viewHi Jessica,
I need to know more information to help solve your questions. Are you using the Public feature? Is the LightBox feature enabled? What exactly are you looking to happen when you click the thumbnail?
The documentation for the plugin is at the official blog, http://catablog.illproductions.com
Forum: Plugins
In reply to: [CataBlog] Images RotatingI will also take some time, when I have some 😉 to double check that the uploaded sub image renderings are correctly rotating the images. I am guessing they are not and that some code will need to be patched. Thanks again for this thread.
Forum: Plugins
In reply to: [CataBlog] Edit item errorI have not run into this error myself, will have to look into later when I have more time, still thank you very much for the bug report and look forward to solving this issue with you at a later date.
Forum: Plugins
In reply to: [CataBlog] Content for catablog item permalinkCustom data is stored in the meta data of the post, something like this will give you an array of all the catalog item’s custom data.
<?php $catablog_data = get_post_meta(get_the_ID(), "catablog-post-meta", true); ?> <?php $catablog_data["link"]; ?> <?php $catablog_data["price"]; ?> <?php vardump($catablog_data); ?>I believe the permalink may also be retrieved simple by using the built in WordPress functions, such as
<?php the_permalink() ?> <?php $permalink = get_permalink( $id ); ?>Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] theme and cloud widget integration?alx359,
You may also experiment with the Public feature, which will let you loop through your catalog categories with the WP loop, in fact it is exactly like making an archive.php file in your theme. Just name the file in your theme
taxonomy-catablog-terms.php.Also read more at Update Introduces Individual Catalog Item Pages
Good luck, and thanks for the tag cloud solution, didn’t know about that one 😉
Forum: Plugins
In reply to: [CataBlog] doesn't show sub-imagesHi Cayl,
The gallery template does not use sub images because of its layout style, if you want to use sub images with a gallery style layout you will need to modify the template code. Also, the LightBox will only work with images that are rendered in the HTML code, this does not mean the images have to be displayed, but their HTML code needs to be on the page…does that make sense?
If you have not already, please read the documentation at the blog. In particular you would want to learn about the tokens and CSS classes used by CataBlog.
Forum: Plugins
In reply to: [CataBlog] Images RotatingThe rotation of images is calculated based on image meta data, meaning if your uploaded images are JPEG format and have an orientation meta value, then that value will be respected. There was some recent code rewriting for image generation and it is very possible that there is a new bug in uploading sub images. Will have to look into that, if you could possibly check out the orientation meta value of your images and report what you find that would be awesome too. Thanks!
Forum: Fixing WordPress
In reply to: LightboxI can’t solve your problem because it is the Calypso theme. I can only guarentee that CataBlog will work with the built in themes, TwentyTen and TwentyEleven. Perhaps the author of Calypso can patch / fix their theme. Thanks again for your interest in CataBlog and have a wonderful day.
Forum: Plugins
In reply to: [CataBlog] Restaurant Style MenuHow familiar are you with JavaScript? You could trigger a click on the first catalog item when another HTML element is clicked. Then, all you would need to do is hide the catalog with CSS. The thread I pointed you to has instructions on how to show just the first item of a CataBlog category / Shortcode, but show all items in the LightBox. Hope that made sense.
Forum: Plugins
In reply to: [CataBlog] Restaurant Style MenuCheck out this thread, it might help you get an idea of where to start with setting up what you need.
http://wordpress.org/support/topic/limit-gallery-view-to-first-image
Forum: Plugins
In reply to: [CataBlog] Limit Gallery View to First Image?Next release I plan to let people choose either one way or the other, so if you could just use the older version of CataBlog that worked until then that would be awesome. Thanks 🙂
Forum: Fixing WordPress
In reply to: LightboxJust going to ping you on resolving this topic. Please do so when you get a chance. Thanks
Forum: Plugins
In reply to: [CataBlog] "and" Operator stopped working in WP3.2Just wanted to let everyone know that version 1.2.9.8 has been reported to have fixed the problem. Cheers!