I would like to use absolute URL instead of relative URL as the breadcrumb link on my website. Right now, I am using Drupal 7 and Path Breadcrumb 7.x-3.0 Module. All my breadcrumbs are set by Module.
This is a sample of my breadcrumb right now.
<div id="breadcrumbs"> <h2 class="element-invisible">You are here</h2> <div class="breadcrumb"> <a href="/">Home</a> » <a href="/category.html">Category</a> </div> <span class="delimiter"> > </span> <strong>Dimmer</strong> </div>
How can I make the breadcrumbs like these?
<div id="breadcrumbs"> <h2 class="element-invisible">You are here</h2> <div class="breadcrumb"> <a href="http://mywebsite.com">Home</a> » <a href="http://mywebsite.com/category.html">Category</a> </div> <span class="delimiter"> > </span> <strong>Dimmer</strong> </div>
EDIT
My breadcrumb code is generated by print $breadcrumb;
in the page.tpl.php file. How can I convert the breadcrumb link from Relative to Absolute in this case?