blago
Forum Replies Created
-
Forum: Plugins
In reply to: [File Away] Create Expiring Encrypted Links?You could set a time-out to your links by wrapping the FileAway shortcode with one from another plugin, for example the “Show/Hide Content at Set Time”: link to plugin The link itself can be encrypted within FileAway.
Forum: Fixing WordPress
In reply to: set current_category in 3.0 menu possible?OK, found a way to hook into the function using
nav_menu_css_classand wrote a function that adds an ancestor css-class to the proper item in a separate menu. Write-up here at blago.net.Forum: Plugins
In reply to: [Get the Image] [Plugin: Get the Image] Get the imagehilarious. No, make that: sad. And a warning: when you write easy to use plugins, some users expect them to work intuitively, before actually reading the “instructions”, it having magical DWIM functionality (Do What I Mean). Apparently, your time doesn’t matter, only their “wasted” 10 minutes. Justin, please know that *most* of us do value your work; a lot!
Forum: Fixing WordPress
In reply to: installation on WAMPMaybe try a Google search? I seem to remember a similar issue, which was resolved by finding and deleting all whitespaces after the closing ?> php tag, in all your WP files (including plugins). There was a plugin that actually performed this chore, and it found numerous instances in the official WP php code where spaces existed after the closing tag. Maybe it’s that?
Forum: Plugins
In reply to: [Plugin: Custom Taxonomies] bug in saving post with custom taxonomy?Have disabled the Custom Taxonomies plugin, and simply made my own using the code of Justin Tadlock. Which is about 3 lines of standard WP code, compared to 6 separate php files of the other plugin! Am also *much* happier with the admin interface now. And my tags will remain attached to the post even if I alter its date.
I’d say: resolved. Note to self: RTFM.Forum: Plugins
In reply to: [Plugin: Custom Taxonomies] bug in saving post with custom taxonomy?Sorry about the omission. I’m using the Custom Taxonomies plugin.
Forum: Fixing WordPress
In reply to: [Plugin: List category posts] Images showing in list category postsyes; I am using a thumbnails plugin (WP Post Thumbnail) and List Category Post and a custom template for displaying thumbnails. For the img source, you could use something like
get_post_meta($single->ID, 'gallery_tmb', true)– and gallery_tmb would be the metatag for your thumb.The plugin isn’t working totally perfect, tho’- make sure you back-up your template, as mine got deleted when I upgraded the plugin… AND its variable
$cat_link_stringrenders a broken html end-tag:<a/>ought to be</a>, of course.