Forum Replies Created
- AuthorPosts
Themonic-Support
KeymasterOne of the easy solution is to install this plugin
Just make sure that images in the article are after first paragraph else it will show both images along with excerpt.
— Perfect solution —
Check out these lines 68-71 of functions.php
function themonic_excerpt_length( $length ) { return 58; } add_filter( 'excerpt_length', 'themonic_excerpt_length', 999 );
and replace the above lines with
function iconic_one_pro_chinese_excerpt( $output ) { global $post; $chinese_output = preg_match_all("/\p{Han}+/u", $post->post_content, $matches); if($chinese_output) { $output = mb_substr( $output, 0, 180 ) . '… <span class="read-more"><a href="'. get_permalink($post->ID) . '">' . __( 'Read More', 'themonic' ) . ' »</a></span>'; } return $output; } add_filter( 'get_the_excerpt', 'iconic_one_pro_chinese_excerpt' );
sending the same to your email.
Themonic-Support
KeymasterYou do not have permission to view this content.
Themonic-Support
KeymasterYou need not delete the free version.
Pro version is installed as a separate new theme, so upload as a new theme and activate it, more details in documentation:
Themonic-Support
KeymasterPlease refer end of this post
Use the custom css area of live customizer or “simple custom css plugin”.
Themonic-Support
KeymasterYou do not have permission to view this content.
Themonic-Support
Keymaster1) Use the following custom css
select.selectnav { padding: 15px; }
Increase or decrease 15px as per your requirements.
2) You can use this plugin:
3) Try this
Themonic-Support
Keymaster1) Unfortunately, it may not be possible.
2) You have to use a plugin for comments subscription. This seems to be the best plugin for this purpose https://wordpress.org/plugins/subscribe-to-comments-reloaded/
or use Jetpack subscription module which has both options.
Themonic-Support
KeymasterPlease refer http://themonic.com/how-to-translate-iconic-one-pro-to-your-language/
‘Read more’ text is available at line 77 of functions.php if you just want that.
Themonic-Support
KeymasterPlease check installed plugins to see if you are using any to generate the above line. If you still can’t find it or it is something else then email
[email protected] with login details and link to this thread and we will look into it for you.Iconic One generates the dates only in the below title meta bar, code begins at line 26 of content.php
Themonic-Support
KeymasterYou can use the following custom css
.flex-caption > a { color: #0099ff; font-family: verdana; font-size: 18px; }
Also, refer the guide below for more
- AuthorPosts