-
AuthorPosts
-
March 30, 2014 at 3:59 am #244933
Hello , thanks for your great theme .
I have two questions when use the theme , would you help ?
1 . change the portfolio sort style , like ” please click for sort items : All tag1 tag2 …” in button style .
2 . in the single portfolio page , below the position “Most Recent Entries” , show portfolio same “tags” .
Sorry , i try to search similar answer in the forum , but no much answer . Could you tell how to get it ?
April 2, 2014 at 7:37 pm #246708Hey garbath!
1. To change the appearance of the links to buttons you will need to modify the css classes assign to them. You can always use microlancer.com they are pretty reliable and cost affordable.
2. On Enfold options panel go to General Settings > Blog Style ( search for this and select from the drop down ) pick single author feature image small/big.
Regards,
DavidApril 3, 2014 at 1:24 pm #247002Hello , David
Please check bottom of page URL http://www.tiantangsandian.com/?portfolio=soap-dish-260001 , I want to show related product in same tag .
April 7, 2014 at 7:15 am #248054Hi!
1) You can add the button class to the sort links. Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and replace:
$output .= '<a href="#" data-filter="all_sort" class="all_sort_button active_sort"><span class="inner_sort_button"><span>'.$first_item_name.'</span><small class="av-cat-count"> '.count($entries).' </small></span></a>';
with
$output .= '<a href="#" data-filter="all_sort" class="all_sort_button button active_sort"><span class="inner_sort_button"><span>'.$first_item_name.'</span><small class="av-cat-count"> '.count($entries).' </small></span></a>';
and:
$output .= '<a href="#" data-filter="'.$category->category_nicename.'_sort" class="'.$category->category_nicename.'_sort_button" ><span class="inner_sort_button">';
with
$output .= '<a href="#" data-filter="'.$category->category_nicename.'_sort" class="'.$category->category_nicename.'_sort_button button" ><span class="inner_sort_button">';
2) If you want to show related entries for portfolio entries open up wp-content/themes/enfold/single-portfolio.php and replace:
get_template_part( 'includes/loop', 'portfolio-single' );
with
get_template_part( 'includes/loop', 'portfolio-single' ); //show related posts based on tags if there are any get_template_part( 'includes/related-posts');
3) Please see http://docs.woothemes.com/document/related-products-up-sells-and-cross-sells/ : “Related products is a section on some templates that pulls other products from your store that share the same tags or categories as the current product. These products can not be specified in the admin, but can be influenced by grouping similar products in the same category or by using the same tags.” – the theme does not influence the WooCommerce output and related product selection.
Best regards,
PeterMay 20, 2014 at 4:43 pm #267375Hi Peter,
I have a similar query. I want to show portfolio items under the same category. In this example: (http://www.arconics.com/aerodocstest/customers-2/) when the user clicks on a customer I’d like to show other customers instead of ‘Most recent items’.
I’ve tried making the change suggested above on the single-portfolio.php file and assigned some ‘customers’ tags to my customer portfolio items, however, as you can see, it doesn’t seem to have worked.
Could you let me know how I can get around this?
Many thanks!
Aurora
May 21, 2014 at 9:15 am #267855Hey!
It seems to work now. I can see the “OTHER CUSTOMERS” grid.
Cheers!
PeterMay 21, 2014 at 10:27 am #267875Hey Peter,
It does! I realised what I was missing, I had never selected the category I wanted to show so it was displaying the latest items. Doh! Thanks so much for looking into it!
Aurora
-
AuthorPosts
- The topic ‘Portfolio sort style’ is closed to new replies.