Forum Replies Created
- AuthorPosts
Themonic-Support
KeymasterThis is because you are using a static page on homepage, refer to my previous answer.
Your installation is ok.
For your case, you can try this plugin http://wordpress.org/plugins/social-sharing-toolkit/
Themonic-Support
KeymasterThis is because you are using a static page on homepage and there are no posts on your websites only pages. The theme by default doesn’t show Author on Pages. Author is only displayed on posts.
All themes are built this way because for eg. if you choose to enable author for single pages then all pages on your site will have author, even the about page, terms and conditions page which is not a good idea.
If you still want to display author on single pages, then do the following:
Open content-page.php,
Now paste the following code after line 21 ()<div class="clear"></div> <div class="author-info"> <div class="author-avatar"> <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'themonic_author_bio_avatar_size', 68 ) ); ?> </div><!-- .author-avatar --> <div class="author-description"> <?php printf( __( 'Author: %s', 'themonic' ), get_the_author() ); ?> </div><!-- .author-info -->
Themonic-Support
KeymasterHI,
Kindly create a separate thread for your issue with the steps you have followed until now. We will try our best to help you, sometimes it just takes a couple of days from the Google side before the picture starts to appear.
Themonic-Support
KeymasterDo not move the blogger blog, leave it as it as, make a announcement/final post that you will be posting on the new blog from now on.
Fully focus on the latest blog you are creating i.e a fresh start. Unfortunately Google has become more unforgiving due to all the spam in recent years. To play safe keep the old things separate completely. This is just my opinion.
——-
Unfortunately, our support doesn’t cover moving from blogger to wordpress.Themonic-Support
KeymasterTo show full article instead of excerpts on home page:
Go to content.php line 52 (line 50 in latest version)
<?php if ( is_home() || is_search() || is_category() || is_tag() || is_author() ) : // Display Excerpts for Search, home, category and tag pages ?>
Replace that line with
<?php if ( is_search() || is_category() || is_tag() || is_author() ) : // Display Excerpts for Search, category and tag pages ?>
After doing this you will have to manually use the more tag to break posts for home page.
————
Iconic One Pro uses excerpts by default for a uniform layout display and to save the trouble of using more tag manually each time. By using the code given above you can have the manual control you want.Themonic-Support
KeymasterYou can try this child theme and see if it fits your needs.
Fixed Width Child Theme for Iconic One Pro [Turn OFF Responsiveness]
Themonic-Support
KeymasterCategories color are linked to primary theme color, whereas tags are always be single color dark grey.
Some suggestions for your blog:
1) You are using too many categories and tags, while previously(before panda) these could have benefited in the search engine ranking but now they will just cause more duplicate content and penalty. Iconic One Pro tackles it by using excerpts across category and tag pages by default but if you using too many, even that won’t help.
If you ask me I would say: Use only 1 category with 2 tags per post. It’s not really hard to understand: simply check out the top and respected blogs in your industry and see how they are doing, you will be surprised.
2) Regenerate thumbs so that slider has similar size images, http://themonic.com/online-documentation-usage-guide-for-iconic-one-pro/#thumbnails
3) The search bar is distorted, could you check by removing third party elements from sidebar and see if any one of them is conflicting.
Themonic-Support
KeymasterThis could be a file permission issue.
To troubleshoot switch to default twenty thirteen theme and see uploading image is working. If it is not working, then it’s not a theme issue.
Themonic-Support
KeymasterIt appears that is because of the unresponsive compare ninja tables you are using. All the theme parts are fully responsive but not all third party stuff is built to be responsive.
Themonic-Support
KeymasterHi,
This happens when logo width is more than the recommended size. There is a easy fix though.
Paste the following code by going to Appearance -> Editor -> Custom.css in the very end after everything.
themonic-logo img { max-width: 100%; }
Do let me know if it works for you.
- AuthorPosts