A customer suggested the following enhancement as he felt that pricing does not need to be displayed when a customer is logged in. This makes perfect sense as there is a 'place an ad link'. There is no real point having your visitors potentially repeating part of the same process twice. This code basically stops the pricing module from showing when you are logged in. Here is what to do. Find your accordion.tpl file in the directory modules/templatescodes/templates/ Replace the line {if $adpack } with this {if $adpack && $smarty.session.username=='' && $smarty.cookies.username==""} Then in each of your layout.tpl files (for each Fluid template) do exactly the same replacement. Notice it is two single quotes ' ' and then two double quotes " ". This does not show clearly in the code above. Its up to you. We will be doing this now by default but it is a workflow choice.