claudeschneider
Forum Replies Created
-
Forum: Plugins
In reply to: [Disqus Comment System] count.js file takes 5s to load on my homepageSadly, same here, though it’s on every page load.
Only option seems to be to deactivate the plugin.
Forum: Plugins
In reply to: [DsgnWrks Importer for Instagram] Instagram Access Token revokedI noticed this happened to almost all of our Instagram users’ tokens around October 11th, they all got revoked.
I wonder if you noticed this around the same date, or if it’s specifically a 3 month timeout after each token was added?
The documentation does state that tokens can be revoked/expired at any point, so you should be prepared to detect this and go through the authentication flow again.
Forum: Plugins
In reply to: [Redirection] PLEASE bring back the REORDER feature!+1
My client’s site stopped working when we upgraded from 2.3.16 to 2.4.2, and we had to downgrade the files to 2.3.16 (and re-add a DB table) in order to get it working again. Not cool…
This “feature update” wasn’t mentioned in the changelog, and is pretty vital for many WP sites.
Additionally, I don’t know if it’s the plugin, or WP itself, but I’m not able to re-order redirects, or even see the positions, when configuring the redirects. It’s only in the DB that I can see/edit the position values.
Forum: Plugins
In reply to: [Iptanus File Upload] Userdata Required How?I’d also like this functionality, to force users to enter data in an additional field.
When defining Additional Fields, it would be good to have a checkbox next to each field, where you can force the field to be required.
Submitting the form shouldn’t be possible if a required field is left blank.Forum: Plugins
In reply to: [Iptanus File Upload] Redirect after upload not workingCan confirm this is now fixed in 2.5.5
Forum: Plugins
In reply to: [Iptanus File Upload] Redirect after upload not workingThis seems to still be broken – using 2.5.4.
Was the fix released in 2.5.4, or not yet?
Forum: Plugins
In reply to: [Manual Image Crop] Doesn't seem to work on 4.0Also have problems with WP 4.0 – Clicking on the Crop link for an image (in List view of Media panel) loads the AJAX URL as a separate page – no CSS, no functionality, just a set of page elements sprawled out.
/wp-admin/admin-ajax.php?action=mic_editor_window&postId=100
It seems something’s stopping this being loaded as an overlay onto the current page…
EDIT: seems to be a JS error that I resolved by restoring the whole of WP from a backup. (de-activating all plugins didn’t remove the JS error). However, after trying to test your Crop link, the JS error has returned. Don’t think it’s related, as it’s a load-script.php problem…
Forum: Plugins
In reply to: [Category Custom Fields] Plug in support – categorycustomfieldsActually, scratch my last post – haven’t fixed it, and it’s not due to “category” not being set.
Somewhere further down the line, it seems that $tag is sometimes an object containing info about the category, and sometimes just a string “category”. It’s the latter case that causes the SQL error, as a function further down tries getting a variable from the object, and fails because it’s a string.
I’ve not been able to debug enough yet to figure out the exact problem, but hopes that helps you fix it more easily.
Forum: Plugins
In reply to: [Category Custom Fields] Plug in support – categorycustomfieldsAnother bug spotted when looking through my error logs
After pressing the “update” button when editing a category’s fields on a page like this:
http://icould.com/wp-admin/edit-tags.php?action=edit&taxonomy=category&tag_ID=54755&post_type=custom_post_type_name
It then POSTs the form contents to this URL:
/wp-admin/edit-tags.phpHowever, it’s apparently not sending taxonomy=category, as I get this SQL error each time there’s a TextBox
WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and v.field_name='focus_on_top_banner_link'' at line 1 for query select term_id,field_value,v.field_name,field_type from wp_1_ccf_Value v inner join wp_1_ccf_Fields s on v.field_name = s.field_name where term_id= and v.field_name='focus_on_top_banner_link' made by do_action, call_user_func_array, categoryCustomFields_AddFieldsAction, categoryCustomFields_AddFields, DisplayTextBox, categoryCustomFields_DB_GetCategoryValueById, W3_Db->queryI’ve traced the error down to line 36 of categoryCustomFields.php
It doesn’t do any error-checking if “taxonomy” isn’t present, so passes an empty string throughout from then on.Isn’t taxonomy always going to be equal to “category”?
I’ve fixed it in my copy of the code by setting $taxnow = “category” if it wasn’t set.
Forum: Plugins
In reply to: [Category Custom Fields] Plug in support – categorycustomfieldsUsing v1.5 (labelled as 1.0 still)
– l.74 of categoryCustomFields.php still has typo “widht”
– resolved why Category Settings admin page wasn’t working. The file was MAC-encoded, so had no linebreaks. PHP thus stumble on the first line which read <?phpglobalFeature Request
– it’s not currently possible to unset a file/image once you’ve uploaded it.Forum: Plugins
In reply to: [Category Custom Fields] Plug in support – categorycustomfieldsalicornea – you need to update the version number in categoryCustomFields.php each time – WordPress automatically reads it from there
Forum: Plugins
In reply to: [Category Custom Fields] Plug in support – categorycustomfieldsThanks for the fix – 1.2 is now allowing me to save/update text values, as well as image values.
The Category Settings page is still blank (PHP error?), meaning I can’t edit the custom fields.
Forum: Plugins
In reply to: [Category Custom Fields] Plug in support – categorycustomfieldssorry, more bugs:
– If I create a text field, I can’t save/update values
– categoryCustomFields.php has a typo on l.74: widhtForum: Plugins
In reply to: [Category Custom Fields] Plug in support – categorycustomfieldsHowever, the Category Settings page is now broken (the left nav of the admin area loads, but no HTML after that, and no useful PHP errors that I can spot.
Also, pages/ccf_settings.php has a mistype “lable” in the HTML at line 53
Forum: Plugins
In reply to: [Category Custom Fields] Plug in support – categorycustomfieldsthat worked for me, though the plugin version still showed v1.0, so didn’t show as an update…