Bainternet
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Instant Search] search rulesits the same as WordPress default search function and you can use the provided filter and action hooks to overwrite it to follow any rule you want.
Forum: Reviews
In reply to: [Advanced Code Editor] Great!there is a different plugin for that http://wordpress.org/plugins/post-editor-zen-coding/
Forum: Plugins
In reply to: [Advanced Code Editor] Where do the commits get stored?its in the database not in the filesystem, a custom table named filemeta
Forum: Plugins
In reply to: [Advanced Code Editor] where's the undo button?CRTL + Z
Forum: Plugins
In reply to: [ShortCodes UI] Combining php and htmlNot use query__posts for starters.
Its meant to modify the main query which is clearly not the case here.
And for a better solution you should use a code that returns php and not echo’s it out so try this:$html = '<div id="tjanster">'; $i=1; $qs = new get_posts(array('category_name'=> 'tjanster')); foreach ($qs as $q) { $html .= '<div class="tjanster_post tjanster_nr_'. $i .'">'.$q->post_content.'</div>'; $i++; } $html .= '</div>'; return $html;Forum: Plugins
In reply to: [ShortCodes UI] Exporting Shortcode Not WorkingThanks will do.
Forum: Plugins
In reply to: [Social Comments] Moderate comments, Facebook – BlockYes if you add AppID you or anyone who can moderate comments will see a link to Facebook comments moderation above the Facebook comments.
Forum: Reviews
In reply to: [Social Comments] BadIts sad you decided to rate so low before ever contacting me and reporting on any “errors” or features you would like to see.
1st) The Google comments min-height is something that is st by google and not this plugin. which is fixed in 0.1.2
2nd) why cant you use your Disqus account?
Forum: Plugins
In reply to: [Comments Evolved for WordPress] Clone :)🙂
Forum: Plugins
In reply to: [Social Comments] Clone / Fork ?Forum: Plugins
In reply to: [Comments Evolved for WordPress] Clone :)I feel like i have to reply yet again 🙂
1. The CSS used which you are “accusing” me of forking from your plugin actually came from here http://keith-wood.name/uiTabs.html#tabs-min
2. Using classes vs “traditional wp procedural way” : This is not really the case for so long and if you look at some of my other plugins that i have published here you will see that it’s the way i code all of my plugins and not some “cleaver” way to cover up a “forked code” like you make it out to be.
3. Like i Posted on my blog the main reason for creating this plugin is actually to test out another plugin I’m working on which is some kind of a boilerplate maker for plugins and I din’t think i have to contact you for creating a plugin From Scratch to test my code.
4. I’ve worked on countless of Open Source projects and Am myself a true believer of the Open Source Way. That way any of us plugin developers are here supporting our plugins which are released freely.
5. I like your plugin and think that it does a grate job in doing what it does.
6. I’d be happy to contribute to your plugin and help out if you want. But “forking” your plugin was not the reason for creating the plugin or did i even fork your plugin.
7. I’d be more the happy to collaborate with you on this or future projects and would even ask you to test out my “boilerplate maker for plugins” plugin if you are up to it.
And any way,
Good luck.
Forum: Plugins
In reply to: [Comments Evolved for WordPress] Clone :)@brandon hi,
I admit and have no reason to hide the fact that the idea came form your plugin but nothing in my code even looks like your so saying its a fork of your code is …
And Seriously if it make you happy I’ll add your name in a credit remark.
Forum: Plugins
In reply to: [ShortCodes UI] shortcode in functions.php doesn't displaytry using the right function :
echo do_shortcode("[yourshortcode]");Forum: Plugins
In reply to: [ShortCodes UI] Mailchimp form – was working, now not workingNO IDEA!
if nothing has changed then there is no reason for it to work one day and not work the next day.
So something has changed! maybe a theme or another plugin update, maybe mailchimp changed something.
So that is a start.
Forum: Plugins
In reply to: [ShortCodes UI] Thanks and questioncreate an advanced shortcode and in the php section add
return get_the_title();