macguru2000
Forum Replies Created
-
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Someone can help please?Unfortunately not. But if you figure it out and want to post your own videos that would be very helpful for the next user. Good luck.
Forum: Themes and Templates
In reply to: [CataBlog] [Plugin: CataBlog] Caption or excerpts to lightboxActually, I meant which CataBlog Template are you using? Don’t remember off the top of my head, but the LightBox looks for an HTML element with a specific class for the LightBox description. I believe the class is
catablog-description.Example link would help me a lot too.
Forum: Themes and Templates
In reply to: [CataBlog] [Plugin: CataBlog] Caption or excerpts to lightboxWhich template are you using? You need to make sure the content you want to appear in the LightBox description is in a div with class
catablog-description.Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Adds two tags around each paragraphI’m gonna go and guess that WordPress is adding the new paragraph tags automatically because of the new TingMCE Editor that give WYSIWYG capabilities to the description.
The Default Template should definitely have the paragraph tags wrapping the %DESCRIPTION% token removed. Good catch, thanks!
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Connecting store to paypal?Actually the whole concept of tokens allow you to enter variable data into a template, allowing each rendering to be unique. Their is a list of available of token at Making Custom Templates.
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Next Page Won't workIt looks you are displaying multiple galleries on your demo page. I am sorry to say that you can’t have multiple galleries with next and previous links on one page.
Instead of going back and forth between discrete galleries, you will be changing the page on all galleries.
Eventually I would like to implement an ajax, dynamic pagination so you can put as many galleries as you want on a page.
Thanks for understanding this limit.
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] PERMALINKS Pages Are BlankAre you sure the Public feature is enabled and you are using pretty permalinks? Have you tried going to the Settings > Permalinks page in admin, just viewing the page resets your site’s permalink cache.
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Connecting store to paypal?All you need to do is paste the paypal button code into the store template at
your-site/wp-admin/admin.php?page=catablog-templatesYou can replace any form fields with CataBlog Tokens if you want.
Learn more at the blog: http://catablog.illproductions.com
Forum: Plugins
In reply to: [CataBlog] Content for catablog item permalinkI am not familiar with your theme, but that doesn’t really matter. Your single-portfolio.php file is used to render pages at specific urls (context), if you could give me an example url structure that uses that file I might be able to give some suggestions. Still, my assumption is that the url (context) that uses your special theme file has no references to CataBlog, and therefor cannot magically load the catalog item you want.
To explain why your code snippet doesn’t work: you cannot use catalog item data in the single-portfolio.php file unless you first load a designated catalog library item first. When at a CataBlog Public url the catalog item data is automatically loaded, allowing that code block to work. You can load catalog items manually using PHP functions, let me know if you want me to elaborate on this.
Why do I ask about the context? Because you need to understand that WordPress only know about CataBlog items as pages if you use the “Public” feature. Then the appropriate catalog item is automatically loaded by WordPress when you view the appropriate url (context) in your site’s front-end.
The single-catablog-item.php file is used to control how single catalog items are rendered when viewing a specific url (context) that is associated with that catalog item. You can find the permalink to that url in the edit catalog item page in admin, right under the title field.
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Removing Catablog menu from admin barCould you give your client a less privileged account, perhaps an editor account?
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Removing Catablog menu from admin barFirst off, how would removing the admin bar stop your client from just going to the wp-admin/plugins.php and loading the admin plugin interface. Sounds to me like you want to freeze your WordPress setup and use it more like a building block and less like an actual web application.
Well then, I would suggest you ask the other plugin developer to modify their plugin so it works with more than just the stock admin bar. You can also write your own plugin (it’s really easy) to properly remove all registered admin bar items. The admin bar is a well documented feature that should be embraced, like so many other plugin developers have done by adding their own menus to the admin bar.
Anyways, I would never ever edit any core files, it is a great way to cause all sorts of headaches when you want to update WordPress, oh, but I guess you don’t want to do that…
Forum: Plugins
In reply to: [CataBlog] Content for catablog item permalinkwebfreelance, what context in the site is your single-portfolio.php page being used? Is it part of your WP Theme? Is it a separate script altogether? Can you please try and describe exactly what you want to achieve without any technical code or ideas. Thanks.
Forum: Plugins
In reply to: [CataBlog] Content for catablog item permalinkIf you create a file called
single-catablog-item.phpin your theme’s directory then that file will be responsible for rendering single catablog item pages. This allows you to control the page rendering on individual catalog item pages, without changing the page rendering on regular posts or pages.Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Catablog "select images" button disappearedI am unsure which folder you are talking about? There are two different CataBlog folders, one is in
wp-content/plugins/and the other is inwp-content/uploads/. You should only worry about the one in your uploads folder.You will also need to export a CSV or XML backup of your catalog data, this does not include your galleries, but does include all library items and categories. To be safe you can export both versions, just in case one works better with a different version of CataBlog.
Next go to your new installation of WordPress, install and activate the latest version of CataBlog. Now, copy the CataBlog folder you backed up into the
wp-content/plugins/folder. Next go to the CataBlog Options Import Tab and choose either the CSV or XML version of the file you exported previously.Good luck and please mark this thread as resolved. If you have other questions please start a new thread.
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Removing Catablog menu from admin barYou should remove the other plugin that “removes the admin bar” from the top of the page. Instead use the built in WordPress option to turn it on or off, it is in the User > Your Profile section. Besides, IMHO the admin bar is truly a user preference, that should be available for other admins.