Can’t use category or tag extention

The category and tags plugins had updates ( the prompt didn’t simply request they be updated for compatibility).

Plugin broke after update

We can’t possibly guess what is wrong. Post details or follow the standard WP debug procedure, disable plugins one-by-one, etc etc.

AP USER Widget do not show up users properly

This problem even exist…reputation system is not at all working….

AP USER Widget do not show up users properly

This problem even exist…reputation system is not at all working….

AP USER Widget do not show up users properly

This problem even exist…reputation system is not at all working….

All Question got disappeared after Creating first featured post

This was a bug in the beta but fixed in the released version. Are you updated ?

Can’t use category or tag extention

This can’t happen if you have an Anspress 3x plugin. Apparently your WP installation has not correctly registered Anspress as v3. Seeing all the posts from you, it seems you have a highly unstable system and you better find from what this comes from.

Profile is not responsive

Fixed. Absolutely beautiful.

Setting basepage as homepage shows blank

Downloaded ‘Debug’ plugin. https://wordpress.org/plugins/debug/ But after an hour of combination and testing on another sub blog, I think deselecting homepage template allowed it, if it was already an option of choices for the static homepage.

How to change the editor buttons when it is loaded by Ajax in 3.0.0

The answer is to create a hook into ap_ajax_load_tinymce_assets,  and add my tinymce layout there.   add_filter('ap_ajax_load_tinymce_assets', 'myAnsPressFilterEditorbuttons', 5); function myAnsPressFilterEditorButtons() { add_filter("mce_buttons", "myFrontEditorButtonsFirstRow",99); //targets the first line add_filter("mce_buttons_2", "myFrontEditorButtonsSecondRow",99); //targets the second line } function myFrontEditorButtonsFirstRow($buttons) { return array( "bold", "italic", "underline", "strikethrough", "bullist", "numlist", "blockquote", "mivhak_button" // ads the mivhak plugin //"bbpre" ); } function myFrontEditorButtonsSecondRow($buttons) { //return an empty array to remove this line return array(); }   However this does not add the buttons I would like because the plugins that extends tinymce are not loaded. This is a problem and as suggested in my question below I really think the ajax loading of the editor should be removed. How to change the editor buttons when it is loaded by Ajax in 3.0.0