Ameisenman
Forum Replies Created
-
Forum: Plugins
In reply to: [YOP Poll] Ajax errorHi and thanks a lot for the quick reply. Sorry for making so much trouble but the schedule I have is really firm and I was a bit in panic about the release date. As mentioned by you before there was a problem with the theme using some blocking methods for subscribers not to get to the WP dashboard. Also a ajax function for reloading the comments created a conflict with the poll ajax request. I deleted those functions and the polls are working again. Allthough it takes rather long for the call to be processed…
Thanks a lot!
Forum: Plugins
In reply to: [YOP Poll] Ajax errorHere are some more detailed informations on the problem of yop poll 5.6:
SyntaxError: expected expression, gpt ‘<‘ in wp-admin/admin-ajax.php?action=yop_poll_load_js
(Line 2)And
TypeError: resp is null in
yop-poll-public.js?ver=5.6
(Line 874).I would really appreciate a quick answer because we are planning to start our website within the next days…
Thanx a lot
Forum: Plugins
In reply to: [Theme My Login] Pending users still can login?In my case the situation cleared itself. There was a conflict with another plugin. I removed it and now it works.
Forum: Plugins
In reply to: [Theme My Login] Pending users still can login?I have also an issue with pending users: When the administrator approves the user, this user still cannot login to the site getting the message that his/her account still needs to be approved…
Forum: Plugins
In reply to: [Theme My Login] Cross Site ScriptingThanx for your reply. I saw those posts were old ones and I am really glad to hear that the security vulnerability was fixed. Thanx again, I owe you one!
Thanx a lot for your quick response! Can you give me some advice how I can fix the security issues in front of your release? I thought of adding sanitize_text_field() functionality but I am not really sure where I should place that.
Again, thanks a lot!
Forum: Plugins
In reply to: [Viper's Video Quicktags] Viper Videos no longer show anythingI experience the same problem when activating both nextgen gallery and the Vipers Video Quicktags. When activating both, the complete content of the website is lost. Turning on the WP_DEBUG gives no errors just Notices.
Forum: Fixing WordPress
In reply to: Get a list of all registered taxonomies outside the loopThanx for the tipp. I allready saw this in the codex but my problem was that I called the function which fetches the taxonomies and terms to early…
Forum: Reviews
In reply to: [AVH First Defense Against Spam] Plugin blocked Google-BotYes, I am really sorry! But after deactivating the plugin, the GoogleBot came back and all was good.
Forum: Themes and Templates
In reply to: Additional Page TemplatesAs a theme developer you can virtually add as many templates as you like. Add a new file to your theme folder like template-mycooltemplate.php. Inside of it you’ll need to start with
<?php /* Template Name: My Cool Template */ ?>
and there you go. Just add the important wp template tags and your desired HTML structure and here you go.
Forum: Hacks
In reply to: Redirecting mobile users to another themeNo, I try to redirect mobile users to a child theme of my theme framework…
Forum: Plugins
In reply to: Problems with translating WordPress 3 InvoiceThere are some problems with the plugin. If you use WordPress 3.0 or higher you must be aware, that wp3i will add the admin-bar to your invoices. When you send your invoice via mail, the plugin attaches the admin-bar to the html-mail body.
Also, if you edit your invoice after saving or sending I always get an error with the totals and subtotals of the details. They summ up to NaN and result in 0.00. Another issue is, that the html-entity for Euros isn’t display in mails…After all this errors I decidede to start with my own plugin…
Forum: Plugins
In reply to: Problems with translating WordPress 3 InvoiceYou need to rename your po file to wp3i-lv_LV.po. Than it should work
Forum: Plugins
In reply to: Problems with translating WordPress 3 InvoiceI solved the problem. There was a problem with the load_plugin_domain function. If anyone needs the solutions, here it comes:
I changed the line load_plugin_textdomain(‘wp3i’, false, $this->path.’lang/’ );
into
load_plugin_textdomain(‘wp3i’,’/wp-content/plugins/wordpress3-invoice/lang/’);
and it worked!Forum: Fixing WordPress
In reply to: Custom taxonomy and WordPress 3.1 Menu crashed…No, it’s not a wordpress bug. Where did you registered your custom taxonomy? Inside of your theme’s function.php? Than this is the place to go to. Otherwise change the bit of code where you register your custom taxonomy.
Hope that helps