Nov-24
2009
Fresh Support Thread for My Other Plugins
Topic: Deko Boko, Koumpounophobia, Post to Post Links II
Use this post for support questions about Deko Boko, Koumpounophobia, or Post-to-Post Links II.
I just posted a minor upgrade to wordpress.org for Koumpounophobia, which fixes a CSS display issue with the dialog editor. Also, Koumpounophobia and Post-to-Post Links II now include Russian translations, thanks to Fatcow. And Deko Boko has a new Italian translation, thanks to Raneri web design.





January 2nd, 2010 at 9:57 pm
Hey great plugin! This seems the ultimate internal-link solution!! I was long searching for a plugin that would allow linking categories and tags!
Tomorrow I’m gonna install it and do some tests. I have 2 improvement suggestions:
1) instead of using “text parameter” for the anchor text, use the shortcode content, this way we can add anything with more freedom, as images and other HTML elements, being able to use single and double quotes freely.
2) Add another parameter, so that we can add #section to the link, and this way point to specific areas of the post. If post permalink is exemple.com/post-slug, it would become exemple.com/post-slug#section
January 3rd, 2010 at 9:35 am
Thanks Hikari. I don’t think it’s possible to “use single and double quotes freely” with the WordPress shortcode syntax. It requires a x=”y” format, or x=’y’. The parsing is good – if you delimit with double quotes, you can use single quotes in the content, and vice versa. But you can’t have both single and double quotes in the content at the same time (unless you use entities).
I haven’t tried using an image – that’s a good idea – I’ll see what I can do with it. Your #section suggestion is also a good idea. Thanks!
I’m also planning to add an auto-completer, so if you start typing a post slug, it’ll try to match it to an actual slug for you.
January 6th, 2010 at 12:17 am
I’ve took a look on your code and I was impressed with it, great quality and pleasurable to read.
I didn’t have time, but I’m willing to tweak it. Currently I use cref to inter-post linking, but it is orphaned. Your plugin is great and they work together without conflict, so I’m gonna use it from now on.
Category and tag linking was really something I was badly needing. I use to make large posts and I already have a table of contents building plugin, I’m gonna develop a full featured one this year and section linking inside posts links is also becoming a need
I’m just finishing an iteration of my theme development and I’m gonna publish a post and then work on your plugin. If you want, I can share my code so that you add it to your distribution. My ideas are not hard to implement anyway
About my suggestion 1), what I meant is that, for a link building, we have more freedom using
[shortcode]link "content"[/shortcode]than[shortcode text='link "content"'], even though both approatches work.January 6th, 2010 at 9:44 pm
Hi Hikari
Thanks for explaining about the shortcodes – that’s a really good idea. I’m busy working on one of my other plugins right now, so it may be a while before I get back to Post to Post Links. Any enhancements you’d like to make are very welcome. If you send them to me I can incorporate them, and I’ll give you credit.
January 8th, 2010 at 5:09 pm
Ok, I had a problem on my development environment and it will take some time to fix, so I’ll just rollback to stable version and work on your plugin so that I can start using it.
Where can I send my contribution to?
January 9th, 2010 at 6:14 pm
done: http://images.hikarinet.info/temp/Post2Post.phps
I added a changelog explaining what I’ve changed.
I forgot to add
added some validation checks for when passed ip or slug is not found in database
I did some tests and everything seems working fine and consistent
January 10th, 2010 at 4:29 pm
Thanks very much Hikari. I will try it out – if all goes well I will incorporate your changes into the next release. Thanks very much for your contribution!
January 24th, 2010 at 1:50 pm
When I try to add multiple recipient addresses using comma delimiting, it either only sends the email to the first address, or none of them.
Any thoughts or ideas?
January 24th, 2010 at 2:54 pm
Hi Jim – Sorry you’re having trouble. Deko Boko uses the wordpress wp_mail function to send the emails, and it is designed to accept multiple addresses separated by commas. You’re probably having one of two problems:
1. The messages are being sent, but are ending up in the recipients spam folder, so definitely check that; or
2. Your server’s mailer isn’t configured to accept multiple comma separated addresses.
If it’s #2, a way around the problem is to send the message to each address one at a time. To do this you’ll need to customize your copy of DekoBoko. Go to line 520 in DekoBoko.php where you’ll see this:
And replace it with this:
$emails = split(",", $to); foreach ($emails as $email) { $status = wp_mail($email, $subject, $message, $from); }If that doesn’t fix it for you, let me know. And remember if you upgrade Deko Boko in the future, you’ll need to add these lines of code again.
Mike T
January 24th, 2010 at 4:45 pm
My mail server is a qmail toaster, and it handles comma-delimited addresses just fine when sent from mail readers like thunderbird and theBat.
I added the code you suggested to send the e-mails indivually, and that seems to work.
Thanks
February 23rd, 2010 at 1:29 pm
Hi. Sorry about posting on the old post.
You were right; at http://gamersroute.com/about/ the error says line 284. On the settings page it’s line 245 and 246.
Maybe something went wrong when I imported the old DB to the new WPMU? Should I change any tables from wp_ to wp_1_ ?
I can probably use other forms but with reCAPTHA and simple templates, I really hope to use Deko Boko with WPMU. It’s the best contact form so far.
March 7th, 2010 at 1:55 am
I have installed Deko Boko on a fresh WordPress 2.9.2 site. At first all seemed fine, but when I went to test it, it failed. I can fill out the form, but it always gives me a “ReCAPTCHA error”, even when I type the puzzle correctly. In addition, despite saying that an error occurred and I should retry, I still get the contact email message. So it seems to be broken a bit in two ways. Is this plug-in not compatible with 2.9.2?
My form: http://www.kirstenlewis.com/contact/
Thanks,
Bryan
March 10th, 2010 at 9:40 pm
gamesroute – if you’re still out there, this comment from a wpmu user concerning my Shashin plugin may help:
http://www.toppa.com/2010/shashin-2-6-snowpocalypse-edition/#comment-27636
Please try making the same edit to line 39 of DekoBoko.php and let me know if that helps.
March 12th, 2010 at 7:07 pm
Hi I had Deko Boko working before, but now I get the message:
* Invalid Nonce
when entering every thing correctly. Ive tried deactivating and reactivating the plugin, any other ideas?
Thanks
March 12th, 2010 at 8:37 pm
Mike, I love your Deko Boko plugin! I want to include the “Name” and “Email” in the information which is sent from the form by email. I know it is in the “contact” info for the email that is sent but I would like to get the Name and Email data in the same group as the rest of the form’s data that is submitted. What do I need to change in dekoboko.php to get it to do that. In other words, if the form collects Name, Email, Address, City, ST. How do I get the name and email address to show up in the generated email with the rest of the data, even though it is obviously being used in the CC option for the customer. I doesn’t end up on the copy of the form info that is emailed to us for some reason and we didn’t change anything on your sample-contact.php for the name and email fields. We just added more fields. Let me know what I need to change in the php to do this properly. Have a great evening!
March 13th, 2010 at 9:01 pm
Ok so I uninstalled and reinstalled and now it works… weird