Sajjad Hossain Sagor
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Share for WooComerce Products] Cannot Change Positionis your theme customized? Maybe the woocommerce hook got changed?
That’s why its showing on somewhere else… i can’t tell much without
seeing the theme code… I have checked using default theme.. and it’s
working fine with that… need to check the theme if you have child theme it must be overwriting the position hook..Forum: Plugins
In reply to: [Social Share for WooComerce Products] Position doesn’t work.This is a working example for current version of the plugin used twentysixteen theme when the Buttons Visible Position = After Add To Cart Button
Nope! Instagram doesn’t provide any sharing option! It provides only profile follow… There’s no API then…so we couldn’t add it. Thanks!
Forum: Plugins
In reply to: [Social Share for WooComerce Products] Copy Link doesn’t work in Chrome/BraveThat should not be the case… may i ask for the page link you are having trouble with??
Forum: Plugins
In reply to: [Social Share for WooComerce Products] Position doesn’t work.I am not sure what is causing the issue… but did you try using the default twentysixteen/twentytwenty theme….?? To check if your theme is overwriting the position anyhow? @tigergagnon
Forum: Plugins
In reply to: [Social Share for WooComerce Products] Icons not showing on productsit’s been many days since you replied so i guess it’s resolved!!
Forum: Plugins
In reply to: [Social Share for WooComerce Products] Position doesn’t work.@tigergagnon plugin has a position named ‘After Add To Cart Button’ which should work fine i guess…
Forum: Plugins
In reply to: [After Registration Redirect] Still redirecting to /wp-login page@ericsims what url did you use?? I see you are using custom login form.. is that form redirects to you after register anywhere as far as you know? maybe something is overwriting redirects url… could i have a backend settings screenshot?? also can you confirm there is no other plugin that does redirects…???
Forum: Plugins
In reply to: [Rename WP Media Files Name] Old named sizes aren’t deleted@wjadevries thanks for using the plugin… I have updated the plugin and added the feature is when media file name renames it’s old thumbnails will also be deleted… So update the plugin and enjoy of what you have expected!! New version is 1.0.4
I hope mobile issue is resolved… after new update??!!
Thanks for your query… I have added a new input field Animation Speed… in the new version of the plugin.. Please update the plugin and you can now adjust animation speed.. Remember speed input value is in ms format.. Like 1000ms is equal to 1 second.. So only enter number like for example 2000 for 2 second animation..
Thanks!!Forum: Plugins
In reply to: [Social Share for WooComerce Products] Php error in shop page@pkovalchuk Thanks for pointing it out.. I have updated the plugin to a new version 1.0.3 with fix of that php error..
Always try to keep your plugin update so that you can get the improved and additional features added to this plugin up to date.
Forum: Plugins
In reply to: [Social Share for WooComerce Products] Icons not showing on productsis your “Show / Hide Sharing Buttons” checkbox checked (ON)?? Is Your Social Buttons To Add empty?
May i get your site URL where you are using it??yes… that is what you realized.. you need to add your social button and then it will appear on front end..
Forum: Plugins
In reply to: [WooCommerce] Refund Amount Field “Grayed Out”For Someone who is still struggling with that issue.. put below code inside of your theme’s functions.php file….
add_action( 'admin_footer', function(){ //Enables WooCommerce Refund input area $currentPostType = get_post_type(); if( $currentPostType != 'shop_order' ) return; ?> <script> (function($){ $(document).ready(function(){ $('#refund_amount').removeAttr('readonly'); }); })(jQuery); </script> <?php )};
- This reply was modified 4 years, 10 months ago by Sajjad Hossain Sagor.