diff options
Diffstat (limited to 'views/default/canvas')
| -rw-r--r-- | views/default/canvas/layouts/widgets.php | 14 | 
1 files changed, 10 insertions, 4 deletions
| diff --git a/views/default/canvas/layouts/widgets.php b/views/default/canvas/layouts/widgets.php index 7201d2e19..a4a91a4c6 100644 --- a/views/default/canvas/layouts/widgets.php +++ b/views/default/canvas/layouts/widgets.php @@ -86,10 +86,16 @@ Choose the features you want to add to your page by dragging them from the <b>Wi      <td colspan="2" align="left" valign="top"> -    <h2 class="profile_box"><?php echo elgg_echo("widgets:profilebox"); ?></h2> -    <div id="profile_box_widgets"> -    <p><small>(Fixed position on page)</small></p> -    </div> +    <?php +	    if(get_context() == "profile"){  +    ?> +    		<h2 class="profile_box"><?php echo elgg_echo("widgets:profilebox"); ?></h2> +    		<div id="profile_box_widgets"> +    		<p><small>(<?php echo elgg_echo("widgets:fixed"); ?>)</small></p> +    		</div> +    <?php +	    }  +    ?>      </td> | 
