Forum Replies Created

Viewing 15 replies - 346 through 360 (of 485 total)
  • Plugin Author macguru2000

    (@macguru2000)

    Hi lucydog,

    Currently you may edit the Store template in the CataBlog Options Admin Panel. This HTML template is used to render buy now buttons when the catalog item’s price is over zero. The paypal.htm template I provide may be easily edited to meet your specific needs or completely changed to work with another payment service.

    To answer your question, I believe your PayPal profile’s default settings for shipping and tax will be used with CataBlog purchases. Below, I have linked to PayPal’s HTML variables list, you may add any of these to the Store template.

    https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_Appx_websitestandard_htmlvariables#id08A6HF080O3

    Also, please please please, if you have not already done so, rate and confirm that CataBlog works with your version of WordPress at http://wordpress.org/extend/plugins/catablog/

    Also, if you can like the CataBlog Facebook page at http://www.facebook.com/pages/CataBlog/183454038341567

    Good luck and let me know if I have helped to answer your question.
    – Zach

    Forum: Plugins
    In reply to: [CataBlog] catablog display
    Plugin Author macguru2000

    (@macguru2000)

    Hi Ernesto,

    There is no need for any other plugins, including a ShortCode plugin. CataBlog uses WordPress’s built in ShortCode API, and requires no other plugins. If you have CataBlog installed all you need to display your catalogs is to enter [catablog] in your WordPress page’s body content. If that does not display your catalog please try disabling all other plugins and switching to the TwentyTen theme. If that still does not display your catalog can you confirm that you are using WordPress 3.0 or better and PHP version 5 or better. This page might also be useful to read if you haven’t already read it.

    http://catablog.illproductions.com/documentation/displaying-your-catalog-in-posts/

    Also, please please please, if you have not already done so, rate and confirm that CataBlog works with your version of WordPress at http://wordpress.org/extend/plugins/catablog/

    Also, if you can like the CataBlog Facebook page at http://www.facebook.com/pages/CataBlog/183454038341567

    Thanks and let me know if that answers your question.
    – Zach

    Plugin Author macguru2000

    (@macguru2000)

    Perhaps it was your browser cache, many time a day I hold shift while refreshing a page to make sure the browser goes back to the server for all of the page resources.

    Plugin Author macguru2000

    (@macguru2000)

    Hey, so #empty-link is what CataBlog replaces the %LINK% token with when their is no link set for that item. This is to keep your HTML valid, since an a tag shouldn’t have an empty href attribute. As you populate each item’s link field the empties should go away. Can you check that this is behaving as expected, and report back. Thanks.

    Plugin Author macguru2000

    (@macguru2000)

    – SIDE NOTE –
    If you have a custom template that you don’t want to change, just make sure the token inside the href attribute of the a tag in your CataBlog template is %LINK% instead of %IMAGE-FULLSIZE%.
     

    <a href="%IMAGE-FULLSIZE%" %LINK-TARGET% %LINK-REL%>

    This links to the full size version of the image, this is appropriate for image galleries.
     

    <a href="%LINK%" %LINK-TARGET% %LINK-REL%>

    This links to the url you enter in your catalog data, this is appropriate for product catalogs that have separate product pages.
     

    This difference in where the link goes to is the only difference between the grid and gallery templates. You should use the appropriate template depending on your individual needs.

    If anyone has any more questions, please feel free to post them here.

    Plugin Author macguru2000

    (@macguru2000)

    Hi kfs84,

    After looking at your page it is clear to me that you will need to change your CataBlog template, it is in the options panel. You have most likely selected the gallery option from the drop down menu at a previous time. This is why the thumbnails link to the original image instead of the link you set in the admin panels. If you select grid instead from the template drop down menu and load and save that CataBlog template, you should be set. I would also make sure that the LightBox is disabled, since you won’t be using it.

    One other small note, people have been noticing an error in the default CSS for the gallery and grid CataBlog templates in Internet Explorer. If you are experiencing this problem as well I would suggest that you add the below CSS to a stylesheet in your theme folder.

    .catablog-gallery.catablog-row .catablog-image {
        float: none !important;
    }

    Good luck and let me know how that works out for you. Also if you haven’t already done so, please rate and confirm CataBlog works with your version of WordPress at http://wordpress.org/extend/plugins/catablog/

    Also if you have a facebook account liking the CataBlog page is always a plus. You may look for information about CataBlog and post a link to your site or a story at http://www.facebook.com/pages/CataBlog/183454038341567

    Plugin Author macguru2000

    (@macguru2000)

    I am pretty sure I understand what you are describing, and yes I think that should work perfectly. Just understand that CataBlog wasn’t intended to make pages, but to make lists you may put into pages. One problem you may run into is that currently their is only one HTML template for the whole system. This should be overridable in the ShortCode, trust me it will be coming in a future release.

    Plugin Author macguru2000

    (@macguru2000)

    Hi Aaron,

    I am curious how many categories and products you plan to have? Traditionally I have told people that they should use categories to separate out a group of items for a specific page. So if you have a product categories page make a category for that, then make categories for each sub-category and place your catalog items into them. Keep in mind that CataBlog does not currently make pages, so you will need to make a WordPress page for each product category, sub-category and product. You will then need to place the appropriate shortcode onto each page.
    ie: [catablog category="cat 1"]

    If you have too many products to do this for, then you could perhaps hack CataBlog to generate product pages, you will need to create a template file for the catablog item page in your theme and regenerate your permalinks, but it is possible. If you want to go this route let me know and I will explain how to hack CataBlog in this manner.

    Zach

    Plugin Author macguru2000

    (@macguru2000)

    Glad to hear that fixed the problem. One more fix for the bug tracker 🙂

    Plugin Author macguru2000

    (@macguru2000)

    I am unsure about the specifics, but yes this sounds like a bug.

    After looking at the code, I noticed that I am using an undocumented function to add the CataBlog menu, add_object_page(). This could very well be the problem. You may try replacing that function on line 239 with the documented add_menu_page() function.

    Another idea is that WordPress has a limit of 5 custom menus and you have hit that wall. If this is the case, I do not know what to suggest other then removing one of your custom post types.

    Good luck and let me know if you figure anything out.
    Cheers

    http://codex.wordpress.org/Administration_Menus
    http://codex.wordpress.org/Function_Reference/add_menu_page

    Plugin Author macguru2000

    (@macguru2000)

    Hi Bossn1nj4,

    I think what you want to do should be pretty easy. After you create each product page setup your catalog items with a link to each internal product page. I guess what I mean is this…

    1. configure CataBlog.
    1. turn off the LightBox option.
    2. load the grid CataBlog template and save.
    • create a regular WordPress page or post for the product.
    • create a new catablog item for the product
    1. upload your image and set your title / description
    • set the link to the internal permalink of the product page from step 2
    1. example /2011/05/product-1/
    2. do not include the domain in the link and don’t forget the slash at the beginning and end.

    That should be it, now you will have a thumbnail in your catalog that links to a separate products page.

    I assume you mean you removed the shopping cart section from the edit catalog item form. Most likely empty values are still being stored in the database. Its okay though, the empty values are part of a serialized field and won’t bloat your database.

    I will say, if it meets your needs then awesome, just keep in mind that if you upgrade CataBlog all your modifications will be overridden and the form will return to whatever default state it is in.

    You may also be interested in describing the steps you took to remove the store fields incase anyone else out there is interested in doing the same thing.

    Cheers,
    – Zach

    Forum: Plugins
    In reply to: [Plugin: CataBlog] cirilic

    Hi wroomm,

    First off, there is no way to make a catalog item without an image, I can see the benefit to allowing imageless catalog items, but I am also trying to concentrate on other more important aspects of CataBlog when I get the chance.

    Now for the Cyrillic language issues.

    It is true that I have restricted the category names to roman alphanumeric characters with a few special symbols like hyphens, underscores and spaces. I did not see the short sided effect of locking out non roman alphabet based languages. My suggestion for immediate usage of CataBlog is to switch your keyboard settings while you setup your categories and give them labels that will be understandable, albeit in the wrong language.

    As for putting the currency in the price field, that is not the intended usage. The currency should be put in the paypal form code and possibly in the CataBlog template code, not in the actual price field. The price field will only take a decimal number.

    Thanks and I hope I have answered your questions.

    Also please don’t forget to rate and confirm CataBlog works with your version of WordPress at http://wordpress.org/extend/plugins/catablog/

    hi christogeretz,

    I’m glad to hear you were able to adapt CataBlog to your site’s needs. I am a little confused / concerned when you say you “removed” the “shopping cart”. Are you referring to the CataBlog Template? Did you actually edit the plugins code? How come the “shopping cart” had to be removed and couldn’t just be ignored? What exactly would turning on/off the “shopping cart” functionality do?

    CataBlog is not just an eCommerce solution, it is also a gallery and cataloging tool, many more people use it to create well formatted lists then use it for selling products. You may see a list of example sites that use it at http://catablog.illproductions.com/. One of the new features I am currently working on is letting people configure their own set of meta fields for each catalog item. Currently the meta fields are price and product code, but could be anything.

    Thanks for your comment and please rate and confirm CataBlog works with your version of WordPress if you haven’t already at http://wordpress.org/extend/plugins/catablog/

    Plugin Author macguru2000

    (@macguru2000)

    djenk,

    What version of CataBlog did you upgrade from? On the plugins repository page their is a specific warnings.

    Pre Version 0.9.5 Upgrades: This version of CataBlog will not upgrade properly with yours. Please install CataBlog 1.1 and update the database before upgrading to CataBlog 1.2.

    Also you should read the blog before updating and look for new posts about new releases and features, some of which might include warning.

    http://catablog.illproductions.com/

    Also, I hate to say this in, but you should always backup your catalog before performing an update. I hope you have not lost to much interest in CataBlog and are still going to use it.

    One thing you might try is downgrading the plugin back to the old version you ran and seeing if your catalog reappears. If it does, do an export and then upgrade and import. Simple as that. Good luck.

Viewing 15 replies - 346 through 360 (of 485 total)