REMOVE DOLPHIN FOOTER LINK VIDEO HERE
BY YOUTUBE USER DeveloperOnCall on Aug 18, 2011
http://www.youtube.com/watch?v=jnQGOxoDO6E
GO INTO YOUR DOLPHIN TEMPLATES/ BASE/ FILE NAME TO EDIT IS
/templates/base/_sub_footer.html
REPLACE THIS LINE
__boonex_footers__
WITH THIS LINE AND DONE
WRAP A DIV TAG AROUND THE LINE WITH END DIV TAG
div style="display:none; visibility:none;"
__boonex_footers__
END DIV TAG
Search This Blog
Sunday, February 12, 2012
Saturday, January 28, 2012
ADD AUTO FRIEND TO DOLPHIN 7.0.8
add auto friend to Dolphin 7.0.8
I see that you want to add auto friend to Dolphin 7.0.8 in inc/classes/Bx DolJoinProcessor.Php
at line 248-249 $aProfile1 = $this->oPF->getProfileFromValues($this->aValues[0]);
list($iId1, $sStatus1) = $oPC->createProfile($aProfile1);
add the code below
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 2, `Check` = 1");
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 1, `Check` = 1");
So the end results will look like this
$aProfile1 = $this->oPF->getProfileFromValues($this->aValues[0]);
list($iId1, $sStatus1) = $oPC->createProfile($aProfile1);
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 2, `Check` = 1");
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 1, `Check` = 1");
I see that you want to add auto friend to Dolphin 7.0.8 in inc/classes/Bx DolJoinProcessor.Php
at line 248-249 $aProfile1 = $this->oPF->getProfileFromValues($this->aValues[0]);
list($iId1, $sStatus1) = $oPC->createProfile($aProfile1);
add the code below
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 2, `Check` = 1");
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 1, `Check` = 1");
So the end results will look like this
$aProfile1 = $this->oPF->getProfileFromValues($this->aValues[0]);
list($iId1, $sStatus1) = $oPC->createProfile($aProfile1);
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 2, `Check` = 1");
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 1, `Check` = 1");
Wednesday, January 11, 2012
How to add google plus 1 to all web pages of boonex dolphin 7
Add Google +1 Button to Dolphin 7
First you will need to go to Google's +1 code page and pick the size and style you want to use.
http://www.google.com/webmasters/+1/button/index.html
After picking your size and style, it will give you 2 lines of code you need to add to your Dolphin 7 website.
Here is the story
http://www.dialme.com/m/articles/view/Add-Google-1-Button-to-Dolphin-7
First you will need to go to Google's +1 code page and pick the size and style you want to use.
http://www.google.com/webmasters/+1/button/index.html
After picking your size and style, it will give you 2 lines of code you need to add to your Dolphin 7 website.
Here is the story
http://www.dialme.com/m/articles/view/Add-Google-1-Button-to-Dolphin-7
Labels:
dolphin google plus 1
How to Track Page Load Times with Google Analytics in dolphin 7 website
How to Track Page Load Times with Google Analytics in dolphin 7 website
Many people use the popular Google Analytics as their primary means of tracking website traffic. Google Analytics provides some really detailed statistics and is pretty decent.
There are a number of customizations you can do to your Analytics code to provide additional details and stats in your account. Some people are not aware of this, but one of the simple ones you can add is Track Page Load Times.
I am placing this in the Dolphin 7 Tutorials section because further down you will see a couple of Dolphin 7 code references.
It can obviously be used with any type of website though.
After verifying you have correctly added or updated your code, you will need to wait a few hours, and preferably at least 24 hours before you start seeing data in your Google Analytics account.
Google suggests adding Analytics code to the header between Google Analytics Code tag. In Dolphin 7's case this would be:
/templates/base/_header.html
or and in
But, you can still add it to the bottom of your page before the
Many people use the popular Google Analytics as their primary means of tracking website traffic. Google Analytics provides some really detailed statistics and is pretty decent.
There are a number of customizations you can do to your Analytics code to provide additional details and stats in your account. Some people are not aware of this, but one of the simple ones you can add is Track Page Load Times.
I am placing this in the Dolphin 7 Tutorials section because further down you will see a couple of Dolphin 7 code references.
It can obviously be used with any type of website though.
After verifying you have correctly added or updated your code, you will need to wait a few hours, and preferably at least 24 hours before you start seeing data in your Google Analytics account.
Google suggests adding Analytics code to the header between Google Analytics Code tag. In Dolphin 7's case this would be:
/templates/base/_header.html
or and in
But, you can still add it to the bottom of your page before the