wordpress qtranslate editor text is not working [closed]

I have found a great post which solves this issue, http://wordpress.org/support/topic/plugin-qtranslate-problems-displaying-in-the-edit?replies=21#post-3160564 The issue is on qtranslate_javascript.php line 225 Replace var waitForTinyMCE = window.setInterval(function() { if(typeof(tinyMCE) !== ‘undefined’ && typeof(tinyMCE.get2) == ‘function’ && tinyMCE.get2(‘content’)!=undefined) { content=jQuery(‘#content’).val(); tinyMCE.get2(‘content’).remove(); jQuery(‘#content’).val(content); window.clearInterval(waitForTinyMCE); } }, 250); WITH: Only change the 250 to 500 🙂 this should solve the problem… var … Read more

Updating URLs in many posts

Use the script found here: https://interconnectit.com/products/search-and-replace-for-wordpress-databases/ Because WordPress serializes some urls in option and meta tables a simple replace won’t do. A siple replace will break your data. This script will preserve your data and replace it with a new url. I use it al least twice a month.

WordPress Page Hierarchy

This is all fixed. I still had a template assigned to the page in question (press), so it was taking priority. The page you’re now seeing is correct in that it is pulling in content from a custom post type (Recent Stories) after the standard page content from the loop. Thanks for the help. Brett

How can i add thumbnails images to particular post (using code not admin pannel) in wordpress

First you’ll need to upload the image, like this. This will upload the image and add a row to wp_posts where your attachment is. How dynamic do you need this to be? Can you upload the image with the user interface or does that have to be done programatically as well? In your case, the … Read more

Add column to plugins table screen

First, you have to add the custom column to the plugin column names: function wpa65189_add_plugins_column( $columns ) { $columns[‘wpa65189_column’] = ‘wpa65189 Custom Column’; return $columns; } add_filter( ‘manage_plugins_columns’, ‘wpa65189_add_plugins_column’ ); Then output your column data for your plugin: function wpa65189_render_plugins_column( $column_name, $plugin_file, $plugin_data ) { if ( ‘wpa65189_column’ == $column_name && ‘My Plugin Name’ == … Read more