joel
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [YITH Proteo] stock notification – 1 item leftPerfect! Thans a bunch! ??
Forum: Themes and Templates
In reply to: [YITH Proteo] “From: Price” instead of “Min price – Max price”Never mind guys.
%1$s was missing in string translations.
Forum: Themes and Templates
In reply to: [YITH Proteo] Shortcode for Reset password pagedisregard last message, please.
forgot to set up the page.Forum: Themes and Templates
In reply to: [YITH Proteo] “From: Price” instead of “Min price – Max price”bump
Forum: Themes and Templates
In reply to: [YITH Proteo] Shortcode for Reset password pageHi,
When I add this snippet, the reset password page is working, but the next one isn’t.
Clicking the ‘reset password’ link takes you to this page: https://evyssecrets.test.applicgroup7.com/mijn-account/lost-password/?reset-link-sent=trueBut that page doesn’t exist. ??
Any idea?
Forum: Themes and Templates
In reply to: [YITH Proteo] “From: Price” instead of “Min price – Max price”Hi,
We are getting some strange results now.
The script is working fine in all languages except one.
Not working:
https://evyssecrets.test.applicgroup7.com/de/cat/piercings-de/tunnels-und-plugs/
Working fine:
https://evyssecrets.test.applicgroup7.com/cat/piercings/tunnels-en-plugs/
https://evyssecrets.test.applicgroup7.com/fr/cat/piercings-fr/tunnels-et-plugs/
https://evyssecrets.test.applicgroup7.com/en/cat/piercings-en/tunnels-and-plugs/Any idea on why this is happening?
Cheers,
JoelForum: Themes and Templates
In reply to: [YITH Proteo] Image zoom + lightbox effect on detailpageI’m afraid not.
The only custom change we did is provided by you guys.
We wanted to show 5-star rating even if no reviews were added to a certain product.
You provided us with a custom ywar-rating.php file.File contents:
”<?php
/**
* Single Product Rating
*
* @author YITH
* @version 3.6.0
*/if ( ! defined( ‘ABSPATH’ ) ) {
exit; // Exit if accessed directly
}global $product;
$YWAR_AdvancedReview = YITH_YWAR();if ( get_option( ‘woocommerce_enable_review_rating’ ) === ‘no’ ) {
return;
}$product_id = yit_get_prop($product, ‘id’);
$review_count = $YWAR_AdvancedReview->get_reviews_count( $product_id );
$rating_count = $review_count;
$average = $YWAR_AdvancedReview->get_average_rating( $product_id );if ( apply_filters( ‘yith_ywar_display_rating_stars_condition’, $rating_count >= 0, $rating_count ) ) : ?>
<div class=”woocommerce-product-rating”>
<div class=”star-rating” title=”<?php printf( esc_html__( ‘Rated %s out of 5’, ‘yith-woocommerce-advanced-reviews’ ), $average ); ?>”>
<span style=”width:<?php echo( ( $average / 5 ) * 100 ); ?>%”>
<strong class=”rating”><?php echo esc_html( $average ); ?> <?php printf( esc_html__( ‘out of %s5%s’, ‘yith-woocommerce-advanced-reviews’ ), ‘<span>’, ‘</span>’ ); ?>
<?php printf( _n( ‘based on %s customer rating’, ‘based on %s customer ratings’, $rating_count, ‘yith-woocommerce-advanced-reviews’ ), ‘<span class=”rating”>’ . $rating_count . ‘</span>’ ); ?>
</span>
</div><?php if ( comments_open() ) : ?>
<?php $customer_reviews_text = apply_filters( ‘ywar_customer_reviews_text’, _n( ‘%s customer review’, ‘%s customer reviews’, $review_count, ‘yith-woocommerce-advanced-reviews’ ), $review_count ); ?>
(<?php printf( $customer_reviews_text, ‘<span class=”count”>’ . $review_count . ‘</span>’ ); ?>)<?php endif ?></div>
<?php endif; ?>“
Forum: Themes and Templates
In reply to: [YITH Proteo] “From: Price” instead of “Min price – Max price”Great! Thanks a bunch!
Forum: Themes and Templates
In reply to: [YITH Proteo] Container width + responsive breakpointsHi,
I’ve managed to fix all responsive issues, except one.
Could you tell me how to change the number of items being shown in product slider?
Width of the elements is set by JS it seems.<div class=”owl-item cloned” style=”width: 153.333px; margin-right: 20px;”>
I want to change the responsiveness so 2 items are shown when screensize is 600px or smaller.
On 360px or smaller I only want to show 1 element.
Any input?
Cheers!
Forum: Themes and Templates
In reply to: [YITH Proteo] Product Photo effect (flip)Hi,
please take a look at this page: https://evyssecrets.test.applicgroup7.com/cat/piercings/tepelpiercings/When a product has an active badge it isn’t working.
Without badge it is working fine.Forum: Themes and Templates
In reply to: [YITH Proteo] Change Head sectionThanks Francesco.
Got it working now.