Kailey (trepmal)
Forum Replies Created
-
Forum: Plugins
In reply to: [Mini Loops] PaginationUpgrade to v1.2 and try this add-on plugin to add ajax-paging
Forum: Plugins
In reply to: [Mini Loops] How to use with Multisite Installation?Upgrade to v1.2 and use this add-on plugin for multisite support
Forum: Plugins
In reply to: [More Mime Type Filters] Want to add more MIME type (apk)Check out the FAQ, you can add extra mime types by making them allowable uploads.
Forum: Plugins
In reply to: [Storenvy] Update StorenvyHi,
Sorry for the trouble. There were some API changes on Storenvy’s end that I wasn’t able to keep up with – my fault for not realizing the method this plugin relied on was going to be deprecated.
Anyhow, version 0.4 was just released which should restore basic functionality while I work on bringing back other functionality. Let me know if it still gives you trouble or if you have any questions on the changes in 0.4.
Forum: Plugins
In reply to: [Storenvy] Warning: simplexml_load_string():Hi folks,
Sorry for the trouble. There were some API changes on Storenvy’s end that I wasn’t able to keep up with – my fault for not realizing the method this plugin relied on was going to be deprecated.
Anyhow, version 0.4 was just released which should restore basic functionality while I work on bringing back other functionality. Let me know if it still gives you trouble or if you have any questions on the changes in 0.4.
Forum: Reviews
In reply to: [Storenvy] Update: works well now!Hi,
Sorry for the trouble. There were some API changes on Storenvy’s end that I wasn’t able to keep up with – my fault for not realizing the method this plugin relied on was going to be deprecated.
Anyhow, version 0.4 was just released which should restore basic functionality while I work on bringing back other functionality. Let me know if it still gives you trouble (and if it doesn’t, could I bother you to update your star-rating?).
Four months later….
You can allow additional filetypes to be uploaded with code like:
add_filter( 'upload_mimes', 'make_alfredextenstion_allowed_upload' ); function make_alfredextenstion_allowed_upload( $mimes ) { $mimes['alfredextension'] = 'application/octet-stream'; $mimes['alfredtheme'] = 'application/octet-stream'; return $mimes; }Where
alfredextensionandalfredthemeare the file extensions to be allowed.These will be automatically listed on the More Mime Type Filters admin page.
Forum: Plugins
In reply to: [Mini Loops] Custom fieldsYour field code is slightly off. Try this
[field name=befattning single=1]Forum: Plugins
In reply to: [Add New Default Avatar] Overwrites "Simple Local Avatars" pluginJust released version 1.3. It’s been sitting in development for a while and doesn’t seem to have the problem when working alongside Simple Local Avatars (but added an extra check anyway).
Let me know if it works (or not…) for you.
Forum: Plugins
In reply to: [Add New Default Avatar] Overwrites "Simple Local Avatars" pluginAt the moment, I’m not sure.
I’ll take a closer look in a few hours and see what sort of fix I can come up with.
Forum: Plugins
In reply to: [Post Title Color] I Love This Plugin!Version 1.2 is compatible with the new WordPress 3.5 color picker.
If you comment/remove the line that says
if ( $query->is_main_query() )(line 107 in version 1.2) it will allow the title color to take effect everywhere*.*Everywhere being where either
the_title()orget_the_title()is used, orthe_titlefilter is called. If a plugin/widget is fetching the title directly from the database and not passing it through the filter, Post Title Color won’t be able to apply a color.Forum: Plugins
In reply to: [Simple Mobile URL Redirect] Redirect Once – less than a dayNot without changing the plugin code.
Open mobile-redirect.php. Change
intvaltofloatvalon lines 71 and 133.With those 2 things changed, you can save a decimal value in the Redirect Once Cookie Expiry option.
.04will be give you just under an hour.Thanks for the feedback. I’ll note this feature request and possibly incorporate it into a future release.
Forum: Plugins
In reply to: [Simple Mobile URL Redirect] [Plugin: Simple Mobile URL Redirect] Not workingI know it’s been a few months, but it works well for me.
If it’s still an issue, would you be willing to troubleshoot and help find the cause of the problem you’re having?