macguru2000
Forum Replies Created
-
Forum: Plugins
In reply to: [CataBlog] Merging multiple Catablog installsI’m pretty sure its documented somewhere in the comments of this page:
http://catablog.illproductions.com/documentation/importing-and-exporting-catalogs/Forum: Plugins
In reply to: [CataBlog] Merging multiple Catablog installsJust remove the id column from your CSV export and it will create new ids for each item.
Forum: Plugins
In reply to: [CataBlog] How to use my own Lightbox?I am not familiar with the Lighbox plugin you are using, but something like this usually works. Pay special attention to the rel attribute of the anchor tag.
<a href="%LINK%" class="catablog-image" rel="lightbox" %LINK-TARGET%> <img src="%IMAGE-THUMBNAIL%" alt="" /> <strong class="catablog-title">%TITLE%</strong> </a>Forum: Plugins
In reply to: [CataBlog] How to use my own Lightbox?To use your own Lightbox simply disable CataBlog’s Lightbox and add whatever appropriate HTML markup your Lightbox needs to the CataBlog Template you are using.
Forum: Plugins
In reply to: [CataBlog] Flash Uploader & CategoriesNo problem, marking as resolved.
Forum: Plugins
In reply to: [CataBlog] Flash Uploader & CategoriesThere is a batch action for setting categories for multiple catalog item at once, would that be sufficient?
Forum: Plugins
In reply to: [CataBlog] Row Heighttry adding some extra margin or padding to the bottom of the .catablog-row css class. Something like this:
html body .catablog-row { margin-bottom: 20px; }or
html body .catablog-row { padding-bottom: 20px; }Forum: Plugins
In reply to: [CataBlog] Have my own cart, no e-commerceForum: Plugins
In reply to: [CataBlog] Creating a new tokenAs far as I know, WordPress does not offer support for your latest request. As CataBlog is built upon WordPress, it also does not offer functionality for sorting from a specific character. That being said, you could always write a custom SQL statement to load those catalog items (posts), but it would require quite a bit of work on your side to implement.
Forum: Plugins
In reply to: [CataBlog] Creating a new tokenTry using the other plugin’s PHP code in your theme’s single-catablog-items.php file, which is PHP. The layout (catablog template) is not interpreted, but instead treated as a string, among other reasons, this is for security.
Forum: Plugins
In reply to: [CataBlog] Editing Catablog ItemSorry, but I think this is a poor title for the support thread, editing catablog items is easy and I’m sure you know how to do that. You want to use a wordpress template to control how your catablog item’s single page is rendered.
If you are familiar with PHP this code snippet should help you
<?php $data = get_post_meta(get_the_ID(), 'catablog-post-meta', true) ?> <?php var_dump($data) ?> <?php var_dump($data['sub-images']) ?>Hope that helps and good luck 🙂
Forum: Plugins
In reply to: [CataBlog] Adding a link inside the SINGLE TEMPLATESounds like you need a new field (token) for the link you want each item to have. The other option I see for you is to use the current catablog category to determine where the link should go. Not sure which way you want to go.
Forum: Plugins
In reply to: [CataBlog] Creating a new tokenYou still have a lot of changes to go, I don’t have the code in front of me currently so I can’t give you line numbers or anything like that. I can tell you that there is a post meta data block that contains all the field data for catablog, so you need to modify the code for that. Then you can instruct the plugin to use that data for the %AUTHOR% token.
If I have some time I will look into the code and give better instruction, but for the time being I hope that helps. Cheers 🙂
Look for a save function and a render function in catablog.php….those should be the main places to look.
Forum: Plugins
In reply to: [CataBlog] Creating a new tokenYou will need to hack the plugin to achieve what you want. There should be some loose instructions and advice to hacking the plugin for this specific need in past support topics / threads, please look there. Just keep in mind that hacking the plugin can cause all sorts of problems for your wordpress site, and I will take no responsibility for them.
Good luck!
ZachForum: Plugins
In reply to: [CataBlog] Name Catablog Item in breadcrumbThere is a high probability that if you do change the custom post type name you may cause bugs or unknown errors. You may not, but you more likely will.
Just search the plugin code for your string, “CataBlog Item” and replace it with what you want…but no guarantees.