Combined Sales Page on Profiles
Design and Skin Customization
I managed to list four different sales categories but I have two problems with my combined sales page.
1) I don't know how to do one global pager=true so I have to do pager=true for each section which looks weird especially if more than one category is past its page break.
2) I want the editor to edit the space on top of the sales page the way the profile builder edits the top space of the profile index page. Currently, the editor I put in the form makes a list of entries instead. When the title is clicked for each created item, the view which appears has issues. Like not rendering codes, and displaying things I don't want showing (see attached).
This is the code I'm using in item_index.tpl
{jrCore_module_url module="xxSales" assign="murl"}
<div class="block">
<div class="title">
<div class="block_config">
{jrCore_item_index_buttons module="xxSales" profile_id=$_profile_id}
</div>
<h1>{jrCore_lang module="xxSales" id="10" default="Sales"}</h1>
<div class="breadcrumbs">
<a href="{$jamroom_url}/{$profile_url}">{$profile_name}</a> ยป <a href="{$jamroom_url}/{$profile_url}/{$murl}">{jrCore_lang module="xxSales" id="10" default="Sales"}</a>
</div>
</div>
<div class="block_content">
{jrCore_list module="xxSales" profile_id=$_profile_id order_by="_created desc" pagebreak="1" page=$_post.p pager=true}
</div>
<div class="block_content">
<div id="default_list">
{jrCore_list module="jrStore" profile_id=$_profile_id order_by="product_display_order numerical_asc" pagebreak="1" page=$_post.p pager=true}
</div>
</div>
<div class="block_content">
<div id="service" >
{jrCore_list module="jrServiceShop" profile_id=$_profile_id order_by="service_display_order numerical_asc" pagebreak=1 page=$_post.p pager=true}
</div>
<div class="block_content">
{jrCore_list module="jrFoxyCartBundle" profile_id=$_profile_id order_by="bundle_display_order numerical_asc" pagebreak="1" page=$_post.p pager=true}
</div>
<div class="block_content">
{jrCore_list module="jrAudio" profile_id=$_profile_id order_by="audio_display_order numerical_asc" pagebreak="4" page=$_post.p pager=true}
</div>
</div>
I can see that this below is the section displaying the list of editor created entries but I don't know what to change it to if I want the editor to control the space on top of the page like the profile builder does to the profile index.
<div class="block_content">
{jrCore_list module="xxSales" profile_id=$_profile_id order_by="_created desc" pagebreak="1" page=$_post.p pager=true}
</div>
I can also see by trial and error that the item_detail.tpl has to do with some of the gobble-de-goop that displays from the editor, but how to rectify is beyond me.
Any ideas??? Anyone???
updated by @ken-rich: 03/22/16 06:49:06PM