Hi,
Thanks for the access.
I have to admit that I don't understand the issue you got ; which looks like coming from an external plugin or maybe the template.
Here some code from the HikaMarket view "productmarket | form".
<?php if(hikamarket::acl('product_edit_variants')) { ?>
</div>
<div id="hikamarket_product_edition_tab_2" style="display:none;">
<div id="hikamarket_product_variant_list"><?php
echo $this->loadTemplate('variants');
?></div>
<div id="hikamarket_product_variant_edition">
</div>
</div>
<?php } ?>
<?php if(!empty($this->product->product_type) && $this->product->product_type == 'variant' && !empty($this->product->product_parent_id)) { ?>
<input type="hidden" name="data[product][product_type]" value="<?php echo $this->product->product_type; ?>"/>
<input type="hidden" name="data[product][product_parent_id]" value="<?php echo (int)$this->product->product_parent_id; ?>"/>
<?php } ?>
<input type="hidden" name="cancel_action" value="<?php echo @$this->cancel_action; ?>"/>
<input type="hidden" name="cancel_url" value="<?php echo @$this->cancel_url; ?>"/>
<input type="hidden" name="cid[]" value="<?php echo @$this->product->product_id; ?>"/>
<input type="hidden" name="option" value="<?php echo HIKAMARKET_COMPONENT; ?>"/>
<input type="hidden" name="task" value=""/>
<input type="hidden" name="ctrl" value="product"/>
<?php echo JHTML::_('form.token'); ?>
</form>
In this code, we display the view "form_variants" ; which display the content of the second tab.
At the end of the code, we see that there are the hidden fields.
The result in your website is more than unusual ; instead of displaying the hidden field "ctrl" ; the HTML is broken and the content of the view "form_variants" is re-display into.
We can see that some code has been added by something "else" ; we can see the class "art-button" set on the incorrect added HTML.
There is no such class on the button in the original view.
I put two screenshots ; one from your website (invalid) and another from my local website (as you can have the same result in our demo website).
My conclusion is that, the plugin or element which add the "art-button" class is generating errors in the code ; maybe a wrong regular expression which result of a duplication of a part of the code...
Regards,