Theme4Press › Forums › alora › Excerpt cannot detect Chinese words › Re: Excerpt cannot detect Chinese words
Hi,
Suppose Alora didn’t support Chinese words excerpt, and i have downloaded several plugins which works well for many Chinese sites, such as below:
http://wordpress.org/plugins/wp-utf8-excerpt/installation/
The developer says if the plugin doesn’t work, look in your theme directory, edit the index.php file (content.php file in twenty ten/eleven theme) by changing:
<?php the_content(); ?>
to
<?php
if (is_single() or is_page()) {
the_content();
} else {
the_excerpt();
}
?>
In Alora, i didn’t find <?php the_content(); ?> under /public_html/wp-content/themes/alora/index.php, however i found this sentence in page.php and portfolio-three-column.php that i am using for my blog.
After i replace the code as developer suggests in in page.php and portfolio-three-column.php, thing won’t change.
Do you know how to disable Alora’s excerpt tag setting and use wordpress default one or work as plugin expected?
Much appreciated!