mobe
Forum Replies Created
-
Forum: Plugins
In reply to: [WTI Like Post] Questions and Feature RequestAnd is there a demo or demosite using the plugin?! ??
Forum: Plugins
In reply to: My Review Plugin Support UnavailableSorry Erik,
looks like MyRP is a unsopported since many month. Doesn’t seem this will change in the future and no way to get in touch with mark edwards. Sad.Forum: Plugins
In reply to: [jQuery Pin It Button for Images] Fancybox SupportHi,
thanks for the quick reply. Too bad to hear there is no solution at the moment. Hope you find a way to use this plugin with fancybox.For now, I use the regular pin button below the image in the fancybox description based on this snippets:
https://jsfiddle.net/G5TC3/
https://stackoverflow.com/questions/9352021/how-can-i-rerender-pinterests-pin-it-button/13434570#13434570I came up with this:
.fancybox({ beforeShow: function () { if (this.title) { // Add Pinterest button this.title = '<a id="pinbutton" data-pin-config="beside" href="//pinterest.com/pin/create/button/?url=' + document.location.href + '&media=' + this.href + '&description=via myDomain.com" data-pin-do="buttonPin" target="_blank" ><img src="//assets.pinterest.com/images/pidgets/pin_it_button.png" /></a><br />' + this.title ; } }, afterShow: function() { // Render pin button var element = document.getElementById('pinbutton'); (function(x){ for (var n in x) if (n.indexOf('PIN_')==0) return x[n]; return null; })(window).f.render.buttonPin(element); }, helpers : { title : { type: 'inside' } } });
Perhaps it gives you some inspiration, as the pin button gets rendered explicit this way, too.
Forum: Plugins
In reply to: [Post Meta] Use existing Custom Field KeysThanks for the reply. But if it is not possible to use existing custom field keys with this plugin, it is uninteresting for me as I have lots of existing fields and dont want change them.
Forum: Plugins
In reply to: [Simple Fields] Use existing Custom Field Keys in Simple FieldsThanks P?r for the quick reply. Can’t belive this is the fourth Custom Fild Plugin wich I tested doesnt support using existing custom field keys.. Makes this kind of plugins useless for most scenarios were you want to enhance your existing Blog with Post Editor Forms for custom fields. Definitly a feature you should implement.
I stick to custom Code in my functions.php as decribed here:
https://www.deluxeblogtips.com/2010/04/how-to-create-meta-box-wordpress-post.htmlFor others searching for a Plugin Solution: “Custom Fields Creator” and “Meta Box” seem to support existing custom Fields.
Forum: Plugins
In reply to: [Meta Box] Create post with meta boxes from the Front EndSecond motion this Question. I am interested in Frontend Post creating for Users too.