Forum Replies Created
- AuthorPosts
- Themonic-SupportKeymaster
You do not have permission to view this content.
Themonic-SupportKeymasterUnfortunately, I have no idea about this use case.
Themonic-SupportKeymasterWordPress doesn’t allows multiple user registration with same emails. What are you trying to do?
———
Author ID on home page uses that Author(User) email address and if that address has gravatar associated with it then it show author avatar.
Themonic-SupportKeymasterHi,
To remove the permalink text from titles:
Go to content.php line 21 and
replace line 21 with the following line
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
For hiding author refer:
Themonic-SupportKeymasterTurn off Automatic featured images from Control Panel -> Main Settings -> Featured Images.
This setting is turned off by default you must have turned it on.
For slider images Refer: http://themonic.com/forums/topic/slider-image-size/
Themonic-SupportKeymasterI got it.
This is because the home page displays Excerpts
http://codex.wordpress.org/Excerpt.It is set to cut off of posts after 70 words with a Read More link.
You can use the more tag from the WP editor screen to cut posts before that if you like, else write normally with few amount of words in the first para so that all extra things come after 70 words. Besides, if excerpts were to show HTML content the home page layout will look uneven.Another solution for you:
You can display full posts on home page with HTML using the below edit:Open Content.php
Go to line 50
<?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 ?>
Now full posts with HTML will show on homepage, if you want to break posts – use the more tag.
Themonic-SupportKeymasterLogin page logo exact size is 274 x 63 dimension.
Main logo size in the demo is 220 x 54
(upload settings for main logo is available in the live customizer)Themonic-SupportKeymasterYou do not have permission to view this content.
Themonic-SupportKeymasterUse featured images with higher than 658 x 300 pixels and the theme will automatically create a slider with equal size images.
If you are sure that all your featured images are bigger than 658 x 300 and still there is unequal size images than use Regenerate Thumbnails plugin.
Themonic-SupportKeymasterWhat should I look for in there?, everything appears normal to me. Am I missing something?
- AuthorPosts