macguru2000
Forum Replies Created
-
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Permalink bug (v1.2.9.7)Thanks for the research into this bug, fix will be in a next release.
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Catablog = a catalog of product?Hi Andreand,
It would be quite simple to setup you hierarchy of products as WordPress pages and then insert an appropriate CataBlog Shortcode in each page. The nice aspect of this solution is that you get all of the built in features for each page, such as the menu system in WP 3.
Since CataBlog has its own taxonomy it is very simple to attach multiple categories to each catalog item. For instance you could make a trousers-short and trousers-long category and place the appropriate items into each category. If you need pagination then I might searching the blog for a documented hack to add limit and offset parameters to the Shortcode.
You may also filter your catalog by more than one category, so you could filter by shoes and sandals if you want. Just separate with a comma.
Here are some examples:
[catablog category="trousers"] [catablog category="trousers short"] [catablog category="trousers,trousers short"] [catablog category="shoes,sandals"]I think you get the idea, and I believe CataBlog is much more than a gallery plugin, look at some of the examples on the blog. Also their is a new public feature which makes each catalog item into its own page, complete with the ability to add CataBlog taxonomies into your menu with the Appearance > Menu panel.
Forum: Plugins
In reply to: catablog not show the button to upload imagesYes, this is a known bug that is discussed at the blog, http://catablog.illproductions.com/documentation/uploading-and-creating-catalog-items/#comment-3598. If you do not want to fix it yourself I suggest using an older version until I have a chance to fix this bug. Currently I am on vacation so there will not be any new updates anytime soon.
You may also disable JavaScript when viewing the add new panel to get the old uploader.
You may also use FTP to upload your images, http://catablog.illproductions.com/2011/01/new-five-step-gallery-maker/.
Forum: Plugins
In reply to: [CataBlog] CataBlog Feature RequestRequest for TinyMCE editor has been noted. Thanks again for your interest in CataBlog and have a wonderful day.
Forum: Fixing WordPress
In reply to: Lightboxdon’t fret, the answer was so short because I am on vacation right now and don’t have solid internet access. 🙂
Forum: Fixing WordPress
In reply to: LightboxForum: Plugins
In reply to: [CataBlog] Catablog Lightbox does not pop up on different computerHi mlheizer,
Please excuse the long wait for a reply, I have been very busy lately and can’t offer support in as timely a fashion anymore. I am also very pleased to hear you are enjoying CataBlog. It’s always nice to hear from another happy user. Now for some support.
Web development, especially frontend (interface), is especially difficult because there are so many different variables. Which browser, which os, what is enabled, disabled. You get the point. This is what you are currently experiencing.
What you want is possible with CataBlog, but before I go into the solution I want to talk about graceful degradation and design. Graceful degradation means, that if the browser cannot display your content correctly, it displays it in the next best possible way. This is exactly what CataBlog is doing.
Most LightBox implementations degrade in the exact way you describe. If it can’t show the larger image with JavaScript, then just load the image into the main widow. This actually works pretty well and is especially nice for older cellphones. Also, note that most LightBox implementations are meant only as a convenience factor, and not used in scenarios where showing the LightBox and its content is imperative.
LightBoxes work by linking to a larger image, this is how JavaScript knows what image to load and place in the LightBox. I think what you want is the thumbnail to open the LightBox, or if that isn’t possible load another page. This is possible with a sort of hack that depends on CataBlog’s content management features.
To do that isn’t simple stuff though. You will need to customize the LightBox selector, the CataBlog template and possibly write a small bit of JavaScript code yourself.
My first suggestion would be to evaluate your design and see if you can make the LightBox not imperative to your sales by putting a link in the template code. There are a bunch of examples on the blog and here for making a title link, but just incase you can’t find one, here is another snippet of code for the CataBlog template.
<a href="%LINK%" %LINK-TARGET% %LINK-REL%>%TITLE%</a>or use the convenience token title link
%TITLE-LINK%You may edit your CataBlog template in the options section under the template tag, simply edit the code and click save at the bottom. Good luck and let me know if you want to learn about the hack or have any other questions.
Forum: Plugins
In reply to: [CataBlog] CataBlog Feature Requestnad1r,
Thank you for your feature request. The ability to create new “database fields” is in the works. There are many other features along with paid work that I must do first, so if this is a time sensitive matter for you I would look into either hacking the plugin yourself or possibly making a custom solution.
By the way, CataBlog is built upon the Custom Post Types feature in WordPress 3, and by doing so does not have its own database table. Instead CataBlog uses the built in WordPress tables to store its “fields” as meta data. I am considering the pros and cons of saving each catalog item field in its own row, or keeping them all combined in one database row.
For instance, a pro of separating each field into its own row is that you would be able to order your catalog by a custom field. The downside though, is that if you have a lot of fields, your database will start to choke. There are ways to let people pick and choose, it just takes time to write and code all these features.
Your feature will be in a future version of CataBlog, of which I cannot say when it will be released. Right now my aim is to release a stable 1.3 version that does multiple file uploads on most if not all setups and contains few or no bugs.
Also, after some thought I have decided that I should not sell customized versions of CataBlog to clients, it will create a possible conflict of interests among people who have paid for a specific feature and the public users, whom eventually will get the feature that was paid for.
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Image linkingcharloub,
If you are displaying the sub images on a “Public” catablog page, meaning your page can be rendered from the
catablog-items-single.phptheme file and you are proficient with PHP I have a little tip for you….You can loop through each sub image and render your own sub image code like so:
<?php $data = get_post_meta(get_the_ID(), 'catablog-post-meta', true); ?> <?php $sub_images = $data['sub-images]; ?> <?php $path = $wp_plugin_catablog_class->urls['thumbnails'] . "/"; ?> <?php foreach ($sub_images as $sub_image): ?> <img src="<?php echo $path; ?><?php echo $sub_image; ?>" class="catablog-image catablog-subimage" /> <?php endforeach ?>I hope that helps and also don’t forget to rate CataBlog 🙂
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Very Odd: Item Titles Overwriting ThemselvesGlad I could be of some assistance, it would seem your theme, or some plugin you have installed is re-rendering heading tags into JavaScript canvas objects. This may only be happening in some browser, I don’t know. It seems you have found a work around…but each item will need a unique title.
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Very Odd: Item Titles Overwriting ThemselvesThis is because you are using the cufun plugin or extension to render the title font, and it is not liking the simple HTML DOM manipulation that CataBlog’s LightBox requires to display the title. If you wish to hide the title or description in the LightBox add this to your theme’s style.css file or a catablog.css file in your theme’s root directory.
#catablog-lightbox-meta .catablog-lightbox-title { display: none; } #catablog-lightbox-meta .catablog-lightbox-desc { display: none; }Hopefully that will work for you
Forum: Plugins
In reply to: [CataBlog] Limit Gallery View to First Image?That my friend is not possible right now. There has been some discussion about letting admin’s control if the LightBox only scrolls within one Shortcode at a time or the entire page.
If that feature existed right now I might suggest going about it a different way, which you may choose to use in anticipation of being able to control the LightBox scroll function. Here are the steps
1. Create your storybooks, make one category for each story book and also make the hide category. Place the catalog item’s into their storybook categories. Now simply place all catalog items, except the first one (cover?) in the hide category as well as their respective story book category.
2. Modify or make sure your template code has the %CATEGORY-SLUGS% token inside the .catablog-row div tag’s class attribute, example:
<div class='catablog-row %CATEGORY-SLUGS%'> .... </div>3. Create a CSS class to not display the hide category’s slug in your theme’s style.css file or a catablog.css file in your theme’s root folder. Example
.catablog-row.catablog-term-hide { display:none !important; }The slug could be different, look inside your page’s HTML using Firebug or a similar tool and see what classes each catablog row div have. It could be something like
catablog-term-hide-2or similar.This will not stop the LightBox from scrolling through all books, but once I have upgraded the code to allow you to set wether the LightBox scrolls through all catalog items or just through the current Shortcode’s catalog items, you will be one click away from what you want.
Unfortunately, I cannot give you a time estimate as to when that code will be available.
Forum: Plugins
In reply to: [CataBlog] Limit Gallery View to First Image?Two categories, show and hide. Put the Shortcode for show in a div and put the Shortcode for hide in a div that is hidden….example.
<div> [catablog category="show"] </div> <div style="display:none;"> [catablog category="hide"] </div>The LightBox will let you scroll into the hidden catalog items 🙂
Forum: Plugins
In reply to: [CataBlog] Lightbox images larger than 600px?You must first check the “Render new LightBox Image” option before you may set a pixel dimensions for the LightBox Image. If you do not check that box, then your LightBox images will be the original file you uploaded.
The original file may be displayed in the wrong orientation, be of ridiculously large size or for whatever reason be inappropriate, this is when you should enable “Render new LightBox Image”.
Forum: Fixing WordPress
In reply to: [CataBlog] CSS what am I missing here?I’m glad you got it all sorted out, also, if you haven’t already, please:
Rate and confirm that CataBlog works
http://wordpress.org/extend/plugins/catablog/Like the Facebook page
http://www.facebook.com/catablogDonate to help the continued development of CataBlog
http://catablog.illproductions.com/donate/