sdaveCL
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Editor] [Plugin: WP Editor] Post/Page Editor does not loadI’ve tried Chrome, Firefox, Opera, IE 9, editor does not appear.
This error pops up in both Chrome and Firefox consoles (haven’t tested others)
“NetworkError: 404 Not Found – http://example.net/example_wp/wp-content/themes/business-lite/core/library/js/jquery-custom.js?ver=3.4.1”
It’s being called for by line 40 of wp-admin/post.php
I looked through a few old versions of the Business Lite theme that I’m using and none of them have that file. It is not present anywhere on my server.
Could that have something to do with it? There aren’t any other errors in console.
Also having this same problem.
Earlier versions of the plugin can be found here:
http://wordpress.org/extend/plugins/advanced-code-editor/developers/I’m running v1.8 until the issues are resolved.
Same here. Title is placed outside of <title></title> tags, resulting in white bar at the top of the page.
If one selects “Force re-write titles” it appears like this instead:
“Title Title Title”
<title>Title Title Title</title>So there is a duplicate instance of the title still outside of the tags.
Also using WP 3.3.2
WP SEO version 1.2
Thematic child themeError occurs only after recent upgrade to SEO 1.2
After the update it also seems to move the entire contents of the <head></head> except for the “Content-Type” to the <body></body>.
Never mind. I just realized there is a check box in WordPress SEO to add Open Graph tags that I forgot about. Unchecked that, added the code back to the php file, and it all works fine. *dunce*
// do title stuff if (is_home() || is_front_page() ) { $wpfbogp_title = get_bloginfo( 'name' ); } else { $wpfbogp_title = get_the_title(); } echo '<meta property="og:title" content="' . esc_attr( apply_filters( 'wpfbogp_title', $wpfbogp_title ) ) . '">' . "\n"; // do descriptions if ( is_singular() ) { if ( has_excerpt( $post->ID ) ) { $wpfbogp_description = strip_tags( get_the_excerpt( $post->ID ) ); } else { $wpfbogp_description = str_replace( "\r\n", ' ' , substr( strip_tags( strip_shortcodes( $post->post_content ) ), 0, 160 ) ); } } else { $wpfbogp_description = get_bloginfo( 'description' ); } echo '<meta property="og:description" content="' . esc_attr( apply_filters( 'wpfbogp_description', $wpfbogp_description ) ) . '">' . "\n";I removed these two bunches of code from wp-facebook-ogp.php and that seems to have done the trick. Are there any other repercussions to removing this code?