Bir eklenti kullanıyorum, eklentinin butonunu sağ kısıma sepete eklenin yerine geçmesini istiyorum bir türlü yapamadım yardımcı olurmusunuz ?
//Add LoginToSeePrice button in Product page
var hidePriceProductPage = function (product_id) {
  var product_price_cont = $('#product');
  $.ajax({
    url: 'index.php?route=extension/module/logintoseeprice/checkIfPriceHidden',
    type: 'post',
    data: {product_id:product_id},
    dataType: 'json',
    success: function(json) {
      if(json['hide_price']){
        $( "#button-cart" ).unbind('click');
        var ltp_button = '<a id="logintoseeprice_button" class="btn btn-default" href="'+json['login_href']+'" style="margin-bottom:10px" >'+json['LTP_panel_name']+'</a>';
        $( "#button-cart" ).attr("onclick", "location.href = '"+json['login_href']+"'" );
        if(!$('#product #logintoseeprice_button').length) {
          product_price_cont.before(ltp_button);
        }
      }
    }
  });
}
İşlem Linki : LİNK