macguru2000
Forum Replies Created
-
Forum: Plugins
In reply to: [CataBlog] Title not inside picture and doesn't highlight when scrolled overAlso an example link would help me further diagnose your problems.
Forum: Plugins
In reply to: [CataBlog] Title not inside picture and doesn't highlight when scrolled overHi curiouskat,
If you assign the gallery template and remove the customizations do the titles work like on the demo page? If so this small snippet of CSS code should be placed into your theme’s style.css file to make the title start on the top of the thumbnail.
.catablog-title { top: 0px !important; bottom: auto !important; }Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Lack of SearchYeah, but works and supports are two different things. So I don’t think it’s fair to say my plugin doesn’t do something when your servers aren’t meeting WordPress’ requirements. Check out this site to see search and pagination working fine.
Also, I strictly work with Linux based web servers. While I have nothing against Windows, I also don’t use them. Good luck, and if you figure something out let us know.
Forum: Plugins
In reply to: [CataBlog] WP Library compat. Custom image reorder, etc.Alex,
Thanks for your interest, rating and ideas about CataBlog. Let me address some of your comments.
– I do not think I will be integrating CataBlog with the WordPress Media Library anytime soon, it doesn’t seem to be a necessary feature, yes you might have to upload the same file twice in certain situations. Have you looked into the new public feature, this may help solve your problem by offering a dedicated page for each catalog item.
– There are plans for a “gallery” feature that will let you create distinct lists of catalog items and reorder these collections in any order you want. The reason that a gallery must be created for this is that you cannot order a list of items that may have more than one category, it is impossible. So instead the library will have all catalog items, and galleries will be collections of library items. I wrote about this issue on the blog at http://catablog.illproductions.com/2011/04/ordering-multiple-categories/
– Love the idea of letting people rename the files after they upload them, I also want to let people edit each item’s thumbnail cropping and other such advanced features. Just need the time and inspiration to write the code.
– You could try hacking the catalog taxonomy in CataBlog.class.php, not sure how much PHP you know. I was thinking that in a future release, CataBlog would have its own set of Widgets, including a category cloud, list widget and a random catalog items preview widget.
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Lack of SearchIn fact now that I have done a little research, WordPress does not offer support for MsSql. Are you really using Microsoft SQL with WordPress and why?
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Lack of SearchHi Peterotte,
I am glad to learn of your interest in CataBlog, but I am unsure why exactly you would expect my plugin to have a custom search feature. There is no mention of it as a feature in the plugin’s description. I also wrote a post on the plugin’s blog about this very topic.
I believe it is easy enough to integrate your catalog into the built in WordPress search if you enable the new public feature. I am also not going to recreate the code to expand Shortcodes for searches when other plugins already do it. Personally I believe that responsibility lies within the WordPress core.
As plugin developers we try to be everything to everyone, and well this just isn’t possible. This is especially true when it comes to server configurations. If you are running WordPress on MsSql I don’t really know what to tell you, except that I would look for an ASP solution instead of WordPress, or use another server.
CataBlog has worked as a generic cataloging tool for many a happy person. There is a documented hack to add pagination in the frontend, eventually when I have time I will integrate a better solution directly into CataBlog.
When you mention breadcrumbs, I am curious how you are integrating your catalog. The Shortcode isn’t going to make breadcrumbs, because it has no idea what page it is on, and the public catalog item pages could have breadcrumbs, but it really would just be a list of the catalog item’s categories. This is the same reason why WordPress posts don’t have breadcrumbs themselves, WordPress pages can have breadcrumbs, but not posts. This is because pages can have parent pages, posts cannot.
Forum: Fixing WordPress
In reply to: LightboxHi Zane,
Was hoping you could mark this topic as being resolved, thanks.
Forum: Plugins
In reply to: [CataBlog] Catablog Gallery CustomizationYou could also try the newer, but not as well supported (old browsers are my bane) display method known as inline-block. But I am guessing that either the “big open space to the right” is from either an encapsulating element or a right margin. CataBlog does not have a very large margin by default in the gallery view, so I am doubting that it is the second. Are you sure you are not putting your gallery into a HTML element that is not the full width of your page?
Forum: Plugins
In reply to: [CataBlog] Catablog Gallery CustomizationI’m not sure exactly what file your are planning on editing, but you should know to never edit the catablog.css file in the plugin’s folder, instead make your own catablog.css file in your theme’s directory or add your CSS modifications to your theme’s style.css file instead.
That being said I am unsure what you want to center? Do you want the text centered? Do you want the entire catalog row centered? If you decide to center the entire row you will need to set a fixed width. Here is an example CSS modifier class for CataBlog.
.catablog-row { width: 200px; margin: 0 auto; }or perhaps this is what you want
.catablog-row.catablog-gallery { text-align: center; }Also, there is no center value for the float property, it only accepts left, right or none. I recommend learning more about CSS at the w3schools or using a tool such as Firebug for exploration / self teaching.
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Forced to re-upload FTP'ed filesCrazy cool, my guess is it’s a server memory issue, but I’m unsure. When I have some time I will look into better “Out of Memory” error reporting.
Forum: Fixing WordPress
In reply to: LightboxMake sure you are using the important directive.
display: none !important;Forum: Plugins
In reply to: [CataBlog] CataBlog Feature RequestI’ve wanted to implement support for videos in CataBlog but am busy with other more basic features. Your request has been noted and your request added to the list of features.
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Forced to re-upload FTP'ed filesI am confused about your decision to use 2GB image files for the internet, do you mean 2MB? I routinely use 5 or 6 MB files, and know of digital SLRs that create jpeg files that are maybe 20MB, but 2GB?
I think the GB was a typo, am I right?
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Forced to re-upload FTP'ed filesAre you uploading individual images that are 2 gigabytes in files size, wow! Can you give me example filenames for files that are not read? Do they contain special characters? different file extensions? The filenames on the server is important, not the filename on your local computer.
Also, are there any error messages reported when you rescan the originals folder?
Also I am curious why you would need to redownload a file you just uploaded?
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Options bug (v1.2.9.7)I’m unsure exactly how WordPress’s internals work with the slug paths. But from my understanding, the slug path is not saved in each items database row.
I am looking into clearing the permalink cache when you make changes to the public slug paths. The problem lies in the order of operations and making sure the changes are saved and then the cache cleared. From my understanding the cache cannot be cleared after the page starts rendering, but the new slug paths are actually saved after the page starts rendering…still looking into an elegant solution.
For now simply loading the permalinks admin panel clears the permalink page.