misthero
Forum Replies Created
-
Forum: Plugins
In reply to: [jQuery Colorbox] Disable jQuery Colorbox log messagesthx for the plugin.
I made a pull request in your github for jquery-colorbox-wrapper.js and added a DEBUG var to the script, by default is set to 0, setting to 1 / true will show the debug message. Please merge ??Forum: Plugins
In reply to: [Contact Form 7 Multi-Step Forms] Javascript error in shortcode builder – FIXoh!! yes!! I’m sorry, you are right this is for the Contact Form DB plugin, i guess I had both pages open and clicked on the wrong one..
you can close this, sorry again..
You are welcome! Knowledge, including arts and code should always be shared, public, accessible and free. This is what makes humanity progress and human being great. ?? ??
@dave i don’t use that plugin but the logic is the same, just change the variable names to reflect the one used in the function:
that should be:
update_attached_file( $idimg, $fullsizepath );
add it after line 258 (thumbnailforexcertps.php), the result should be like this:
wp_update_attachment_metadata( $idimg, wp_generate_attachment_metadata( $idimg, $fullsizepath)); update_attached_file( $idimg, $fullsizepath );
again, i don’t use that plugin, and don’t know if it works, try it and good luck.
Auto update old posts without deleting after you applied my previous fix or the gothickmatt one you can use this modded version.
https://www.mediafire.com/?1g701s5stxgivy7
do a backup of your database just in case
1. upload to plugin folder
2. disable auto-post-thumbnail or auto featured images
3. enable this
4. go to the option page and press the red button
5. wait.
6. wait and do not refresh the page, depending on the number of posts it can be very slow, in my case it took 20 minutes for 4567 posts.this will process all your post and regenate working thumbnails only for videos. be careful it will generate a thumbnail even if it already exists, this is why it works, it will update the broken thumbnails, be patinent, the process is slow.
When finished DISABLE this modded version and reenable your version.
have fun!
I found a solution without touching core files, adding:
update_attached_file( $thumb_id, $new_file );
on line 258 of auto-post-thumbnail.php
it should look like this:
before modification:
wp_update_attachment_metadata( $thumb_id, wp_generate_attachment_metadata( $thumb_id, $new_file ) ); return $thumb_id;
after modification:
wp_update_attachment_metadata( $thumb_id, wp_generate_attachment_metadata( $thumb_id, $new_file ) ); update_attached_file( $thumb_id, $new_file ); return $thumb_id;
anyway this will work for new posts only, if you want to update old posts you should delete the old attachments in media page, those that have a missing blank image icon and then reprocess old posts using the plugin options.
Good luck!
Forum: Plugins
In reply to: [Wiki] [Plugin: Wiki] Edit form appear twice under body taggood catch, and thank you for sharing your findings, and good idea the write buffer, it worked to avoid multiple output.
i cannot test the editor for now, i’m on wp 3.1.3 due to php limitation on the webserver and wp_editor() function is only available on 3.3
Forum: Plugins
In reply to: [Wiki] [Plugin: Wiki] Edit form appear twice under body tagi found this is somewhat related to simple facebook connect, disabling that plugin remove the problem, reenabling it give the issue again. i cannot figure out why this happen..
Forum: Plugins
In reply to: [Wiki] [Plugin: Wiki] Edit form appear twice under body tagmore details: in the generated html there are 2 divs with class=incsub_wiki incsub_wiki_single, style css tag is included too right under the divs
Thank you radiok for your plugin and support ??
Forum: Plugins
In reply to: [Restrict Categories] [Plugin: Restrict Categories] A couple of 'issues'thanks mmuro, I don’t get it, i tried to update it again to 1.5 and now it is working and the problem is gone, in my previuos testings a few hours ago reistalling or istalling a different version wasn’t fixing the problem until I switched to 1.3.. but now it works with 1.5 again.
I feel stupid..
Thanks for your plugin and sorry I really don’t know what was happening.
Forum: Plugins
In reply to: [Restrict Categories] [Plugin: Restrict Categories] A couple of 'issues'mm it’s strange I’m not able to replicate it on another wp installation. I will report here If i get any new info.
do the plugin use some javascript?
Forum: Plugins
In reply to: [Restrict Categories] [Plugin: Restrict Categories] A couple of 'issues'I’m pretty sure, disabled all the plugins and enabled only restrict category the menu itself works until you make a change (like adding a page) and save it, if you do you are not able to select the menu in this panel:
here: https://carsonified.com/wp-content/uploads/2010/07/Google-Chrome-11.pngdisabling the plugin the problem is gone, infact a workaround is disabling the plugin, modify the menu, and enable the plugin again..
Anyway I’m now using version 1.3 with this version there is no problem, 1.4 and 1.5 broke the menu someway.
Forum: Plugins
In reply to: [Restrict Categories] [Plugin: Restrict Categories] A couple of 'issues'yes matt you latest versions 1.5 and 1.4 broke the custom menus is not possible to save the menus… saving the menu in Twentyten theme cause the custom menu disappear (even if it is still visible in the dashboard) is not possible to select it in the theme location panel
sorry not completely a plugin fault I think, I’m using capability manager the user was missing the capability “delete posts”, activating that now seems to work. this solved the issue for me.
thanks ??