I don't know if you can help...
Joomla 1.5.26
Virtuemart 1.1.9
AWO Coupon 1.0.12
The problem seams to be with the sh404sef component (which I can't remove because it breaks the site).
Whenever I clicked on any link in the shopping cart page, it returned a blank page until I fixed it with this:
Change
to
Change
to
Change
to
But the coupons do the same thing i.e. link to a blank page (sry not sure if this is AWO or Virtuemart)
So I have to change the line (in couponField.tpl.php) in the same way, but I don't know how... :
I just need the syntax change (I don't understand PHP).
Joomla 1.5.26
Virtuemart 1.1.9
AWO Coupon 1.0.12
The problem seams to be with the sh404sef component (which I can't remove because it breaks the site).
Whenever I clicked on any link in the shopping cart page, it returned a blank page until I fixed it with this:
Change
<form action="<?php echo $mm_action_url ?>index.php"
to
<form action="<?php echo JRoute::_( 'index.php'); ?>"
Change
<form action="'. $action_url .'" method="post" style="display: inline;">
to
<form action="'.JRoute::_( 'index.php').'" method="post" style="display: inline;">
Change
<form action="'.$action_url.'" method="post" name="delete" style="display: inline;">
to
<form action="'.JRoute::_( 'index.php').'" method="post" name="delete" style="display: inline;">
But the coupons do the same thing i.e. link to a blank page (sry not sure if this is AWO or Virtuemart)
So I have to change the line (in couponField.tpl.php) in the same way, but I don't know how... :
<form action="<?php echo $mm_action_url . basename( $_SERVER['PHP_SELF']) ?>" method="post" onsubmit="return checkCouponField(this);">
I just need the syntax change (I don't understand PHP).