Home › Forums › Theme support › Prestige theme
Tagged: prestige theme teams
This topic contains 16 replies, has 3 voices, and was last updated by 7Theme Support 8 years, 9 months ago.
-
AuthorPosts
-
Hi! I am having some problems with the Prestige theme.
1- I want to set the fonts exactly like in yours demo version, color, size. How can i do that?
Think the theme options isn’ t working because i personalize the font to Average, the main menu color font to grey and nothing seems to change.
2 – Having problems to set to grayscale images and enable the responsive design like appears in the demo version. (yes the boxes are set by default but still not working)
3 – How can i put the titule of the posts below de image. like in this example: http://www.exclusivehouse.it/news/
Site – http://nelsonremtula.com/
Thanks,
Sílvia RicardoHi,
found the problem, the same is not installed proper, because there are some stylesheet files missing. Have you uploaded the theme via FTP or the WordPress theme uploader?
Hi,
I uploaded the theme via FTP. What can I do to repair this situation?
Tks
Hi,
you can upload the theme again, then it should work.
I already did that as you can see here http://nelsonremtula.com/pt and the problem persist, so I think maybe the downloaded file it’s broken.
I have sent a e-mail to you with the downloaded file attached so you can confirm.
tks.
I already did that as you can see here http://nelsonremtula.com/pt and the problem persist, so I think maybe the downloaded file it’s broken.
I have sent a e-mail to you with the downloaded file attached so you can confirm.
tks.
Hi,
I’m sorry, but there zip file is ok, all files are there. If sent you instructions how you can upload the 2 missing files manually.
Hi again,
The situation are solved.
The problem was with the permissions in the server.I have one more question:
How can I put the titule of the posts below de image, like in this example: http://www.exclusivehouse.it/news/
Thank you,
SílviaHi,
do you mean the titles in the default blog section (http://web-rockstars.com/prestige/?page_id=1850)?
If yes, you have to change it in the php file for the blog entries. If you know how to edit php files, we can send you instructions for it.
Hi, can’t figure out how it is intended to work with teams, how can I make the team members clickable so that they lead to their separate presentation pages. For instance, in your demo, there is no way to get to their own pages without knowing the adress, or have i missed something essential? You can’t click on the picture and you can’t click on the name or the title.
Yours,
/andersHi,
sorry, but most of the user don’t want to have the single link to the team page, that’s why we’ve removed it after the theme release.
But that’s not a big problem, you can solve the problem very easy. Just open the file “functions.php” in the root of the theme and add this code to the end of the file:
function filter_team_title( $in ) { global $post; if( get_post_type() == 'team' && ! is_singular( 'team' ) ) { $in = "<a href='".get_permalink()."'>$in</a>"; } return $in; } add_filter( 'the_title' , 'filter_team_title' );
This will add the link to the single team page.
Thanks a lot!
Could you please do the same with the portfolio grid.
As it is now the only way to get a Read more! “button” is to use the Portfolio list, not the grid and not the masonry. I sure would like to have the same function in portfolio grid as in what you did with team: a click on the portfolio item name will get you to the according single portfolio page.
/andersIt’s nearly the same code, you can add it like the last one at the end of the functions.php file:
function filter_portfolio_title( $in ) { global $post; if( get_post_type() == 'portfolio' && ! is_singular( 'portfolio' ) ) { $in = "<a class='portfolio_entry_link' href='".get_permalink()."'>$in</a>"; } return $in; } add_filter( 'the_title' , 'filter_portfolio_title' );
Then please go to WordPress admin -> Appearance -> Theme Options -> Extra CSS Content and add this css code:
a.portfolio_entry_link { color: inherit !important; }
Thanks a lot for excellent service!
Works very good!
/andersYou’re welcome! 🙂
-
AuthorPosts
You must be logged in to reply to this topic.