deepthy
Forum Replies Created
-
Forum: Plugins
In reply to: [Shiprocket] Order status shows cancelled after successful payment.@adnaansheikh got any solution for this? we have the same issue.
Forum: Plugins
In reply to: [Shiprocket] Order id is different on woocommerce and shiprocket@shiprocket thank you for your reply. Is it possible to edit the plugin from my side to pass order_number for the parameter order_id?
Or can I use shiprocket APIs instead of shiprocket plugin. If so how can I start?
Forum: Plugins
In reply to: [Shiprocket] Order id is different on woocommerce and shiprocket@shiprocket Thank you so much for your quick response. Our registered email id is [email protected].
please find the following screenshots: https://i.imgur.com/XNK8zIh.png
- This reply was modified 3 years, 7 months ago by deepthy.
Forum: Fixing WordPress
In reply to: Can't Upload Images after updating to 3.3There is a div with class=”plupload html5″ and opacity:0, which contains an input box with type=”file”. If we position this div in the same position of the button ‘plupload-browse-button’ ‘Select files’ will work in all browser.
var p = $(“#plupload-browse-button”);
var position = p.position();
$(‘.plupload’).css(‘left’,position.left);
$(‘.plupload’).css(‘top’,position.top);
$(‘.plupload’).css(‘height’,’25px’);
$(‘.plupload’).css(‘width’,’90px’);Forum: Fixing WordPress
In reply to: Can't Upload Images after updating to 3.3I am having the same issue. I have tested with a new wordpress installation with only nextgen gallery plugin. I have activated the default themes twenty ten/twenty eleven. On click ‘select files’ button nothing happens in firefox. It is working correctly in chrome. I have checked with all the previously said solutions but didn’t work at all.
I had the same problem. I have solved it by change the permission of the file nextgen-gallery/admin/upload.php from 644 to 755. Now the flash uploader is working correctly for me.