ShigueS
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Line breaks and paragraphs disappears after publishing pageFIXED! It was a qTranslate plugin bug.
I got the solution from here: https://wordpress.stackexchange.com/questions/42877/qtranslate-2-5-28-and-wordpress-3-3-1-issues/45371#45371
Thank you esmi!
Forum: Fixing WordPress
In reply to: Line breaks and paragraphs disappears after publishing pageI have done what you suggested. The very first plugin I had activated seems to be the problem: qTranslate. If it is on, the paragraphs won’t work. If I turn it off… it works…
Forum: Fixing WordPress
In reply to: Line breaks and paragraphs disappears after publishing pageI have modified the theme.
Forum: Fixing WordPress
In reply to: Line breaks and paragraphs disappears after publishing pageOk. Thank you esmi!
I will try those procedures and let you know!
Forum: Fixing WordPress
In reply to: Line breaks and paragraphs disappears after publishing pageOk, Thank you for helping.
The content of the content-page.php is this:
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <h1 class="entry-title"><?php the_title(); ?></h1> </header><!-- .entry-header --> <div class="entry-content softShadow"> <?php the_content(); ?> <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'toolbox' ), 'after' => '</div>' ) ); ?> <?php edit_post_link( __( 'Edit', 'toolbox' ), '<span class="edit-link">', '</span>' ); ?> </div><!-- .entry-content --> </article><!-- #post-<?php the_ID(); ?> -->
Forum: Fixing WordPress
In reply to: Line breaks and paragraphs disappears after publishing pageYou mean the code? Is like this:
<?php get_header(); ?> <div id="primary" class="grid_8"> <div id="content" role="main"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'page' ); ?> <?php comments_template( '', true ); ?> <?php endwhile; // end of the loop. ?> </div><!-- #content --> </div><!-- #primary --> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Japanese fonts displaying as ?????Ok, I got it!
The problem is with the php database. Using PHPMyadmin I chanced the enconding from “latin1_swedish_ci” to “utf8_unicode_ci” on wp_post database.
There is a very handful plugin called WP-phpmyadmin that allows you to edit your database from within WordPress.
Thank you!
Forum: Fixing WordPress
In reply to: Japanese fonts displaying as ?????Thank you!
I’ve tried that, but it changes my content somehow. Also, the japanese font wont display.
In fact, I realized that may be a problem of how the plugin stores the text, because I can write japanese in the blog section, but not in the pages.
If I come up with a solution I will let you know!
Forum: Fixing WordPress
In reply to: Japanese fonts displaying as ?????Someone, please answer me.