20 comments found.
deleted
Hello I have installed your module and everything seems to be working okay except the add to cart isnt refreshing the cart block when clicking outside of the modal.
please check lprcs.com to see it
What should i be looking at to fix this issue?
Hi
Looks like XML/CSS selectors are missing from configuration for some reason. Please try to add following in Configuration > NwdAjax Configuration > Settings > Ajax Cart > Blocks updated via Ajax:
Block name in XML Layout: minicart_head CSS selector of block: .header-minicart
thanks that fixed it
Hi, will is this extension be updated for 2.3? Thanks.
Hi
Do you think there will be any demand on ajax cart for magento 2? As you can see on our demo magento 2 has built-in ajax cart functionality – https://demo2.nwdthemes.com/gear/watches.html
Hi, I think buyers will be put off if the last update was 2 April 16 . That’s history. Thanks.
Well, yes, last update was long time ago. But it was designed for magento 1 and is still working fine with magento 1.
As for magento 2 – we will discuss this option
OK thanks. Can uses Save to Wishlist without logging in? That is, can un-registered users save to wishlist?
No, wishlist available only for registered customers
The time for huge discounts is coming!.
Black Friday Sale – 50% off on all products
Now only $18($36). Valid from 19 Nov 2018 till 25 Nov 2018
Hi, I have recently purchased the module and when I click ‘Quick View’ I literally get the complete website loading in the I frame. Do you have any suggestions?
Hi
Basically quick view operate with theme product view layout and remove unneeded elements to get quick view layout.
It could be that you have pretty customized product page. Please provide admin / ftp credentials to nwdthemes@gmail.com . We will check the issue.
Thanks a lot,
When i add a button to cart and shows popup, e see that shows the title of the product, but is it possible to show thumbnails of the product that was added?
Hi, I have recently upgraded to Magento 1.9.3.3. Whenever I click on the “Quick View”, I get this error “Fatal error: Call to undefined method Mage_Core_Controller_Request_Http::isRedirect() in /home/thebeads/public_html/app/code/community/Nwdthemes/Nwdajax/controllers/ViewController.php on line 39” Everything works except for quickview. Do you know how I can fix it? I am using the original RWD theme. Thank you
Hi
I have checked ajax cart on 1.9.3.3 and it is working fine.
Error appear in code which runs in case product is not loaded. What you can do is update
if (isset($_GET['store']) && !$this->getNwdData()->isRedirect()) {
$this->_redirect('');
} elseif (!$this->getRequest()->isRedirect()) {
$this->_forward('noRoute');
}
to
$this->getNwdData()->setMessage($this->__('Product is not available'));
$this->renderNwdData();
return;
Thanks a lot,
We are upgrading this code in our overall codebase. We are trying to see if there were any modifications made directly to this by developers working on our project in the past.
Would you be able to supply us with these two old versions of the code? So we can compare it to the versions we currently have before upgrading.
version 1.1.0 version 1.0.0
Thanks
Hello, Can I add description & review block in quick view page?
Hi
The description and review blocks are removed from quick view in layout update file. You can comment out or delete following lines in this file to add description and reviews blocks back:
/app/design/frontend/base/default/layout/nwdthemes/nwdajax.xml:66
<action method=”unsetChild”><name>description</name></action> <action method=”unsetChild”><name>reviews</name></action>
Thanks a lot,
Cheers from your Team @ NWDthemes
Follow us on Facebook
Twitter
it also doesn’t active with ajax layered navigation, when I change filter, add cart button bind would not applied with another pages (in ajax page or products)... is there way to works together?
Thank you.
I’m using RWD theme, what block do I need to add (Blocks updated via Ajax) in the setting?
Hi,
I have purchased this module but did not work as there are few rewrites.
Could you issue refund for this please?
Thanks
Hello,
I’ve just recently purchased and installed this extension on our dev store here: http://diyd.neoverve.net/.
Currently, with the extension disabled, we are experiencing issues with product information not showing up in the cart page, only subtotal and grand total information. To see how it is supposed to look, our live store is available here: https://diydecorstore.com/
Thanks!
Hi
Ajax cart does not override cart page functionality. Try to enable error display to get exact error message. Edit index.php, find#ini_set('display_errors', 1);
and update to
Mage::setIsDeveloperMode(true);
ini_set('display_errors', 1);
Also please clarify – you disable module in Disable Modules Output or by editing app/etc/modules/Nwdthemes_NwdAjax.xml ?
Thanks a lot,
Apologies, the reason for the error was all on me, there was an attribute I was trying to display in the cart, that did not actually exist in my test environment, made that change and it now works properly.
I have however, encountered a different issue. We use a mainly grouped product setup, and on the product page, we have styled one of the products to simply be a “get free sample” link. The ajax functionality does not seem to be working for these items, but work fine for the rest of the products on page.
HTML wise, they are identical, just with an extra css class to alter how that item looks, example here: http://diyd.neoverve.net/popular-products/aspect-backsplash-3x6-brushed-stainless-short-grain-metal-tile
Hi
Extension assign certain actions to add-to-cart button. If you want to get the same functionality for “Get a Free Sample” links you need to modify extension javascript ( skin\frontend\base\default\js\nwdthemes\nwdajax.js ). Copy this file from base package to your current package folder before update.
Ajax cart actions assigned to elements with “btn-cart” class. Look for this line
$$('.btn-cart').each(function (item) {
Can I add continue shopping button next to view cart button, also I want to add product thumbnail image before the product name.
Hi
Yes, it is possible. You need to update app\code\community\Nwdthemes\Nwdajax\controllers\CartController.php
You need to updateprotected function _getCartSuccessMessage($msg, $product)
For example if you want to add button that leads to index.php you need to update it to
protected function _getCartSuccessMessage($msg, $product)
{
return '<div class="center_content">'
. $this->__($msg, Mage::helper('core')->escapeHtml($product->getName()))
. '<div class="buttons-container">'
. sprintf($this->_btnTemplate, 'btn-location-cart', Mage::getUrl('checkout/cart'), $this->__('View Cart'))
. sprintf($this->_btnTemplate, 'btn-location-index', Mage::getUrl(''), $this->__('Continue Shopping'))
. sprintf($this->_btnTemplate, 'btn-location-checkout', Mage::helper('checkout/url')->getCheckoutUrl(), $this->__('Checkout'))
. '</div>'
. '</div>';
}
Regarding product image – you can get it from product variable that is passed to the function.
Thanks a lot,
I just installed a fresh copy of magento 1.9.2.4. I am able to add items to the cart however UNABLE to delete in my shopping cart. When I click on the garbage can, I get a message “Cannot remove the item.”
Hi
This issue is connected to your theme. Please check this article – http://nwdthemes.com/2016/03/03/supee-7405-cannot-remove-the-item-from-cart/
Thanks a lot,
I’m actually using the original RWD theme for magento 1.9.2.4. Will you have a fix soon instead of hacking the original magento codes? Thanks
You need to update app\code\community\Nwdthemes\Nwdajax\Block\Cart\Item\Renderer.php
find'id'=>$this->getItem()->getId(),
and update to
'id'=>$this->getItem()->getId(),
'form_key' => Mage::getSingleton('core/session')->getFormKey(),
Hi, I am using Lesti FPC. Do you know what is the name of the block that we need to add to FPC Dynamic blocks, so that your cart will update properly and not cache it?
Our extension do not have separate cart block, instead it use existing blocks. You can check block name used by ajax cart in confugration section ( System > Configuration > Nwdthemes extensions > NwdAjax configuration )
Wishlist AJAX isn’t working:
I sent an email also, but not sure if it is going to make it, thanks.
Thanks!
Hi, we have a problem with the quick view functionality, the iframe cannot load the product view, this because an error 500. All permissions are fine, we don’t know what happen.
Hello.
Quick view url is possibly blocked by security module on your server. It could be solved by adding exception for this url or removing rule that is blocking it.
You can check it to confirm by disabling security module filter temporary in your .htaccess :
SecFilterEngine Off
Thanks a lot,
Hi, the security module filter is disabled:
<IfModule mod_security.c> ###########################################- disable POST processing to not break multiple image upload </IfModule>
SecFilterEngine Off
SecFilterScanPOST Off
The problem persist.
So this is not security blocking issue. Looks like some error occurred in ViewController. Can you please check Magento and php error logs to see recent errors.
Or you can send us your url and FTP details to nwdthemes@gmail.com and we will check and solve this problem.
Hi the problem is:
$oRewrite = Mage::getModel(‘core/url_rewrite’)
>setStoreId(Mage::app()>getStore()->getId())
->loadByRequestPath($path);
$productId = $oRewrite->getProductId();
The code doesn’t load the product id from path.
Could you post url to your site here or send it to nwdthemes@gmail.com
We need to check URL structure.
Is it possible to have the related products on the success pop-up notification when I add an item to the basket?
Hi
Yes, it is possible. You need to update app\code\community\Nwdthemes\Nwdajax\controllers\CartController.php
Findprotected function _getCartSuccessMessage($msg, $product)
and update it to
protected function _getCartSuccessMessage($msg, $product)
{
Mage::register('product', $product);
$this->loadLayout();
$_block = $this->getLayout()
->createBlock('catalog/product_list_related')
->setTemplate('catalog/product/list/related.phtml');
return '<div class="center_content">'
. $this->__($msg, Mage::helper('core')->escapeHtml($product->getName()))
. '<div class="buttons-container">'
. sprintf($this->_btnTemplate, 'btn-location-cart', Mage::getUrl('checkout/cart'), $this->__('View Cart'))
. sprintf($this->_btnTemplate, 'btn-location-checkout', Mage::helper('checkout/url')->getCheckoutUrl(), $this->__('Checkout'))
. '</div>'
. ($_block ? $_block->toHtml() : '')
. '</div>';
}
Thanks a lot,
The related product block on page has a slider but as this is an Ajax block it requires the script to be re-assign once this content block comes in. Where is the success js to append my initialization of this this?
Try to add carousel init js to related.phtml
Hi Do you know if this will work with ultimo theme
Hello
I purchased your extension and installed it in my magento store but I dont see in when I click in add to cart button
here is my store http://www.bestvaluedeals.com.au/store/
Please help me
Regards Alfons
Hi Alfons
1. As i can see in developer console you have javascript errors.
2. Your custom theme already use some ajax cart extension ( CMSMART ajaxcart )
First, lets try to disable it and check if it fix the issue. If that does not help we will continue debugging.