Hi,
1. I am using Falang. First I couldn't translate category canonical url... Found that I had to enable "Activate the edition of content in multiple languages". There was another button "content published by default" which I enabled too. After I did both "content published by default" button disappeared which I would like to disable now. How can I do this?
2. Where I can link menu item id to minicart module? With wishlist module everything is fine but I cant find it in minicart...
Update. It seems that problem is related with my template override on product/cart. I think this is the code it is using to display title
<?php if(@$defaultParams['link_to_product_page']){ ?> <a href="<?php echo hikashop_completeLink('product&task=show&cid='.$row->product_id.'&name='.$row->alias.$url_itemid);?>" class="moduleItemTitle"><?php } ?>
<?php if(@$row->main_product_name) echo $row->main_product_name; else echo $row->product_name;?>
<?php if(@$defaultParams['link_to_product_page']){ ?></a><?php } ?>
And it it is different from default hikashop.
The problem is that title link isn't working as it should. If click on product title from minicart module it will display that product in same page you are, even home....But everything is fine with other template which is using default hikashop product/cart
Could anyone tell me if this code is good or how can modify it to display title link correctly?
Thanks