Advertisement
belostotsky

Change 0.00 р title

Sep 8th, 2014
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2. Ecwid.OnPageLoaded.add(function(page){
  3.     if (page.type == "CATEGORY") {
  4.         $("div.ecwid-productBrowser-price").each(function(){
  5.             if ($(this).text() == "0.00 р.") {
  6.             $(this).text("Цена договорная");
  7.         }
  8.         });      
  9.     };
  10.      if (page.type == "PRODUCT" && $("div.ecwid-productBrowser-price").text() == "0.00 р.") {
  11.             $("div.ecwid-productBrowser-price").text("Цена договорная");            
  12.     };    
  13. })
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement