-
AuthorPosts
-
August 28, 2013 at 2:15 pm #28591
Hi,
I am using Enfold on http://www.epicresearch.co/learningcentre
I need the theme to run properly with fallbacks on IE6 too. Please let me know how to achieve it.
Promptness will be appreciated.
August 29, 2013 at 12:39 pm #138039Hey!
IE6 and IE7 are not supported by Enfold and we have no plans to support these browsers in the future.
Best regards,
Peter
September 4, 2013 at 8:58 am #138040Okay.
Please tell me how to resolve the following issues
1. Show only 4-5 lines of the post on homepage and leave a link of read more for the rest
2. When I share any post on facebook, the thumbnails choice only offers to use the logo image despite an image being present in the post. Sample http://www.epicresearch.co/learningcentre/rich-or-wealthy-know-the-financial-planning-way/
September 4, 2013 at 10:42 am #1380411) There’re basically two solutions.
a) You can use the read more quicktag: to separate the content from the excerpt text: http://en.support.wordpress.com/splitting-content/more-tag/
b) You can replace following in loop-index.php
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "content";
with
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "content";
if(is_home()) $blog_content = "excerpt_read_more";– WP will then use the get_the_excerpt() function to retrieve the excerpt and will truncate the post content automatically if no excerpt text is set.
2) You can use a seo plugin like: http://wordpress.org/plugins/wordpress-seo/ which will take care of the facebook opengraph meta tags.
September 6, 2013 at 3:22 am #138042Hi,
Followed the method a for issue 1. In vain. Let me know how to share my admin credentials with you so that you can check if I am doing it right.
September 7, 2013 at 12:36 pm #138043Hi!
Please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I’ll look into it.
Best regards,
Peter
September 9, 2013 at 7:31 am #138044Hi,
I found the problem. In your case I had to use the is_front_page() conditional. I used
if(is_home() || is_front_page()) $blog_content = "excerpt_read_more";
instead of
if(is_home()) $blog_content = "excerpt_read_more";
September 9, 2013 at 8:56 am #138045Great!!
A few queries
1. How to select the break point? (or is automatic)
2. Images have disappeared. How to get them back?
September 9, 2013 at 9:25 am #1380461) WP will set it automatically. You can use the “excerpt” option field to enter the excerpt text manually (recommended because of seo) or use this filter code: http://codex.wordpress.org/Function_Reference/the_excerpt#Control_Excerpt_Length_using_Filters to change the length of the automatic generated excerpts.
2) The excerpt does not support html code and thus no images. You can either revert the change I made and use the “more quicktag” http://en.support.wordpress.com/splitting-content/more-tag/ (because the content allows html) or you can try a plugin like: http://wordpress.org/plugins/advanced-excerpt/
-
AuthorPosts
- The topic ‘Support for Internet Explorer 6’ is closed to new replies.