Manjunathpmf
Forum Replies Created
-
Forum: Plugins
In reply to: [User Session Synchronizer] Cookies used by this plugin?Thank you @rafasashi. Great plugin ??
Try applying some padding to the sidebar.
For example:.sidebar { padding:5px 10px }
Update: I think I din’t understand your issue well.
Did you try changing the “Sticky Class” (Dashboard > settings > myStickysidebar)
Let’s say the css path to your sidebar element is div.site-inner div.content-sidebar-wrap aside.sidebar.sidebar-primary
Then try changing ‘Sticky Class’ to .sidebar-primary / .sidebar etc.- This reply was modified 7 years ago by Manjunathpmf.
Are you sure that the issue was created by this plugin? Because the issue you are stating is quite unrelated to the plugin’s functionality. I am using it on my blog and it is flawless and smooth.
I am using the plugin now for nearly 2 weeks and it is simply awesome. Keep up the good work @damiroquai. Good luck with all your endeavors.
Forum: Plugins
In reply to: [YITH Infinite Scrolling] Can the plugin be used for Woocommerce reviews?Hello, the below settings worked
Navigation Selector: .woocommerce-pagination
Next Selector: .woocommerce-pagination a.next
Item Selector: .review
Content Selector: #tab-reviewsThanks.
Forum: Plugins
In reply to: [YITH Infinite Scrolling] Can the plugin be used for Woocommerce reviews?Hi, thanks for replying.
I have tried the below settings for woocommerce reviews. But the plugin doesn’t seem to work. The page I am trying on is https://goo.gl/ckaKHf
Navigation Selector: .woocommerce-pagination
Next Selector: .woocommerce-pagination a.next
Item Selector: li.product
Content Selector: ul.productTheme: Genesis Magazine Pro
@mtruitt
Genesis Magazine Pro. But the code that caused the conflict was added by me (long time ago when I was new to woo).- This reply was modified 7 years, 2 months ago by Manjunathpmf.
Forum: Plugins
In reply to: [WooCommerce] Coupon email restrictions not workingCheck if you have anything like this in your functions.php
//Remove “Sorry, it seems the coupon is invalid” Error Message
add_filter( ‘woocommerce_coupon_error’, ‘__return_empty_string’ );REMOVE IT
This was the culprit.
//Remove “Sorry, it seems the coupon is invalid” Error Message
add_filter( ‘woocommerce_coupon_error’, ‘__return_empty_string’ );Thank you @2mtruitt. It seems that the issue is with something else. On a clean install Coupon email restrictions feature is working fine.
- This reply was modified 7 years, 2 months ago by Manjunathpmf.
My Feedback: Old design was user friendly. New design, not so.
Forum: Plugins
In reply to: [WooCommerce] How to make New Downloads available to all customersThanks you both Riaan and Stuart Duff for the support.
Forum: Plugins
In reply to: [WooCommerce] How to display review count next to star rating ?Woocommerce already displays reviews count next to star rating in single product page. But on shop and archives page it displays only star rating. Follow the below steps to display star rating count even on shop and archives pages.
Step 1) Create a new folder in your theme’s root and name it ‘woocommerce’
Step 2) Create a new folder in the newly created ‘woocommerce’ folder and name it ‘loop’
Step 3) Add ‘rating.php’ file to the newly created ‘loop’ folder
Now your directory would look something like this
/public_html/wp-content/themes/YOUR-THEME/woocommerce/loop
Add the below code to the newly created ‘rating.php’ and customize it according to your need.
<?php /** * Loop Rating * * This template can be overridden by copying it to yourtheme/woocommerce/loop/rating.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates * @version 3.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } global $product; if ( get_option( 'woocommerce_enable_review_rating' ) === 'no' ) { return; } $rating_count = $product->get_rating_count(); $review_count = $product->get_review_count(); $average = $product->get_average_rating(); if ( $rating_count >= 0 ) : ?> <?php echo wc_get_rating_html($average, $rating_count); ?> <?php if ( comments_open() ): ?><a href="<?php echo get_permalink() ?>#reviews" class="woocommerce-review-link" rel="nofollow">(<?php printf( _n( '%s',$review_count,'woocommerce' ), '<span class="count">' . esc_html( $review_count ) . '</span>' ); ?>)</a><?php endif ?> <?php endif; ?>
In case this doesn’t work
Add ‘templates’ folder in ‘woocommerce’ folder and then add ‘loop’ folder in ‘templates’ folder.
Now the directory would look like this
/public_html/wp-content/themes/YOUR-THEME/woocommerce/templates/loop
- This reply was modified 7 years, 6 months ago by Manjunathpmf.
- This reply was modified 7 years, 6 months ago by Manjunathpmf.
- This reply was modified 7 years, 6 months ago by Manjunathpmf.
- This reply was modified 7 years, 6 months ago by Manjunathpmf.
Forum: Plugins
In reply to: [Disqus Conditional Load] Comment module not showingI have the same issue. The plugin worked fine till recently. But now it is not showing. I have all everyhting the author suggested. I deactivated all the plugins and using the default wordpress twenty theme. But still the plugin doesn’t load.
Here is the link to the staging website where only DCL is active: https://test.pmfias.com/geography-notes-pdf-ppt-upsc-ias/
Here is the link to the my main website where I used to use DCL. Now I am using the default official Disqus plugin: https://wwww.pmfias.com/geography-notes-pdf-ppt-upsc-ias/
Forum: Plugins
In reply to: [Instamojo for WooCommerce] Some orders are not being marked as completedWoocommerce orders where payments are captured during auto-reconciliation are not being marked as “completed”.
Hope the plugin will be updated to handle wooommcere orders with such payments.