Hi There, I am doing the exact same thing.
Managed to pull it off using php substr function where you can put some characters of your content in one div and the rest in the other.
echo substr(the_content(),0,500)
However I would think there is a wordpress way of showing the content without the excerpt.
Hope Someone post it here!
Hi Guys,
By disabling the flags you only hide the problem, real solution is to modify the share.php file inside plugins folder in line 82 and replace mysql_scape_real_string with esc_qsl</>.
Final line should look like this:
$new_meta_value = ( isset( $_POST['mobile-sharebar-meta'] ) ? esc_sql($_POST['mobile-sharebar-meta']) : '' );
That way there are no warnings.
Regards.