Is it possible to have the catagory pages for the portfolio show up like the main portfolio page. Ex. 4 columns no sidebar?
How it shows up now.
http://sadesignsunltd.com/new-site/portfolio_entries/web-design/
How I want it to look.
Is it possible to have the catagory pages for the portfolio show up like the main portfolio page. Ex. 4 columns no sidebar?
How it shows up now.
http://sadesignsunltd.com/new-site/portfolio_entries/web-design/
How I want it to look.
Open up wp-content\themes\choices\taxonomy-portfolio_entries.php and replace:
$avia_config['portfolio']['portfolio_columns'] = 3;
$avia_config['portfolio']['portfolio_ajax_class'] = false;
$avia_config['portfolio']['portfolio_text'] = "yes";
with:
$avia_config['portfolio']['portfolio_columns'] = 4;
$avia_config['portfolio']['portfolio_ajax_class'] = false;
$avia_config['portfolio']['portfolio_text'] = "yes";
$avia_config['layout']['current']['main'] = "fullwidth";
$avia_config['portfolio']['portfolio_greyscale'] = 'no';That didn't work. It made them 4 columns, but it didn't get rid of the side bar. And also made them grey scale. Any other ideas? Thank you.
Hey!
I corrected the code above and I added a line to remove the greyscale effect.
Regards,
Peter
It worked but now there is a new problem, once the portfolio items load up they disappear.
http://sadesignsunltd.com/new-site/portfolio_entries/identities/
Hey!
I think thats because the layout array has the wrong value set. Because of that the containing div collapses to 0 width and hides all portfolio entries
Please try replacing the line you used above:
$avia_config['layout']['current']['main'] = "fullwidth";
with:
$avia_config['layout']['current']['main'] = "fullsize";
Cheers! ;)
I replaced the code, and it still disappears. Any other ideas? Thank you appreciate it.
Hey SAdesignsUnltd,
Just to make sure, you now have this as the final code change in that file?
$avia_config['portfolio']['portfolio_columns'] = 4;
$avia_config['portfolio']['portfolio_ajax_class'] = false;
$avia_config['portfolio']['portfolio_text'] = "yes";
$avia_config['layout']['current']['main'] = "fullsize";
$avia_config['portfolio']['portfolio_greyscale'] = 'no';
Regards,
Devin
yes. It starts to load up, but it only looks like it is pulling in 4 entries not all the entries for that category. Then they just disappear.
http://sadesignsunltd.com/new-site/portfolio_entries/identities/
Hi,
Would you please disconnect jetpack and quant plugins. Because everything dissapears for me the moment that jetpack js file starts loading.
Thanks,
Nick
Nick, deactivated jet pack, still disappearing.
Hi SAdesignsUnltd,
I'm not sure if this is something that can be easily solved at this point. The code for the portfolio items isn't getting run to properly sort and position all of the items after the initial load.
I just don't know if its a simple fix or if its beyond what we can do through support (ie, one more bug after another, after another, after another).
I'll re-tag the topic for Peter to take a look at to see if he can give a final word on it.
Regards,
Devin
Thank you for your effort.
Hi,
I can get this look for you http://www.clipular.com/c?3866006=QHOHsvQRV-kAHM3Kp6nTKpkrDxg&f=.png
If you still have the number of columns set at 4 on the page as stated in Dude's initial post above, the css below will get rid of the sidebar only on taxonomy pages and should result in the image i linked to in this post.
#top.tax-portfolio_entries .container .four.units {
display:none !important;
}
#top.tax-portfolio_entries .container .eight.units {
width: 920px !important;
}
#top.tax-portfolio_entries .portfolio-sort-container .flex_column {
width: 24% !important;
}
Please add the above css blocks to the bottom of the /css/custom.css file; OR to Quick CSS located in the admin backend of Choices > Theme Options > Styling ... the text area at the bottom of that page:
Thanks,
Nick
This topic has been closed to new replies.