135 comments found.
Hi there I have a ARPrice dynamic snippet fetching prices to desplay in my table. I purchase your plugin and activated it. Now they prices does not want to pull through to my table any more
Query(document).ready(function ($) { console.log(“Dynamic Pricing Script Loaded”); });
// Iterate over all elements with the class 'dynamic-price'
$('.dynamic-price').each(function () {
const priceElement = $(this);
});
// Extract the product ID from the class name (e.g., product-223)
const productClass = priceElement.attr('class').split(' ').find(cls => cls.startsWith('product-'));
if (!productClass) {
console.error("Product ID missing for:", this);
return;
}
const productId = productClass.split('-')[1]; // Extract the ID number
console.log("Fetching price for Product ID:", productId);
// Fetch product data using WooCommerce REST API
fetch("https://fundance.co.za/wp-json/wc/v3/products/" + productId, {
method: "GET",
headers: {
"Authorization": "Basic " + btoa("ck_e4867b454f0128d337b23d78ac50f4aa72479200:cs_d980777a0a25b15a021e4e3b9ef0337f056d8906")
}
})
.then(response => response.json())
.then(data => {
console.log("Fetch API Response:", data);
// Extract price data
const regularPrice = data.regular_price || "N/A";
const salePrice = data.sale_price || null;
})
.catch(error => {
console.error("Error fetching product data:", error);
priceElement.html("Price not available");
});
// Update price dynamically
if (salePrice) {
priceElement.html(
R${regularPrice}
R${salePrice}
);
} else {
priceElement.html(
R${regularPrice}
);
}
What could be causing the conflict
Hi,
I hope that have fixed the issue in the email support.
Thank you
Thank you for fixing this issue for me…
Can you please reply to my emails? I’m just waiting, waiting for a reply. Thanks!
Sorry, we are having some temporary problem with our email support@hashthemes.com
Can you please let us know here about your issue? Or email us at our Gmail ID hashthemes@gmail.com
Ok, just sent, thanks!
Hi, I’m using your plugin, and it works great. However, I have an issue where, when I add a product with the WooCommerce “Add to Cart” button, it adds two items instead of one. When I turn off the “Ajax Add to Cart on Single Page” function, it fixes the issue, but then the cart stops sliding in automatically.
How can I set it so the cart only adds one item and still opens automatically?
My website is https://flient.net/
kind regards,
Hans
Hi,
There are two add to carts running when you click on the “Add to cart” button. One is from your theme and another one from our plugin that is why multiple products are being added.
So you can check if the theme has option to disable the ajax add to cart on the single page. If there is no option then you will need to make some changes in the theme code.
If you want our developer to check and make the changes, you can email us at support@hashthemes.com
Thanks
Hi again
Trying to edit the tempaltes in Elementor Pro using the following instructions:
Navigate to your Dashboard. Go to Ultimate WooCommerce Ajax Cart > Cart Content > Elementor Content. Select the “Yes” option to initiate customization with Elementor.
When the inline window opens, the Elementor logo loads and is stuck there, it does not get into the page builder to edit.
The same happens for both the cart and checkout.
Elementor is working fine on the website otherwise.
How do I fix this issue?
Thanks
Hi,
We tested the latest version and the Elementor content editor is opening properly.
Most of the time, this happens when there is a conflict with multiple plugins. You can check this by disabling other plugins.
If it still does not work then we might need to check it on your website to find out the issue.
Thank you.
Hi When the popup cart loads, the amount of product is not showing in black text. It is white. I do not know how to change it to black colour text. Can you give me instructions? Thanks
Hi,
Can you please send us your website URL? It can be that CSS from other plugins might be overwriting our CSS..
Also there is option in the design tab of the setting from where you can set designs including color of the text.
Thanks
I messaged yesterday. I do have the cart block being used instead of classic cart if that makes a difference.
My website also has custom domain mapping for several domains to different pages, so I’m not sure if that matters.
But i do have to turn it off in order to access my orders page.
HI,
Sorry for the delay in reply. We had a weekend yesterday.
And as said earlier, please email us at support@hashthemes.com or you can come to our website chat so that we can get to know detail about your issue with your website URL and help you to fix all the issue.
Thanks
Hi! When this is activated, I get a critical warning on my woocommerce orders page. Can that be fixed?
Yes, it can be.. please email us at support@hashthemes.com
We will definitely help you to get it fixed
No displaying the quantity
Hi,
It does display quantity. Can you please send us your website URL and explain about the quantity you are referring?
Thanks
Hey there, I have implemented your plugin a few months ago. Now we’ve added multi language support via Polylang. We’ve managed to translate all strings for both languages but there’s a problem with the cart an checkout URLs. I’ve tried to switch the language from wp admin, fill the URLs for each language but when switching them again the URLs stay the same and cannot be set for each language in any way. Why is that? Is there a way to put different URLs for each langage, just like all texts?
Hi,
First of all, inorder to have support, you need to write to us with the account with which you purchased the plugin. You will see a purchased badge next to the user id.
And regarding your issue, please write us back with your account including the url of the website so that we can check for the issue and provide you with the solution.
Thanks
Hi again, yes of course I have purchased the plugin, here’s my purchase id – 1afa33cc-1a36-4064-a20b-89bba344bb4f . I was just hoping to get some sort of confirmation that it can be translated, and if possible link to a documentation with more detailed instructions in case I am doing something wrong.
Hi, I added popup cart (added to cart popup) but there doesnt work scroll (only scrollbar). Why is that?
Address: https://test.trichopartner.pl/
Hi,
It was due to a https issue which our team helped you to fixe through chat support of our website.
Thanks
Hey, is it possible that with a recent update from woocommerce the plugin has problems? When i try to add an item to the cart via ajax it returns a 500:
Fatal error: Uncaught Error: Call to a member function is_visible() on null in /var/www/html/wp-content/plugins/ultimate-woocommerce-cart/inc/templates/product-popup-content.php on line 10
Call stack:
include() wp-content/plugins/woocommerce/includes/wc-core-functions.php:345 wc_get_template() wp-content/plugins/ultimate-woocommerce-cart/classes/product-popup.php:73 UWCC_Product_Popup::get_cart_content() wp-content/plugins/ultimate-woocommerce-cart/classes/product-popup.php:141 UWCC_Product_Popup::set_ajax_fragments() wp-includes/class-wp-hook.php:324 WP_Hook::apply_filters() wp-includes/plugin.php:205 apply_filters() wp-content/plugins/woocommerce/includes/class-wc-ajax.php:229 WC_AJAX::get_refreshed_fragments() wp-content/plugins/ultimate-woocommerce-cart/classes/frontend-class.php:949 UWCC_Frontend::ajax_add_to_cart() wp-includes/class-wp-hook.php:324 WP_Hook::apply_filters() wp-includes/class-wp-hook.php:348 WP_Hook::do_action() wp-includes/plugin.php:517 do_action() wp-admin/admin-ajax.php:192
This happend only after a recent WC update. Would appreciate any help!
Thanks 
Can you please send us your website url and tell us how can we replicate the issue?
I already solved it by changing two lines of code in the /inc/templates/product-popup-content.php file. It seems that WC changed their code.
Good to know that you figured it our yourself. But on our test we never had the error you mentioned.
So we request you to write the changes here so that any one who has this problem can benefit for your changed code.
Thanks
Hello again, there is something wrong with the product variable on the product page. I sent you a video capture link, could you review it?
https://monosnap.com/file/baDtPOBswmCTOw3TykocJ3lme2A6B2Can you please check this https://nimb.ws/1Hv0sOX ? Its working for the variable product. Can you please send us your website url so that i can check?
Thank you, the link is: https://unmasaje.co/masaje/relajante/
Thank you for the website url. Can you please email us at support@hashthemes.com with your website login info so that our developer can check if there is any error in settings?
Thank you. everything was solved.
Hello, how are you, I would like to know how I can show in the floating cart the details of the variations that the customer chose.
Since only the main name appears.
Thanks in advance
Please send us your website URL so that we can check. The default WooCommerce variation detail should display as shown in the video screen here https://nimb.ws/1Hv0sOX
However, if the variation is generated from some other 3rd party plugin then it may not display.
In this case it is not shown although the product is added from the original product page without having any plugin active, change the variations, you can check it: https://unmasaje.co/masaje/relajante/
Thank you. everything was solved.
Hi there is minor/cosmetic issue in forming the URLs to 2 css files: in enqueue-class.php the lines:
wp_enqueue_style(‘fontawesome-6.3.0’, UWCC_BACKEND_CSS_DIR . ’/icons/fontawesome-6.3.0.css’, array(), UWCC_VERSION); wp_enqueue_style(‘materialdesignicons’, UWCC_BACKEND_CSS_DIR . ’/icons/materialdesignicons.css’, array(), UWCC_VERSION);
need the leading slash before icons to be removed. Not a functional error, but SEO analysis tools complain about double slash in url. Could you please fix it in the next update
Thank you for informing. We will fix it in our next update release.
Can you advise how can I change the behavior to display text after the product is added to the cart. Kind regards,
Hi,
It is because the theme you have used is developer in such a way that it show tooltip instead of text in the button for the “View Cart”.
But not problem, i have come up with a solution for you. Please go to Appearance > Customize > Additional CSS and paste the below CSS code
.button-view-more .added_to_cart:hover { color: #FFFFFF !important; }
.button-view-more .added_to_cart:after{ content:”View Cart”; margin-left: 10px; }
And please support us by reviewing our plugin if you like it and do let us know back if the solution does not work.
Thanks
Thank you for the support. Very good idea. I needed the ‘View cart’ translated, so I added it as inline style in functions.php. Thank you again. Rated the plugin with 5 stars
Great. Thank you very much for your good review.
Just to mention, the plugin is working perfectly with WPML translation (probably someone is interested about this)
And in addition, working seamlessly with Litespeed Cache. One of the reasons to start to search for such a plugin was a critical issue with mini cart and the cache.
Thank you for your comment.
Hi, I have opened my new store https://www.amo3fashion.com/ I am using the flat some theme, but The custom checkout page crate option is not available, I need to use 3rd party plugin will I be able to solve this if I purchase your Plug,
please check my website cart and checkout page to know if your plug can solve it, thank you
Yes, you can add the checkout page in the cart page without needing to create the checkout page. You can check the demo here https://demo.hashthemes.com/ultimate-woocommerce-cart/
Thanks
If you find any difficulty integration then we have dedicated support for our customer so you don’t have to worry about any thing.
And we also do have refund option if it does not work.
Thanks
Hello,
I would like a refund for this product because I don’t like it. Unfortunately, I didn’t find what I wanted to work with:
WooCommerce Ajax Cart & Added To Cart Popup – Floating/Sliding/Popup All in One Cart/Checkout Plugin
Purchase Code: 16747c86-025a-4a04-8519-1b4f8dd156a4
Can you refund me via the payment method I used, i.e. Paypal?
Here’s the transaction number: 5P387821XW0561700 Date: March 2, 2024 For a payment of 27.25 USD.
Sincerely
Hello there, I bought the pro of your plugin, but I have no option to use proversion in wordpress.com. Only messages, what I have after checkout of order – download the zip.
Hi,
You can use it in wordpress.com as well. Did you install the the plugin on your website? Please check our documentation here https://hashthemes.com/documentation/ultimate-woocommerce-ajax-cart-documentation/
Thanks
I bought the pro licence, how can I activate it on Wordpress.com?
Hi,
You need to download the zip file and the install it on your website by going to Plugin > Add New
Here is the detail documentation with screenshots https://hashthemes.com/documentation/ultimate-woocommerce-ajax-cart-documentation/
Thanks
Just purchased the latest plubin. Has the issue with the variations not showing properly been fixed? Right now if i select color and size variations.. it only recognizes size and gives an error on the page that color is required (even though color was in fact added). If i go to /cart/ the item shows fine with both the color and size. Just the plugin doesn’t recognize the color. How do i fix this?
Can you please explain your issue with your website url so that we can understand your issue more clearly and provide you with the solution?