Digital experiences for all disciplines
Forum Replies Created
-
-
Nope, didnt solve it though.
Managed to solve it in the meantime by editing: sf-products.php row 594 from:
<div class="clearfix product col-sm-3 grid-sizer"></div>
TO:
<div class="clearfix product col-sm-4 grid-sizer"></div>
and adding this in the css:
.home .woocommerce ul.products li.product.col-sm-3 { width: 33.333%; }
But this isnt very neat. Please advise for a better solution.
Kind regards,
RichardNo worries, I solved it!
in functions.php
remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_meta’, 40 );
add_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_meta’, 90 );October 14, 2016 at 2:24 pm in reply to: Product Slider to Slide Images Horizontally Instead of Vertically #296517Okay then! Would be awesome to impelement this in a coming update. When you use models mixed with isolated products it gets weird when you scroll vertically (aspecially when you have to cut away from nose down as the new reports dictates you should in clothing commerce). More natural flow if you scroll vertically. Thanks for the support though!
October 14, 2016 at 1:12 pm in reply to: Product Slider to Slide Images Horizontally Instead of Vertically #296495Yes! Just as it rotates in on phone/ipad responsive mode. Seems like a simple enough tinker in the css. Like:
ul.lightSlider li
transform: translate3d(1000px, 0px, 0px);
}But im not the expert here. 🙂
October 14, 2016 at 12:20 pm in reply to: Product Slider to Slide Images Horizontally Instead of Vertically #296478Hello,
Im trying to change this, but I cant get it to work. Im using a “fullscreen split” product. I want the product gallery thumbs to be shown to the left. But just the slider to rotate vertically. Is it possbile to do?Works like a charm! Thanks Mohammad!
Still dosent work…
I added this on line 124:
$category = get_the_category( $post->ID ); print_r($category);
And this on line 212:
$items .= '<h4 class="team-member-category">' . $category[0]->name . '</h4>';
All I get is “Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) Array ( ) ” on front end under the page-content div.
This reply has been marked as private.Nope, it still dosent work 🙁
Thanks Mohammad for taking the time!
I added this on line 124 in team.php):
$category = get_the_category( $post->ID );
and this on line 205 in team.php (I want the category of where the team-members is assigned to show on hover in gallery carousel):
$items .= '<h4 class="team-member-category">' . $category[0]->cat_name . '</h4>';
Still dosent work. Now it dosent echo anything on front end. I dont get it!
This was not as easy as i thought though. :-(. I tried to alter the team.php like this:
$category = get_the_category( $post->ID );
and calling it like this:
$items .= ‘<h4 class=”team-member-category”>’ . $category . ‘</h4>’;
which only echos “Array” in front end. Does anyone has a quick fix?
Kind regards,
RichardYup! That was it. Sorry for that though…
Hehehee… Whoppsie, its a bit big I give you that. But does that matter? If i reduce it, it will be no problem?
Awesome! Thanks alot!
January 14, 2016 at 10:53 am in reply to: How to Keep Left/Right Arrows on SwiftSlide and Remove Name #240329Works perfect! Thanks!
-