Skip to main content

How to Install

Open .htaccess and Add

 

# **** BUSINESS CARD WIDGET****

RewriteRule ^bcard(/?|)$ index.php?link1=bcard [QSA]
RewriteRule ^bcard/bcardwidget(/?|)$ index.php?link1=bcardwidget [NC,QSA]

Open index.php and add around page 892

case 'bcard':
include('sources/bcard.php');
 break;

case 'bcardwidget': 
include('sources/bcardwidget.php');
break;

open themes/yourtheme/layout/timeline/content.phtml and look for

 <?php
            foreach ($fields as $key => $wo['field']) {
                $name = $wo['field']['fid'];
                if (!empty($wo['user_profile']['fields'][$name])) {
                    echo Wo_LoadPage('timeline/custom-fields');
                }
            }
            ?>
        </ul>
        <?php } ?>

and after that add 

<?php echo Wo_LoadPage('bcard/icard');?>