Themeora
Forum Replies Created
-
Hi
You could create categories and posts and you could ad projects to them but it would look just like a blog, not like the portfolio section. To have portfolio items show in categories you would need to copy the portfolio php template. Change the name, assign it to a page and alter the code to pull in posts from that template.
Thanks
- This reply was modified 8 years, 1 month ago by Themeora.
Forum: Themes and Templates
In reply to: [Oren] How does the portfolio home page decides to randomize?Hi
Portfolio posts are listed in menu order so you can change the order – Go to pages > Quick edit and you will see an order box. You can change the order by adding different numbers in the order box.
Thanks
Forum: Themes and Templates
In reply to: [Oren] Annoying #1abc9c green colorHi
You can change that in the customizer – Colors > Header Text Color.
Thanks
Forum: Themes and Templates
In reply to: [Oren] Annoying #1abc9c green colorHi
It will be coming from the theme options. If you go to the customizer you should be able to change it there.
Thanks
Forum: Themes and Templates
In reply to: [Oren] Delete Banner Header Area?Hi
.home header {display:none} would hide the header on the homepage but it would be better to remove it from the template rather than just hide it if you don’t want it. You can remove it from template-home.php
Thanks
Forum: Themes and Templates
In reply to: [Oren] No featured images on mobileHi
You have something set up that is redirecting to a different mobile site so you’ll need to disable that. It is not the theme that you are looking at on mobile.
Thanks
Forum: Themes and Templates
In reply to: [Oren] Use slider in place of header imageHi
You would not be able to do that without modifying the code yourself unfortunately.
Thanks
Hi
I think you’ll need to do the meta query as a set of arrays. Something like the example below (not tested):
$args = array(
‘post_type’ => ‘page’,
‘meta_query’ => array(
array(
‘meta_key’ => ‘_wp_page_template’,
‘meta_value’ => ‘template-smith-portfolio-item.php’,
),
array(
‘meta_key’ => ‘_wp_page_template’,
‘meta_value’ => ‘template-jones-portfolio-item.php’,
),
),
‘post_status’ => ‘publish’,
‘posts_per_page’ => $portfolio_items,
‘orderby’ => ‘meta_value’,
‘order’ => ‘ASC’,
‘paged’ => $paged
);Thanks
Forum: Themes and Templates
In reply to: [Oren] Portfolio items not being cropped correctlyYou could do that by changing the image sizes in the theme files but remember that the images need to be big enough to look good on large screens and high density screens.
Forum: Themes and Templates
In reply to: [Oren] Portfolio items not being cropped correctlyHi
It sounds like your uploads folder has not been copied properly. You may have to upload portfolio images again. You could try this plugin first though:
https://en-gb.ww.wp.xz.cn/plugins/regenerate-thumbnails/
Thanks
Forum: Themes and Templates
In reply to: [Oren] Remove featured image from the home pageHi
You’re welcome!
You would need to edit template-home.php and remove everything from line 34 to line 54 – the <header> tag and everything inside it.
Thanks
Forum: Themes and Templates
In reply to: [Oren] Home thumbnail vs featured image sizeHi
If you use an image larger than 1170 x 757 then the theme will crop the images to the correct size for the grid. The image on the portfolio page will be 1170 x 757. If you wanted to change that to a full size image you would need to edit template-portfolio-item.php and change this:
get_the_post_thumbnail( $post->ID, ‘themeora-thumbnail-span-12’ );
to this:
get_the_post_thumbnail( $post->ID, ‘full-size’ );
Thanks
Forum: Themes and Templates
In reply to: [Oren] Create a “portfolio item” that is a grid portfolioHi
You would need to make changes to the theme to do that. That is not supported by default.
Thanks
Forum: Themes and Templates
In reply to: [Oren] oren menu and footer problemsHi
An update is waiting to be approved that will solve many of these issues. I still need to look into the child theme issues though.
Thanks
Forum: Themes and Templates
In reply to: [Oren] oren menu and footer problemsHi
Thanks for your detailed description of problems. I will look into the issues as soon as I can and issue an update.
Thanks