seench
- Exclusive Author
- Has been a member for 0-1 years
- Sold between 10 000 and 50 000 dollars
- United States
589
Purchases
Buyer Rating:
4.12 stars
4.12 average based on 32 ratings.
-
5 Star
2165%
-
4 Star
39%
-
3 Star
26%
-
2 Star
39%
-
1 Star
39%
| Created | 7 February 13 |
| Last Update | 2 May 13 |
| Compatible Browsers | IE8, IE9, IE10, Firefox, Safari, Opera, Chrome |
| Software Version | WordPress 3.5 |
| Documentation | Well Documented |
| High Resolution | Yes |
| Layout | Responsive |
| ThemeForest Files Included | HTML Files, CSS Files, JS Files, PHP Files |
| Widget Ready | Yes |
- clean
- ecommerce
- fullscreen
- gallery
- jquery
- masonry
- mobile
- modern
- paypal
- photography
- portfolio
- responsive
- simple
- wordpress theme
© All Rights Reserved seench -
Contact Envato Support


thank you for the fantastic theme! i created a second page for the portfolio (portfolio-3.php), but how can i assign this to the different categories? all active categories are visible…
Hi, I apologize if I am misunderstanding your question but are you trying to create another page template for a portfolio page to display a different category? There is portfolio-2.php and you created a portfolio-3.php, right? Or, did you mistakenly type portfolio-3.php instead of portfolio-2.php? If you are using portfolio-2.php, unfortunately you can’t create different categories. If you are trying to create another page template like portfolio-3.php, let me know for example what categories of projects you want to display.
yes, i need different categories for different portfolios. eg fashion => shoes, shirts…, accessoires => bags, belts
I would have to manually create more page templates for you. Send me a a message with exactly what portfolio and what categories you need for each portfolio. I’ll try to send the files to you.
(portfolio1)events: (categories1)art, travel; (portfolio2)fashion: (categories2)shirts, shoes etc… it would be fantastic
(portfolio1)events: (categories1)art, travel; (portfolio2)fashion: (categories2)shirts, shoes etc…it would be fantastic
Create a new page with an HTML editor or Notepad, copy and paste the following and save as portfolio-3.php
<?php /* Template Name: Portfolio-Events */ get_header(); ?> <div id="page"> <ul id="portfolio2" class="isotope"> <?php global $post; $args = array( 'post_type' => 'portfolio', 'categories' => 'art,travel', 'posts_per_page' => -1 ); $wp_query = new WP_Query($args); while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?> <?php $all_terms = ''; $terms = get_the_terms( $post->ID, 'categories' ); if (is_array($terms)) { foreach ( $terms as $term ) { $all_terms = $all_terms .' ' .$term->name; } } $thumbnail_slides = get_post_meta( $post->ID, 'thumbnail_slides', true ); if (!empty($thumbnail_slides)) : $slide_url = explode(",", $thumbnail_slides); ?> <li class="<?php echo $all_terms; ?>"> <div class="description"><span><?php the_title();?></span></div><a href="<?php the_permalink(); ?>"><img src="<?php echo $slide_url[0]; ?>" /></a> </li> <?php endif; ?> <?php endwhile; ?> </ul> <ul class="subnav"> <li><a href="#" data-filter=".art">Art</a></li> <li><a href="#" data-filter=".travel">Travel</a></li> <li><a href="#" class="current" data-filter="*">All</a></li> </ul> </div> <?php get_footer(); ?>Note where it says $args = array( ‘post_type’ => ‘portfolio’, ‘categories’ => ‘art,travel’, ‘posts_per_page’ => -1 ); You might have to change ‘art, travel’ to the slug name. Go to categories and find the slug name of your categories. Create a new page with this template. Do the same for your fashion page with the categories changed.Actually, just find out the slug names of your categories by going to My Portfolio -> Categories and send me the slug names at syungh [at] gmail.com and I will send you the files. That will easier.
But when I look at the slideshow I always see an addictional slide in the end with no image displayed. If I look at the code there’s always an addictional “li” item with no image inside. I’ve double checked and everything seems fine on the backend.
Hi, I am sorry for the trouble. Can you possibly send me a link to the page?
Is it anyway to add google font to your theme?
Hi, select the “Page with Sidebar” template from the Templates select dropdown in the page editor page. Go to Appearances -> Widgets and drag & drop your widgets in the Page Sidebar box. You can add google font by going to header.php and inserting the link to the google font after the head tag such as <link href=’http://fonts.googleapis.com/css?family=Noto+Sans' rel=’stylesheet’ type=’text/css’> . Then you will go to style.css and set your font-family to “Noto Sans” like font-family:”Noto-Sans”, sans-serif;
Hi there,
In portfolio 2 template I need to know the following: 1) I’m using landscape thumbnails and the verticle boxes are leaving white space at bottom. how do I resolve this? I would like the thums to automatically fill the space (vertically or horizontally) being aligned at center. 2) There seems to be only one verticle thumnail in portfolio 2 on main page. how can i manually have more verical boxes at various places. 3) When we go inside any project if there are more images then 5-6 they get aligned towards left side wasting a lot of space otherwise. How can I manually place these thumbs on the page.
If there is any confusion of what I’m asking I can mail you a photoshop image to explain what I am talking about.
Thanks M
Hi,
1) The images containers are set to fixed heights so just set heights to auto. Go to style.css and add
#portfolio2 li a {height:auto !important} #project .media .extras li .box {height:auto !important}You can also look for the above elements and just change height to auto !important.2) I think #1 will fix this. You just need to use images that are more vertical.
3) You’ll need to change single-portfolio.php. How would you like to lay it out?
Social Media integration:
How to add social media links on 1) on Homepage footer 2) on images in galleries so people can share pin or like individual images instead of just pages.
Thanks M
Hi,
1) Try editing footer.php. Replace it with following but save a backup of your version.
<div id="footer"> <style> #footer p {display:block; float:left} #footer .social-icons {float:left; margin:27px 0 0 10px} #footer .social-icons li a span {background-color:#555 !important; border-top:solid 1px #666} #footer .social-icons li a.facebook:hover span {background-color:#3c639c !important} #footer .social-icons li a.twitter:hover span {background-color:#38afd2 !important} #footer .social-icons li a.linkedin:hover span {background-color:#4597bc !important} #footer .social-icons li a.gplus:hover span {background-color:#da4235 !important} #footer .social-icons li a.dribbble:hover span {background-color:#e8558c !important} #footer .social-icons li a.pinterest:hover span {background-color:#cc2127 !important} #footer .social-icons li a.youtube:hover span {background-color:#c41d1d !important} #footer .social-icons li a.vimeo:hover span {background-color:#09a0c8 !important} #footer .social-icons li a.tumblr:hover span {background-color:#304e6c !important} @media only screen and (device-width: 768px), only screen and (min-width: 1px) and (max-width: 768px) { #footer .social-icons {margin:22px 0 0 10px} } </style> <p> © 2013 Acme </p> <ul class="social-icons"> <li><a class="facebook" href="#"><span>Facebook</a></span></li> <li><a class="twitter" href="#"><span>Twitter</a></span></li> <li><a class="linkedin" href="#"><span>LinkedIn</a></span></li> <li><a class="gplus" href="#"><span>Google Plus</a></span></li> <li><a class="dribbble" href="#"><span>Dribbble</a></span></li> <li><a class="pinterest" href="#"><span>Pinterest</a></span></li> </ul> </div> <?php wp_footer(); ?> </body> </html>2) It’s not really an easy solution. I’m not sure where to put the pin button and it would require me to take some time to code the CSS, Javascript, and PHP page.Hi, how can i delete the customization style like the #nav background ? it’s forced and i want to delete some values to write them directly in the style.css ? (for ex, to use rgba instead of #)
tx, paul
In functions.php file look for the section
Under it you will see custom CSS setting between <style type=”text/css”> and </style> for elements like #nav. You can comment out lines or delete it. For example you can comment out line like so:/* #nav {background:<?php echo $header_bg_color; ?> !important} */Ok, thank you for your rapid answer !
On my instagram page the fancybox function works only if my feed_count is inferior with my number of post on instagram. If is superior, when i click on my image, i’m redirecting directly on the image src. How can i resolve that ? tx
Well, the html for each instagram post image is getting written in a for loop so if the image isn’t there, it’s writing a blank src. You can write an if statement inside the for loop to say don’t write html if src is blank. If you look in global.min.js file there is a section /* INSTAGRAM FEED */ Under it, you will see a for loop
for (var i = 0; i < $num_to_display; i++) { $('.instagramfeed').append('<li class="instagram"><a class="fancybox" data-fancybox-group="gallery" href="' + data.data[i].images.standard_resolution.url +'"><img src="' + data.data[i].images.standard_resolution.url +'" /></a></li>'); }It’ll be something like this but I haven’t tested it.for (var i = 0; i < $num_to_display; i++) { if (data.data[i] !== null && data.data[i] !== undefined) { $('.instagramfeed').append('<li class="instagram"><a class="fancybox" data-fancybox-group="gallery" href="' + data.data[i].images.standard_resolution.url +'"><img src="' + data.data[i].images.standard_resolution.url +'" /></a></li>'); } }So basically, num_to_display is the feed count and let’s say you have 9 as the feed count but you have only 7 in instagram. In the current version, it’s writing the html line 9 times and the last two obviously don’t have any images so it’s just writing a blank. So that’s why I put an if statement for you to try. Again, I’m not sure it will work. You might have to play with the line if (data.data[i] !== null && data.data[i] !== undefined) {Tx
Why using
<?php echo get_the_content(); ?>instead of<?php the_content();?>in single.php ??? And you can correct the line-height of #searchform input[type=text] in style.css (11px instead of 38px it’s just better)I guess just preference. Ok thanks with the search form.
Tx
Hello,
I am about to purchase theme but wanted to know if you can change the images from b&w to color on the home / folio page?
thanks!
Hi, thanks for your interest. The theme does not render anything to black and white. Whatever image you use is going to be the image. So if you use color, it will be color. It will not be black and white. I just used black and white images for the design aspect.
oh great, i noticed when you clicked into it it turned color so I thought that was preset. good to know, thank you so much!
i bought this theme cause it’s really nice. but i don’t know what is happening. it is not working. i can’t make the same home page like this, gallery and portfolio-1 & 2 is not working at all. please help
Send me a message through the form on http://themeforest.net/user/seench with access to your wordpress site so that I can help you get going. Thanks.
I keep trying to add a new logo and it wont show up on the current wordpress.
Hi, try deleting cache in your browser and if you have cache plugin installed, try deleting cache in there too. If you are still having trouble. I will recommend just editing header.php. Look for the following in header.php
<h1><a id="logo" href="<?php echo site_url(); ?>" title="<?php bloginfo('description'); ?>"><span><?php echo get_bloginfo('name'); ?></span><img src="your_image_url.jpg" alt="" /></a></h1>and replace your_image_url.jpg with your logo urlhow can I delete “styled map” tap in google map? I just want a map because styled map doesn’t shows well in Korea. “GAM SA”
Hi, open global.min.js file and look for the /GOOGLE MAPS FUNCTION/ section. In it look for following
var styles = [ { stylers: [ { hue: "#378e9f" }, { saturation: -70 } ] },{ featureType: "road", elementType: "geometry", stylers: [ { lightness: 100 }, { visibility: "simplified" } ] },{ featureType: "road", elementType: "labels", stylers: [ { visibility: "off" } ] } ];Replace it withis there way to change color of title box in topleft coner of content box?
[brick class=”company” title=”NAMING” ] <
on this page, http://denotecreative.co.kr/?page_id=779 I want to change small blue title boxes to Black.-this small box colorthanks you!! GAM SA HAM NI DA.^^
You want to change only the top left boxes? You can set the accent color in the customize page but it will change all the colors such as the navigation also. Appearances -> Customize. If you want to change just the top left corner boxes you are referring to, open up header.php file and add the following right before the </head> tag
<style> #bricks .brick h2 {background:#000 !important; color:#fff !important} </style>Hi, I recently purchased this theme and I would like to configure my homepage similar to the demo homepage on themeforest. I would like to remove all spaces between the images on my portfolio page. Could you please advise what code to copy and where exactly to paste the code on my website?
My site is www.worldmus1c.net
Thank you, Joe
Hi, try adding in style.css the following lines at the end
#portfolio2 {margin:0 !important} #portfolio2 li a {margin:0 !important}Go to Appearances -> Editor to see style.cssThank you!
Also, I can’t seem to locate the documentation. I checked all of the files in the folder I downloaded for this theme. Am I missing it?