Hi,
We have CE 4.7.5 and we have a custom template.
The problem is that when taking off an item from the notice list it stays in the list plus it gets added to the basket instead of just disappearing.
What I have found so far is that in oxcmp_utils.php the
is not getting called.
So what I would like to ask is which controller should call this method?
widget/product/listitem_line.tpl is sending this form:
but I cannot find where it is getting handled. The the active class is: cl="account_noticelis" but I don't find where the form is handled in it.
Thanks a lot
Greg
We have CE 4.7.5 and we have a custom template.
The problem is that when taking off an item from the notice list it stays in the list plus it gets added to the basket instead of just disappearing.
What I have found so far is that in oxcmp_utils.php the
Code:
public function toNoticeList( $sProductId = null, $dAmount = null, $aSel = null)
So what I would like to ask is which controller should call this method?
widget/product/listitem_line.tpl is sending this form:
Code:
<form action="[{ $oViewConf->getSelfActionLink() }]" method="post" id="remove_[{$removeFunction}][{$testid}]">
<div>
[{ $oViewConf->getHiddenSid() }]
<input type="hidden" name="cl" value="[{ $oViewConf->getActiveClassName() }]">
<input type="hidden" name="fnc" value="[{$removeFunction}]">
<input type="hidden" name="aid" value="[{$product->oxarticles__oxid->value}]">
<input type="hidden" name="am" value="0">
<input type="hidden" name="itmid" value="[{$product->getItemKey()}]">
[{if $recommid}]
<input type="hidden" name="recommid" value="[{$recommid}]">
[{/if}]
</div>
</form>
Thanks a lot
Greg