adhil_acowebs
Forum Replies Created
-
Hi,
Please check if you have enabled the “Update top product price as price changes” option and ” Update summary price as quantity change ” option from Other Settings section of the Addon Settings. Enabling these should ensure the price updates when you add more than one T-shirt.- This reply was modified 10 months ago by adhil_acowebs.
- This reply was modified 10 months ago by adhil_acowebs.
Forum: Plugins
In reply to: [Offload Media - Cloud Storage] Resizing Original ImagesHi Josh,
You’re very welcome! I’m very much happy to hear that my assistance has been a great help.
If it’s not too much to ask, could you please support us by leaving a review for our Offload media plugin on WordPress?Forum: Plugins
In reply to: [Offload Media - Cloud Storage] Resizing Original ImagesHi Josh,
It appears there’s a conflict between the hooks you’re using and those implemented in our plugin for handling uploads. To ensure compatibility, please update your code as follows:add_filter('wp_generate_attachment_metadata','replace_uploaded_image', 150);
function replace_uploaded_image($image_data) {
// if there is no large image : return
if (!isset($image_data['sizes']['large'])) {
return $image_data;
}
// paths to the uploaded image and the large image
$upload_dir = wp_upload_dir();
$uploaded_image_location = $upload_dir['basedir'] . '/' . $image_data['file'];
// Get current subdirectory from file path
$current_subdir = substr($image_data['file'], 0, strrpos($image_data['file'], "/"));
$large_image_location = $upload_dir['basedir'] . '/' . $current_subdir . '/' .
$image_data['sizes']['large']['file'];
// delete the uploaded image
unlink($uploaded_image_location);
$image_data['unlinked'] = true;
// rename the large image
rename($large_image_location, $uploaded_image_location);
// update image metadata and return them
$image_data['width'] = $image_data['sizes']['large']['width'];
$image_data['height'] = $image_data['sizes']['large']['height'];
unset($image_data['sizes']['large']);
return $image_data;
}
add_filter('wp_update_attachment_metadata', 'custom_compress_and_update_original_image', 11, 2);
function custom_compress_and_update_original_image($image_data, $attachment_id) {
if(!isset($image_data['unlinked'] ) || !$image_data['unlinked']) {
$image_data['file'] = 'null';
$image_data['width'] = 0;
$image_data['height'] = 0;
unset($image_data['sizes']['large']);
}else{
unset($image_data['unlinked']);
}
return $image_data;
}This adjustment aligns your code with our plugin’s upload process, ensuring both function correctly together.
Forum: Plugins
In reply to: [Offload Media - Cloud Storage] Uploading All Media To Current MonthOffload media plugin follows the default WordPress folder structure for media uploads. If you are experiencing any issues with this, we would be happy to investigate further.
To ensure we can troubleshoot effectively, we kindly request you to visit our website and initiate a live chat with us. This will allow us to provide real-time assistance and resolve your concern more efficiently.
We are extremely sorry for the issue. Could you please share a screenshot of the rule page and the settings page? This will help us recreate the issue on our end. Sometimes, these types of issues occur on the theme side, and we have limitations in checking them only through the frontend. you can also reach out to us through live chat support . Or create a support ticket on our support forum to get detailed support. This will help us to identify and solve the issue fast. Thanks!
Hi,
If the issue continues, it will be helpful if you can reach out to us via the chat on our website .
Hi,
We have tested the same version of plugin and are able to identify the issue. To investigate further and address the issue, We’d be glad to offer further assistance through our Acowebs Support forum.Hi There,
Could you please provide the version number of your addon plugin? Also, make sure you are using the latest version, V5.1.0.Hi Brad,
Please note that this feature is only available in the Pro version of the addon plugin.
Hi,
Thank you for reaching out to us.
To ensure that your customers can only purchase products in multiples of 3 (3, 6, 9, 12, etc.).
Please follow the steps below:
Step 1 : Set the “Quantity increment Step” option to 3 in the advanced settings.
Screenshot
Step 2 : Then add 0 to the “Minimum Quantity Required” in the validation from field settings.
ScreenshotPlease make these changes and let us know if everything works as expected.
Hi Brad,
Thank you for reaching out!
Yes, there is indeed a default option to change radio fields into clickable buttons. You can select this option from the “Check UI Style” setting in the field settings. Please refer: screenshotIf you need any further assistance or have more questions, feel free to ask!
Hi,
Thank you for contacting us. We can assist you with your issue, which usually occurs due to compatibility problems with the theme or other plugins. Could you please share the product page URLs to check the issue.Hello,
Thank you for reaching out. You can modify or translate the text “Select options” on the Add to Cart button from the Content/Strings section within the addon settings. You can refer to the screenshot from the below link to know more. Screenshot: https://tinyurl.com/2ypvplzb
Feel free to ask if you have any further questions.
Thanks,
Acowebs Support TeamHi,
Thanks for reaching out!
It appears that the issue you are encountering may be related to any script error. Hence We need to conduct a thorough investigation. Therefore, we kindly request that you reach out to us directly via our website, and submit a ticket regarding this matter.Thanks,
Acowebs Support.Hi,
Upon reviewing the line, we’ve noticed you’re using the woocommerce-easy-table-rate-shipping plugin. (https://ww.wp.xz.cn/plugins/woocommerce-easy-table-rate-shipping/)
Could you please contact their team to resolve the problem?
If you require any assistance from us, please don’t hesitate to let us know by responding to this thread.Thanks,
Acowebs Support Team- This reply was modified 2 years ago by adhil_acowebs.
- This reply was modified 2 years ago by adhil_acowebs.
- This reply was modified 2 years ago by adhil_acowebs.