macguru2000
Forum Replies Created
-
Forum: Reviews
In reply to: [CataBlog] I WANT to love this, but…..Definitely an improper installation.
Forum: Plugins
In reply to: [CataBlog] Gallery ColumnsYes, and that’s wonderful, I feel like a lot of the experience you gained setting up CataBlog will transfer to other plugins and WordPress in general.
Forum: Plugins
In reply to: [CataBlog] Gallery ColumnsPlease read all the documentation at the support blog, there you will find that the Library and the Galleries are two very different things. A gallery has its own [catablog_gallery] Shortcode, which has a completely different set of parameters than the standard [catablog] Shortcode.
Some good reading:
Organizing your catalog with categories
Organizing your catalog with galleriesForum: Plugins
In reply to: [CataBlog] Gallery ColumnsHi simplytangerine, you should basically put this inside the content of a page or post on your blog, if you are confused by that please take some time to learn more about WordPress and using Shortcodes in WordPress.
Here is an example of the code you need, please notice that the category names here are just examples, and you should use your own categories.
Dogs: [catablog template="gallery" category="dogs"] Cats: [catablog template="gallery" category="cats"] Birds: [catablog template="gallery" category="birds"]You may want to manually type this into your post or page, sometimes copy and paste brings along formatting and stops Shortcodes from working.
Also, please make sure you have all your catalog items in the CataBlog Library categorized correctly.
Forum: Plugins
In reply to: [CataBlog] Library items won't add to GallerySounds like a css or display issue, this is not a file permissions error if you cannot see the button. Try:
1: a different browser
2: deactivating other wordpress plugins
3: switching your theme to twenty-tenI recommend doing each step individually, trying to add to the gallery at each step.
Good luck.Forum: Plugins
In reply to: [CataBlog] Problem: Realize product page with 2 or 3 horizontal productsSo you should paste this into either your theme’s style.css file or create a catablog.css file inside your theme’s directory and paste this code in there. You should never edit the plugins css files, as your changes will be overwritten when you update. The same can apply to your theme’s style.css file, depending on wether you or someone else is the theme author.
Keep in mind that it is important that you not translate or change the css class names, as those should always be in english. I also want to apologize for not reading your original code closely enough, you should never define the same class twice in CSS, it just doesn’t work that way.
Two Columns:
html body .catablog-catalog .catablog-row { float: left; width: 50%; margin: 0; padding: 0; border: 0 none; }For three columns, try this code instead of the above one
html body .catablog-catalog .catablog-row { float: left; width: 33%; margin: 0; padding: 0; border: 0 none; }Good luck
Forum: Plugins
In reply to: [CataBlog] Customize single-catablog-items.phpNoticed a few things:
If you named your template file
single.catablog.items.phpthat is not the correct file name, it should besingle-catablog-items.php. If you already knew that, please disregard.Please browse the support threads for previous solutions on rendering the catablog images inside your single catablog item wordpress template. Its basically an array of urls stored within the post meta data.
Otherwise everything looks ok, good luck.
Forum: Plugins
In reply to: [CataBlog] Problem: Realize product page with 2 or 3 horizontal productsI would like to mention that there are numerous errors in your CSS code from your original question. If you want to do a 3 column layout you should use css code like this…please pay specific attention to all the syntactical formatting:
I do not know what
.catablog-filais, is that a custom css class you added in your catablog template?/* Catalogo */ html body .catablog-catalog .catablog-fila { float: left; width: 50%; margin: 0; padding: 0; } html body .catablog-catalog .catablog-fila { width: 50%; margin: 0 0 0 50%; padding: 0; }Forum: Reviews
In reply to: [CataBlog] When it works it works wellJust incase you didn’t notice, you can use the bulk actions to add or remove multiple items from categories in the Library view.
Forum: Plugins
In reply to: [CataBlog] Creating a Custom Template without Thumbnail SizeYou can always set the default image size to your largest image size and use CSS to reduce/resize the images. Use the %CATEGORY-SLUGS% token to set css classes based on your catalog item’s categories and then make catablog categories for each image size. Next make the CSS classes for each size. Something like this:
CataBlog Template:
<div class="catablog-row catablog-gallery %CATEGORY-SLUGS%"> <a href="%LINK%" class="catablog-image"> <img src="%IMAGE%" alt="" /> <strong class="catablog-title">%TITLE% </a> <div class="catablog-description">%DESCRIPTION%</div> </div>then make some catablog categories like these and place your catalog items in them:
'small-catalog-thumbnail' 'medium-catalog-thumbnail' 'large-catalog-thumbnail'then make some css classes like this:
.catablog-row.small-catalog-thumbnail .catablog-image img { width: 50px; height: 50px; } .catablog-row.medium-catalog-thumbnail .catablog-image img { width: 100px; height: 100px; } .catablog-row.large-catalog-thumbnail .catablog-image img { width: 200px; height: 200px; }Of course you will have to probably make other css classes for the other elements to work with the different image sizes. You also will want to set your thumbnail size to the largest image size to avoid any pixelation.
Good Luck!
Forum: Plugins
In reply to: [CataBlog] How to use my own Lightbox?You should be able to set a selector or some kind of markup requirement for lightbox 2 to work with an image. I recommend enabling both catablog lightbox and lightbox 2 and setting it so that lightbox 2 ignores catablog items. I am not sure how to do this off the top of my head, since I am not familiar with lightbox 2, but I am sure it is possible.
Forum: Plugins
In reply to: [CataBlog] Catablog, "Add to Gallery" doesn't work !I think you found the elusive “French bug” that other people have reported. Awesome! Thanks so much for looking into that, now all I need is some free time to fix it…
Forum: Plugins
In reply to: [CataBlog] Catablog, "Add to Gallery" doesn't work !Are you familiar with Firebug or the developer tools in webkit (chrome/safari)? If you could please pull up the javascript console in either of those tools and see if there is an error being thrown when you try to add images to a gallery. If there is an error, please post it here with all personal information sanitized. Thanks
Forum: Plugins
In reply to: [CataBlog] Catablog, "Add to Gallery" doesn't work !Please try disabling other plugins and using a standard theme such as TwentyTen, TwentyEleven or TwentyTwelve to see if you are having a javascript conflict.
Forum: Plugins
In reply to: [CataBlog] Can I check multiply categories for one product?Yes, please read the documentation at http://catablog.illproductions.com/documentation/