macguru2000
Forum Replies Created
-
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Paginate my gallery!Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Paginate my gallery!donations?!? 😉
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Paginate my gallery!CataBlog 1.3 with pagination is now available 😉
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Paginate my gallery!So, today and this weekend will be a testing period for CataBlog 1.3, which will be released early next week, hopefully on Monday as long as there aren’t any snafus.
You may download the current 1.3 development version at http://downloads.wordpress.org/plugin/catablog.zip
Please do not use this version on your live site, try it out on a test or demo installation of WordPress, or at the very least take a full backup of everything (database and files) before installing this version of CataBlog.
To install, simply deactivate CataBlog in the WP Admin Plugins panel and then replace the CataBlog folder in
wordpress/wp-content/plugins/with the newer version and then reactivate CataBlog.Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Paginate my gallery!Don’t get to excited but I have a version on my development box with pagination. Now the main problem I am having is I use
get_posts(), which has no way of telling me the total number of results when I use the limit parameter. So I am still forced to load all the items when there is a limit, or switch to theWP_Query()object. Switching something like that would mean a lot of re-testing old functionality. That would make me sad, but might just need to happen eventually.Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Paginate my gallery!To me it seems that there are a few major features that people want, all of them are quite significant and will most likely be individual releases. I would love to say that pagination will be available in a week, but that most likely would be leading you one.
Future CataBlog Enhancements:
Pagination
Customizable catalog fields
Better template system
CataBlog Widgets for SidebarsForum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Paginate my gallery!Currently there is no built in auto paginate for CataBlog, you may read the documentation on rendering your catalog at Displaying Your Catalog in Posts.
A limit parameter for the ShortCode is in the works and it will offer a simple navigation interface as well.
One thing you can do now is split your Catalog up with categories, you may make a new set of categories just for pages if need be, and use a ShortCode with a category filter. With multiple ShortCodes per page and WordPress’s built in paging features you can build a solution.
Forum: Plugins
In reply to: [CataBlog] Restaurant Style MenuTry adding this CSS into your theme’s style.css file:
.catablog-row { display:none !important; } .catablog-row:first-child { display:block !important; }This should hide all the catablog-rows and then show only the first catablog-row in a grouping of catablog-rows. This means you must wrap your catalog ShortCodes in some kind of HTML tag, such as a
<div />tag for this to work. Then only the first catalog item in the ShortCode will be displayed but the LightBox will work with all the hidden catablog-rows after the first one.Good luck 😉
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] uploading images not working suddenlyA few questions:
Did this just start happening with the new version? 1.2.9.9?
What is your homepage’s url?
Does the about CataBlog page display any helpful information? Are the bottom disc usage setting displaying correctly?
Have you tried reseting CataBlog in the options admin panel?
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] format %PRICE% tagUnfortunately there is no way to customize the format of the %PRICE% token currently. If I pick up development of the plugin this would definitely be a nice feature with minimal programming effort.
Thanks for the post 🙂
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Get Catablog to work with AS-PDFI would recommend getting in touch with the AS-PDF plugin author and seeing if they will modify their plugin to support WordPress shortcodes. CataBlog is setup to be as integrated with the WordPress platform as possible, but not all other plugins will be as well integrated. Good luck.
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Adding a custom button to each productyeah this is currently not possible, nor would I recommend using another domain (site) for hosting images as it will significantly increase page load time.
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Adding a custom button to each productHi, so what you want should be easily achieved using the the link value for each item. SImply set this value to the appropriate webpage link. Use the complete url including
http://if your link will be leaving the current website.You may alter the link relationship and target in the CataBlog Options Admin Panel under the title tab. You will most likely want to alter your catalog template as well, this is in the same CataBlog Options Admin Panel under the template tab. You will need to replace the
%MAIN-IMAGE%token with your own html code that uses the%IMAGE-THUMBNAIL%and%LINK%tokens. Read more about customizing your template and the tokens you may use at the bloghttp://catablog.illproductions.com/documentation/making-custom-templates/
Good luck and let me know if you have any more questions 🙂
Forum: Plugins
In reply to: [CataBlog] CommentsRay,
You may add a catablog-item-single.php file to your theme and edit this file to precisely control how individual item pages are rendered. Read more at the plugin’s documentation at the blog.
http://catablog.illproductions.com
http://catablog.illproductions.com/2011/05/new-individual-catalog-item-pages/Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] PERMALINKS Pages Are BlankYou blank page is most likely due to your current theme, please try switching to the TwentyTen theme and seeing if the page is then rendered properly. If it is your theme I would suggest evaluating how the theme’s single.php file renders page content.