Devin Price
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Portfolio Press] unable to see menu on mobile phoneCan you post a link to your website?
Forum: Themes and Templates
In reply to: [Portfolio Press] 3 x 3 Grid Gone! How do I get it back?Looks like you switched themes. If you want to change it back I can take a look.
Forum: Themes and Templates
In reply to: [Portfolio Press] Home Page as Front Page?Have you watched the video?
http://wptheming.com/portfolio-press/I assume you want to display the portfolio on the home page? If so, make sure the correct page template is selected.
If not, it should show whatever content you have on the “Home” page.
Forum: Themes and Templates
In reply to: [Portfolio Press] Gallery format not showing feature imageYou can set a page template to view all your gallery and image post formats.
In the options panel, you can exclude gallery/image posts from appearing on the post page,.
Forum: Themes and Templates
In reply to: [Portfolio Press] Gallery posts not clicking throughFollowed up via e-mail.
Forum: Themes and Templates
In reply to: [Portfolio Press] basic roadmap for customizations?change font family? – CSS
change font size? – CSS
control exact size/location of gallery tiles? – PHP/CSS
add text overlays (fixed or hover) to image tiles? – PHP/CSS
change header height? – CSS
use background images in header/page/ or post? – P+ or CSS
control transparency of bg images? – CSSForum: Themes and Templates
In reply to: [Portfolio Press] widgets at top of pageYou would need to add an additional widget area:
http://codex.ww.wp.xz.cn/Function_Reference/register_sidebarThe current one is registered in functions.php- so you would just need to add another.
Then, you’d need to output the widget area. You’d probably want to do that in header.php: https://github.com/devinsays/portfolio-press/blob/master/header.php
Example:
<?php dynamic_sidebar( 'header' ); ?>Forum: Themes and Templates
In reply to: [Portfolio Press] add Logo to headerDo you have the “Options Framework” plugin installed? If not, try installing that. You can also look under “Appearance > Theme Options”.
Forum: Themes and Templates
In reply to: [Portfolio Press] Thumbnails as LinksHi Chris. This might be an option- you could create a post called “Logos”, make it gallery, and then insert all your images as a gallery.
Otherwise, you would need to purchase Portfolio+, install the “Portfolio Post Type” plugin, and use the Category Templates Page Template: http://wptheming.com/2012/08/display-the-most-recent-post-in-each-category/
Forum: Themes and Templates
In reply to: [Portfolio Press] Home Page as Front Page?Go to “Settings > Reading Options” and select a page to display as your front page.
Forum: Themes and Templates
In reply to: [Portfolio Press] Eliminate "post date" and "posted by" infoHi @topherc.
Portfolio+ has an option to remove that if you’d like to avoid editing code:
http://wptheming.com/portfolio-plus/The PHP code you’re looking for is inside:
https://github.com/devinsays/portfolio-press/blob/master/extensions/template-helpers.phpThe “portfoliopress_postby_meta” function. If you have a child theme, you can just put this in functions.php of your child theme and it will hide it:
function portfoliopress_postby_meta() { //Overrride }Or, if you would prefer CSS, you can hide it like this:
.entry-header .entry-meta { display: none; }Forum: Reviews
In reply to: [Visual] Great for photographyThere is styling for the tables in Visual. What would you change about it? Different background colors? Borders around the cells? The more specific the feedback would be helpful! Thanks.
Forum: Themes and Templates
In reply to: [Portfolio Press] Custom LogoOkay, glad you worked it out. I’ve had a number of people report issues with that plugin. Portfolio+ has a built in infinite scroll option if you’d like to upgrade to that.
Try refreshing your browser cache. Shift + Refresh. Site looks good to me.
Also, I would highly recommend displaying less posts by default. 9,12 or 15. It takes a long time to load with so many images.