X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Bookmark this site / bookmark this page (https://forum.x-cart.com/showthread.php?t=43244)

davidsaldana 10-26-2008 09:19 AM

Bookmark this site / bookmark this page
 
Has anyone successfully placed javascript for this type of function. We have tried a bunch of different scripts out there, but cannot get any of them to work. I realize there are a bunch of widgets for social bookmarking sites, but our customers are older, and dont really use those services. Just want a standard, add to favorites function.

Please help if you can.

-ds

neroag 10-26-2008 11:17 AM

Re: Bookmark this site / bookmark this page
 
in skin1/customer/home.tpl
before the </head> add ..

Code:

{literal}
<script type="text/javascript">

/***********************************************
* Bookmark site script- ╘ Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
        window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
        var elem = document.createElement('a');
        elem.setAttribute('href',url);
        elem.setAttribute('title',title);
        elem.setAttribute('rel','sidebar');
        elem.click();
}
else if(document.all)// ie
        window.external.AddFavorite(url, title);
}
</script>
{/literal}



add the following where you want it to display

Code:

<a href="javascript:bookmarksite('Site_name', 'http://www.yoursite.com')">Bookmark this site!</a>

Tested & Works in IE7 & Firefox

Original code found at http://www.dynamicdrive.com/dynamicindex9/addbook.htm

davidsaldana 10-26-2008 02:56 PM

Re: Bookmark this site / bookmark this page
 
Perfect.....Thank you so much.


All times are GMT -8. The time now is 10:13 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.