goliat
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Post not showing on management screen after creationI fixed it so now its working.
But, the posts created while it was not working do not show up.
I’m looking at the database and the post entry seems normal, and the metadata seems ok as well.Forum: Fixing WordPress
In reply to: Post not showing on management screen after creationThanks henkholland.
Yes, the issue seemed to be with Magic Fields. The javascript created by the plugin some how interfered somehow. I noticed that some ajax features where not working in the admin ui in custom panels, such as sliding the OptionsPanel or the Publish box, etc. Yet there were no issues in the regular post edit page.I did look through the plugins code and found the culprit.
File RCCWP_Processor, line 368:
add_action('admin_print_scripts', array( 'RCCWP_WritePostPage', 'CustomFieldsJavascript' ));If you change
admin_print_scriptstoadmin_headit starts working for me.add_action('admin_head', array( 'RCCWP_WritePostPage', 'CustomFieldsJavascript' ));What i dont understand is why the post was stored but did not show…any ideas?!
Forum: Fixing WordPress
In reply to: Post not showing on management screen after creationI have the same setup in my local server and everything seems to work fine.
Forum: Fixing WordPress
In reply to: Replace WP Header with Custom Flash Headeryes, it would be really cool to know how you managed to do the trick…does a flash plug in exist?
what i have done so far is to use the flashfader, and replace the original .swf file with myne…it does the trick, i havent played with it so i dont know about how far i will get with it.