where is the page composer ?

we look for the option of page composer in the Dolphin Admin 6.1.6 but we did not find it.

any help please ?

 

 

Quote · 24 Jun 2009

What for composer?? 
The only thing you can find in admin is the builders

Kids first
Quote · 24 Jun 2009

 

What for composer?? 
The only thing you can find in admin is the builders

 

 for this:

 

Edit designbox_3.html and rename the css class names so they look like this.

 

<div class="disignBoxFirst3">
<div class="boxFirstHeader3">__title____caption_item__</div>
<div class="boxContent3">__designbox_content__</div>
</div>

save the file and upload to your server.

now edit templates\tmpl_uni\general.css and add this to the bottom.

 

.disignBoxFirst3 {
position:relative;
border:1px solid #0D3966;
margin-bottom:10px;
background-image:url('../images/head_cutting.gif');
background-repeat:repeat-x;
background-color:#000000;
}
.boxFirstHeader3 {
height:17px;
padding:3px 0px 0px 8px;
font-size:12px;
font-weight:bold;
color:#FFF;
text-align:left;
border-bottom: 1px solid #0D3966;
}
.boxFirstHeader3 a,  .boxFirstHeader3 a:link,  .boxFirstHeader3 a:active,  .boxFirstHeader3 a:visited {
text-decoration: none;
color: #FFF;
}
.boxFirstHeader3 a:hover {
text-decoration: underline;
color: #FFF;
}
.boxContent3 {
/*        position:relative; */
overflow:hidden;
font-size:13px;
/*color:#000000;*/
padding:10px;
}



Change the colors to that to what you want.


Now edit inc\design.inc.php



look for this at about line 133.

$fs = filesize ( BX_DIRECTORY_PATH_ROOT . "templates/tmpl_{$tmpl}/designbox_2.html" );
$f = fopen ( BX_DIRECTORY_PATH_ROOT . "templates/tmpl_{$tmpl}/designbox_2.html", "r" );
$templ_designbox2 = fread ( $f, $fs );
fclose ( $f );

 

and add this right under it.

$fs = filesize ( BX_DIRECTORY_PATH_ROOT . "templates/tmpl_{$tmpl}/designbox_3.html" );
$f = fopen ( BX_DIRECTORY_PATH_ROOT . "templates/tmpl_{$tmpl}/designbox_3.html", "r" );
$templ_designbox3 = fread ( $f, $fs );
fclose ( $f );



Now look for this at about line 159

global $templ_designbox2;

add this right under it.

global $templ_designbox3;


Look for this at line 177.

if ($db_num == 2) // && !$templ_designbox2 )
{
$templ = $templ_designbox2;
}
elseif( $db_num == 1) // && !$templ_designbox1 )

Change to look like this.

if ($db_num == 3) // && !$templ_designbox2 )
{
$templ = $templ_designbox3;
}
elseif ($db_num == 2) // && !$templ_designbox2 )
{
$templ = $templ_designbox2;
}
elseif( $db_num == 1) // && !$templ_designbox1 )


Save and upload to server.

Now a change needs to be made in the database. Using PHPMYadmin open your database and look for the PageCompose Table. You just need to change the column for DesignBox from the default value of 1 to 3 for the box you want to use template 3 we just created.

Save the change.

Now open Dolphin Admin and use the page composer to move the block up or down one than back again to for dolphin to update things.

Quote · 24 Jun 2009

Now open Dolphin Admin and use the page composer to move the block up or down one than back again to for dolphin to update things.

They mean the Page Builder in admin-builders. :)

Kids first
Quote · 24 Jun 2009

Sorry about that. It's page builder not page composer.

I posted it, so i went back and corrected the post. Sorry about the confusion.

https://www.deanbassett.com
Quote · 24 Jun 2009

 

Sorry about that. It's page builder not page composer.

I posted it, so i went back and corrected the post. Sorry about the confusion.

 

 

 

lol Foot in mouth

 it is good post u do.

thanks a lot and god bless you deano92964

Quote · 25 Jun 2009

Actually guys, there is a Page Composer.  AntonLV has it over on Expertzzz.com  So, the Opie wasn't totally off on this one, just hasn't spent the money to get it yet.  LOL

Quote · 27 Jun 2009
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.