Hi!
1) I need to create a second portfolio PASSWORD PROTECTED. It's possible? How?
2) the third column in portfolio pages is not well alligned ONLY in Chrome (both PC and MAC).
the site is: http://www.mllezazie.com
Thanks
Hi!
1) I need to create a second portfolio PASSWORD PROTECTED. It's possible? How?
2) the third column in portfolio pages is not well alligned ONLY in Chrome (both PC and MAC).
the site is: http://www.mllezazie.com
Thanks
up!
I had the same problem with Chrome and portfolio alignment, but not on all computers, even when the OS was the same. I think this is a Chrome issue?
up!
Hey,
1) You can try to password protect the portfolio page (page you assigned the portfolio to). You can set a password in the "publishing settings" field.
2) If that doesn't work you can try membership plugins. You can find a small selection here: http://www.kriesi.at/support/topic/useful-plugins
I'll report the chrome display error to Kriesi.
About the display error:
I found some time to look into it and it seems there is a problem with the dynamic width. try the following:
in style.css at arround line 1147 search for #template-portfolio-overview .one_third and change it to:
#template-portfolio-overview .one_third {
margin-left: 40px;
width: 243px;
}
That seems to fix the error
Great!!! it works!!!
THX
Glad that it worked for you :)
Hi,
Is there a way to password protect a portfolio without a plugin? The password protection in the page publishing settings doesn't seem to work for portfolio pages. Please help!
Thanks,
Rose
Hey!
I'll forward this query to Kriesi.
Best regards,
Peter
Hey! Its actually quite easy to add by yourself:
open single php and change
get_template_part( 'includes/loop', 'index' ); //wordpress function that loads the comments template "comments.php" comments_template( '/includes/comments.php');
to
if(post_password_required())
{
get_template_part( 'includes/loop', 'index' );
//wordpress function that loads the comments template "comments.php"
comments_template( '/includes/comments.php');
}
This topic has been closed to new replies.