linjo13
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH Infinite Scrolling] Content inside custom Loop not working@ivansosa Can you pls guide where should I call my custom js? Like when the ajax for the next page load triggers? May I know where is that script?
Forum: Plugins
In reply to: [YITH Infinite Scrolling] Content inside custom Loop not working@ivansosa Okay, thanks for the reply. I will try that way with JS then. Hope you will consider this scenario as well in the next updates.
Forum: Plugins
In reply to: [YITH Infinite Scrolling] Content inside custom Loop not working@ivansosa Yes I got that, but I need the “hai” to be printed just before the li(pls refer the screenshot). What I am looking here is to print a category title before each group of items (so that it should be printed before li tag). Please guide
ThanksForum: Plugins
In reply to: [YITH Infinite Scrolling] Content inside custom Loop not working@pperez001 Hello,
I am using the YITH infinite scrolling plugin you can scroll down for the next page to load(via the plugin ) and you can see that.
To make the issue more clearer, I’ve printed a “hai” inside the template, the hai is printing in the first page but not from the 2nd page(when the yith scrolling plugin comes into play.
Please check this link to see whats happening
Ive echoed the “hai” just before the wc_get_template_part( ‘content’, ‘product’)
Please check the screenshot for a better understanding.
Please let me know how we can get the “hai” printed before the loop template part.
- This reply was modified 3 years, 1 month ago by linjo13.
Forum: Plugins
In reply to: [WooCommerce] Persistent cart mixing between usersAny insights on this issue? Cart works fine most of the time, but some times the cart items reappear after deletion. Its like, the items reappear on relaod and deletion, even if we empty the entire cart. Once this issue arises it keeps on going for some time.
We are not using any server caching, or WordPress caching plugins. Also it looks like the issue gets resolved, once we disable the woocommerce_persistent_cart_enabled using the filterForum: Plugins
In reply to: [Unyson] Color picker appearing and disappearingGuys any update on this?
Forum: Plugins
In reply to: [Unyson] Schema breakingThanks for the reply.
I know the fix, and I found this issue. But I am developing a new theme, how can I resolve this issue in the theme end? I copied the feedback section into framework-customizations folder, but it doesnt looks working .how can I fix this issue in the theme end by any means of overriding?
Forum: Plugins
In reply to: [Unyson] Schema breakingI found, this happens because of the _action_show_schema function in the unyson feedback, in class-fw-extension-feedback-stars.php,
public function _action_show_schema() {
$rating = $this->get_post_rating();
$html = ”;
if ( intval( $rating[‘count’] ) > 0 ) {
$html .= ‘<div itemscope itemtype=”http://schema.org/Product”>’;
$html .= ‘<meta itemprop=”name” content=”‘ . get_the_title() . ‘”/>’;
$html .= ‘<div itemprop=”aggregateRating” itemscope itemtype=”http://schema.org/AggregateRating”>’;
$html .= ‘<meta itemprop=”ratingValue” content=”‘ . $rating[‘average’] . ‘” />’;
$html .= ‘<meta itemprop=”bestRating” content=”‘ . $this->get_max_rating() . ‘” />’;
$html .= ‘<meta itemprop=”reviewCount” content=”‘ . $rating[‘count’] . ‘” />’;
$html .= ‘</div>’;
$html .= ‘</div>’;
}echo $html;
}
IS there anyway to unhook this function