Kailey (trepmal)
Forum Replies Created
-
Forum: Reviews
In reply to: [Mini Loops] use newspaper and real estate projectCan you put the code in between backticks(`)? Hopefully that’ll fix the forum’s formatting.
wp-types prefixes the ‘real’ names of the fields
http://wp-types.com/documentation/functions/: “Important note:
The field name is as it appears in Types GUI β not the actual name of the field in the database. This is the βsimpleβ name, without the <em>wpcf</em> prefix.”So you’ll need to use
[ml_field name=wpcffiyat](or maybe[ml_field name=wpcf-fiyat]?) Check your database for how the fields are actually named.Forum: Reviews
In reply to: [Mini Loops] use newspaper and real estate projectPlease post the code you’re using. If more than a couple lines, please use a service like Pastebin or Snippi.
Also, any other relevant details like whether you’re using the widget or shortcode.
Forum: Plugins
In reply to: [Mini Loops] Get info from more fields in mini loops@patrick_wolf: The shortcode function should return data, not echo it.
I don’t know wheremeta()comes from, but you may need to either simply return that:
return meta('vanafPrijs');or find/create an alternate function that will return, perhapsreturn get_meta('vanafPrijs');@ebartan: You’re going to need to be a bit more specific.
Forum: Plugins
In reply to: [Add New Default Avatar] WPMU Network-wide default?Look into the
wpmu_new_blogaction hookhttp://phpxref.ftwr.co.uk/wordpress/wp-includes/ms-functions.php.source.html#l994
Forum: Plugins
In reply to: [Add New Default Avatar] WPMU Network-wide default?This plugin does not currently support any network-wide settings. I’ll consider this a feature-request, though, and see about getting it into a future release.
Forum: Plugins
In reply to: [oEmbed Instagram] [Plugin: oEmbed Instagram] Short URL supportSupport for Instagram oEmbeds have actually landed in core, so once WordPress 3.5 comes out, you won’t even need a plugin.
Forum: Plugins
In reply to: [oEmbed Instagram] [Plugin: oEmbed Instagram] Short URL supportShort url support can be added with this code, if you want to add it yourself:
wp_embed_register_handler(
'instagram',
'#http://instagr.am/p/[a-zA-Z0-9\-_]+/?$#i',
array(&$this, 'oembed_handler')
);Just look for the similar code that uses the full ‘instagram.com’ domain and stick this after. This code also adds support for image IDs with underscores (e.g. http://instagr.am/p/OXTzfLSY_M/)
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Miniloops inside another shortcodeNested shortcodes are not supported directly by WordPress. In order to allow it, the outer shorcode (sws) would have to be modified and told to process shortcodes inside.
I’m not familiar with sws, so I don’t know if that plugin has an alternate means already built in.
I think Mini Loops has the features you need without hacking the plugin. I’d recommend checking that out to see if it will work better for you.
Here’s the function you’re looking for: is_plugin_active()
Haven’t used it much myself. Wanna take a stab at it and let me know if you still need a hand?
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Blank pages after updateHi,
Really sorry about that, some how one if the files didn’t get included with the update. Should be there now if you redownload 1.1, and will be there if you update to 1.1.1 which should available any minute not if now already.
Again – I’m really sorry. I know how much it sucks when a plugin kills things π
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] error after updateHi everyone,
Really sorry about that, not sure why widget.php didn’t make it in there. Should be there now if you redownload 1.1, and will be there if you update to 1.1.1 which should available any minute now if not already.
Again – I’m really sorry. I know how much it sucks when a plugin kills things π
@brad, thanks for the suggestion.
In the future, when your post is unrelated the thread, please start a new topic. You can do so by using the form on this page: http://wordpress.org/support/plugin/add-new-default-avatar
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Usage for [ml_field]This is not currently supported. I’ll consider it for an upcoming release though.
Forum: Hacks
In reply to: Add a 'virtual page' from pluginSo you want to have ‘my-plugins-public-page’ but not actually have the page created in the admin?
WP_Rewrite can probably get you there. Are there going to be multiple fake pages? Is that faux-slug going to be used as a unique identifier, to include a file or something?