Forum Replies Created

Viewing 15 replies - 421 through 435 (of 485 total)
  • Plugin Author macguru2000

    (@macguru2000)

    moonpm,

    That’s great that you like the new close button. It would be awesome if you could confirm that the new version works with WordPress and if you haven’t already rate CataBlog here.

    Plugin Author macguru2000

    (@macguru2000)

    Hi hardislander,

    The gallery mode is specifically for users who want the entire thumbnail and text to be clickable. If you are indeed looking for the two lines of text to be part of the <a> tag that will open the LightBox then you should override the CSS styles for .catablog-title and possibly .catablog-description. You can add the class override to your theme’s styles.css file or to a separate catablog.css file in your theme directory. If you need a reference you should look at the base catablog.css file that is located in the plugin directory. Using the developer interface in Chrome or Safari or using Firebug can make figuring out what CSS setting you need to change very easy. Good luck and let me know if you need more specific CSS help.

    – Zach

    Hi 5hort5,

    Sounds to me like you want to make your catalog items into full fledged posts. CataBlog is designed to make a list of images with specific textual data for a post, not to actually make the posts themselves. That being said, CataBlog is coded using WordPress’ Custom Post Type feature, meaning each catalog item could easily be turned into a post, in fact they already are posts! On line 158 of the CataBlog.class.php file in the lib directory in the catablog plugin directory their is a line of code that reads:

    $params['public'] = false;

    You could hack the plugin and change the public value to true, giving each item their own page that shows in search results and has a permalink.

    By doing this you will also most likely create some havoc in your admin panels as two CataBlog panels will show up I think. With out better knowledge of custom post types you are going to be in trouble trying to hack CataBlog, and once you have a better understanding of custom post types it’s easy enough to customize your own post type specifically to what you need and not use CataBlog. The plugin was originally designed to help a client who didn’t know HTML or how to create a well formatted list of data. From there it has grown in functionality, but still remains best for creating galleries or lists in a post, not creating the posts themselves. That being said the content of the post will be indexed and searchable, just not as individual results.

    Personally, I would look into Theme Development. For what you want all you should need is built into WordPress. What you will need is a post category for your catalog items and smart use of Post Thumbnails in your templates along with a few custom get_posts() database queries.

    Plugin Author macguru2000

    (@macguru2000)

    thanks for your concern moonpm, i am going to be releasing a new update soon, ideally a close button will make the list of changes, if not it is on the radar for fixes.

    – Zach

    I am very interested in this topic as well, any ideas? any good example plugins? anything?

    I am looking for the same thing, especially a way to detect a Network Activate and stop users from activating my plugin that way, anyone have any ideas?

    Plugin Author macguru2000

    (@macguru2000)

    Hi sierramonet,

    Are you spelling category correctly? In your question above you qoute:

    [catablog categor=”shoes”]

    it should be

    [catablog category=”shoes”]

    Please double check your spelling. Also, you should be using a version of WordPress greater than 3.0? The custom taxonemy query used by CataBlog to fetch custom categories require 3.0 or a greater version of WordPress. Good luck.

    Plugin Author macguru2000

    (@macguru2000)

    deepbevel,

    Please set this support thread to resolved if you feel I have adequately answered your question. Thanks.

    – Zach

    Plugin Author macguru2000

    (@macguru2000)

    Hi deepbevel,

    So tags were an old term used in CataBlog before version 0.9.5, they have since been converted to categories. You can make categories and add different items into each category in the edit catalog item page. Now when you want to filter your catalog results all you need to do is add a category parameter to the plugin shortcode. What does the shortcode look like?

    [catablog]

    That shortcode will display the entire catalog of items, you can type it in any page or post’s content. If you wanted to only show the items in the dogs category on a specific page you would type something like this into your page or post.

    [catablog category="dogs"]

    Make sure the category matches exactly, including capitalization just to be safe. Good luck, hope that helps and please rate CataBlog and confirm it works with your current version of WordPress at http://wordpress.org/extend/plugins/catablog/

    – Zach

    Plugin Author macguru2000

    (@macguru2000)

    stackstudio,

    if you want the text to be white in the description and another color in the lightbox then you should create a more intricate CSS solution. For instance you should be using classes and not inline style tags, as they cannot be overridden or you can use actual HTML tags in your CSS selectors as well, such as:

    .catablog-description strong {
      color: white;
    }
    
    .catablog-lightbox-desc strong {
      color: black !important;
    }

    Hope that makes sense, if not I would recommend researching some basic CSS rules such as how selectors work in detail. For instance each element in a selector adds points to the strength of each property. Example

    .my-class a {}
    #my-id a {}
    div a {}

    Each selector there has a different strength, the #my-id selector would override any properties the .my-class selector might set. Again I hope I am being clear, please let me know if you need me to point you towards some good reading. Cheers

    – Zach

    Plugin Author macguru2000

    (@macguru2000)

    rcktech

    thank you for your interest in CataBlog. I will answer your questions to the best of my ability.

    Question 1: Can CataBlog link to files?
    Answer: Yes, you can put anything you want inside the hyperlink field, including full and local paths to any PDF file you might have on your server. If you need to have the thumbnail be a link look into CataBlog’s HTML Template controls which let you setup custom ways of displaying each catalog item. Also you can enable HTML in the description of your catalog item so you can put links in the description field of items as well. Also, you can easily setup your template to automatically add anything at the end or beginning of every description.

    Question 2: Does CataBlog have search capability?
    Answer: No, CataBlog currently is not searchable, with a few quick hacks you could enable the searchable and viewable properties of the custom post types giving you a gateway to each catalog item and the ability to search them. But even with that you would still need to build an interface to capture the user’s search and submit the query to WordPress. I think a more custom solution built to your exact needs might be better suited for your second project, especially since I have no idea how CataBlog, or WordPress for that matter will preform with thousands of posts. If you want to experiment with a lot of catalog item’s look into using the XML import feature, it should be easy enough to have your database output a properly formatted XML file.

    Good Luck,
    – Zach

    Plugin Author macguru2000

    (@macguru2000)

    stackstudios,

    when you are trying to override css settings make sure to use !important after the property declaration. example:

    .catablog-lightbox-desc {
      color: black !important;
    }

    Hope that helps, good luck.

    Plugin Author macguru2000

    (@macguru2000)

    Look into the Template tab of the Options page. There you can change how the HTML code is rendered by CataBlog. Load the gallery template using the drop down menu and save, your catalogs should then render in a grid like view. Don’t forget you can also use CSS to override any of CataBlog’s default styles.

    Plugin Author macguru2000

    (@macguru2000)

    3mealsaday,

    Can you please try using the updated shortcode syntax since version 0.9.5, which is [catablog category=”Light”] and see if that helps. If it still doesn’t work can you please email me your WordPress and server information, like versions, os, php extensions, other plugins and anything else you can think of at zac@illproductions.net.

    Hope that fixes it,
    – Zach

    Plugin Author macguru2000

    (@macguru2000)

    kristel_ttm,

    The new version of CataBlog, 0.9.6.1, has a new feature that lets you run your description text through all the current WordPress filters, effectively letting you insert shortcodes into your catalog item descriptions. Please be careful with this feature though, as it has some potential for problems, especially with larger more complex plugins. Also, never ever put the [catablog] shortcode into your description unless you want to cause a never ending loop that could break your blog. Good luck 😉

    – Zach

Viewing 15 replies - 421 through 435 (of 485 total)