Support Forums for LiveMesh Themes & Plugins › Forums › Appdev Theme Support › iPhone issues
- This topic has 5 replies, 2 voices, and was last updated 10 years ago by Veena.
-
AuthorPosts
-
December 20, 2014 at 7:21 pm #11193damirMember
Hello,
some issues appear on the iPhone, is it possible to do the following:
1. display website logo on mobile?
2. you have to click in upper part of the portfolio image in order to open it. Is is possible to disable opening featured image on mobile phones, just to be able to open the portfolio item?
3. display only 4 team members on home page?December 20, 2014 at 7:22 pm #11194damirMemberThis reply has been marked as private.December 21, 2014 at 8:30 pm #11200damirMemberAlso, when displaying portfolio items in portfolio page only featured image for portfolio item is shown but not the title. Is it possible to show the title also?
Thanks for awesome support so far guys!
December 22, 2014 at 7:13 am #11208VeenaModeratorAdd the below custom CSS in themeoptions –
1.
@media only screen and (-webkit-min-device-pixel-ratio: 2) { #site-logo a img.standard-logo { display: block; }}
2.
@media only screen and (max-width: 767px) { .image-info-buttons { display: none; }}
3.
Pls go through Team Custom Post type shortcode in theme documentation.
Following shortcode will help you –[team post_count=4 column_count=4 member_ids=""]
Post title is already showing on the image area.
December 22, 2014 at 10:13 am #11211damirMemberyou guys really earned 5 star review on theme forest, you are awesome!
as I didnt explain myself correctlly, I’m gonna need a bit of help for the last 2 things:
1. I need to show 4 members only on phones, but all of them on desktop. Shortcode will do that for all teh devices. Is it possible to show differently on 2 devices?
2. Also, when displaying portfolio items in portfolio page only featured image for portfolio item is shown but not the title. Is it possible to show the title also? – THIS ALSO GOES FOR MOBILE DEVICES. Check my website in iOs simulator,a nd you will see what I mean. It’s set to show tittle only on hover, but there is no hover on mobile devices, right? 🙂
December 22, 2014 at 2:46 pm #11214VeenaModerator1.Pls modify team-shortcodes.php(framework/shortcodes/team-shortcodes.php) by inserting below code in line no:34.(Your modified code should be like in image.png)
Kindly take a backup before modifying the file.if (preg_match("/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i", $_SERVER["HTTP_USER_AGENT"])) $query_args['posts_per_page'] = 4;
2.Its already displaying title on image area,but for iphone you need to click on the image area.
Again if you want to display title ,Pls check the option “Show Portfolio Title in Portfolio Page” in Themeoptions -> portfolio page tab. -
AuthorPosts
- The forum ‘Appdev Theme Support’ is closed to new topics and replies.