i think ive got the fix now... im not sure though if its good enough... it was mostly trial and error... and the couple of lessons ive had in java... but hey its worked for me..... + it fixed the view icons problem (yay).
without furthur delay... here it is:
in [joomlafolder]/freeway/includes/functions/html_output.php
find the first occurence of:
| Code: |
| else if(!isset($HTTP_GET_VARS['products_id']) && substr($parameters,0,12)=='products_id=') $parameters.="&option=com_freeway&openfile=".FILENAME_PRODUCT_INFO; |
AFTER that, press return (create new line) and paste the following code snippet
| Code: |
else if($page!=FILENAME_PRODUCT_INFO && $page!=FILENAME_SHOPPING_CART) $parameters.="";
else if(($parameters!="" && strpos($parameters,'event')===false && strpos($parameters,'shopping_cart')===false && strpos($parameters,'product_info')===false) ) $parameters.="&option=com_freeway&openfile=".FILENAME_PRODUCT_INFO; |
ive tested this on my site... and it solves the problem
[edit] notice ive added a check for 'event' in the params... this is because i descovered that it conflicted with events.... thats now fixed... but i havent got sevices or subscriptions set up.. can anyone confirm if it causes a conflict with them???