Forum Activity for @ken-rich

Ken Rich
@ken-rich
03/22/16 06:48:19PM
926 posts

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???
702.JPG.jpg 702.JPG.jpg - 37KB

updated by @ken-rich: 03/22/16 06:49:06PM
Ken Rich
@ken-rich
03/17/16 05:28:19AM
926 posts

Followers Documentation?


Using Jamroom

Thanks Michael. I was hoping for something more simple for people to use, since most of my members are simple folk that need easy solutions like - click a button.

For instance, if they use gmail they can get it to read RSS by installing and figuring out Feedly and IFTTT but the technically challenged won't do that, nor will they switch to Thunderbird.

However, if there was a subscribe button they could click, they might do that. That's the sort of functionality I'm looking for.
Ken Rich
@ken-rich
03/16/16 06:29:49PM
926 posts

Followers Documentation?


Using Jamroom

Thanks - that's the info I was looking for. It behaves the way I thought it did, which means it's not useful to my current dilemia.

One of my members is is looking for a way people can follow his blog by email notification something like Wordpress or Facebook does it.

Is it possible to integrate an e-mail subscribe button for blogs, or is RSS the only currently available way for someone to follow a blog?
Ken Rich
@ken-rich
03/16/16 10:03:29AM
926 posts

Followers Documentation?


Using Jamroom

I was looking for some information on the Followers functionality. However, this documentation link is not opening for me. Is it working for anyone else?

https://www.jamroom.net/the-jamroom-network/documentation/modules/3600/followers
updated by @ken-rich: 08/16/16 05:41:15AM
Ken Rich
@ken-rich
03/13/16 08:39:19AM
926 posts

Combined Sales Page on Profiles


Design and Skin Customization

Also, I'm pretty sure I did the code blocks above as singles - not sure why it doubled up???
Ken Rich
@ken-rich
03/13/16 08:37:49AM
926 posts

Combined Sales Page on Profiles


Design and Skin Customization

I finally carved out some time for this. I created the module and so far I've got products to list with this code.

 {* If the Profile has products they will show here*}
 <div class="block_content">
        <div id="default_list">
            {jrCore_list module="jrStore" profile_id=$_profile_id order_by="product_display_order numerical_asc" pagebreak="2" page=$_post.p pager=true}
        </div>
    </div> 

I'm pretty sure I can get bundles, services, and songs to list too by grabbing the list codes from their respective item indexes. Not sure about layout issues yet.

On the top of the page, I would like an editable space like the Profile Index has. I am not having much success with that.

In the form designer, I created a new category sales_editor in both the create and modify view. It provides the editor function and verification is string with allowed HTML.

In the Sales item_index I put this code I copied and modified from the profile_Index template.

 {* If the Profile creates content with the editor it will show here *}
        {if strlen($sales_editor) > 1}
        <div class="row">
            <div class="col12 last">
                <div class="block">
                    <div class="block_content">
                        <div class="item" style="margin-top:0">
                            {$sales_editor|jrCore_format_string:$profile_quota_id}
                        </div>
                    </div>
                </div>
            </div>
        </div>
        {/if}

To test, I tried to embed a bundle but I got what you see in the attached screenshot. So at this point, I'm at a loss as to how to proceed.
sales.JPG.jpg sales.JPG.jpg - 37KB
Ken Rich
@ken-rich
03/10/16 10:31:25AM
926 posts

Adding Lyrics to Song Pages (pop-out from link)


Design and Skin Customization

Thanks Paul - it took me a while to carve out some time to test this but it works.

I actually found adding an editor rather than a test area worked better because it preserves the formatting when lyrics are pasted in, and it allows for linking to lyrics easily.

If there is a downside I haven't seen it yet.
Ken Rich
@ken-rich
01/29/16 06:36:00PM
926 posts

Combined Sales Page on Profiles


Design and Skin Customization

Hi Michael,

Thanks, I'll try that when I can carve out some time.
Ken Rich
@ken-rich
01/28/16 07:02:08PM
926 posts

Combined Sales Page on Profiles


Design and Skin Customization

Hi Michael,

Yes - I was about to say I didn't think the site builder worked in profiles yet.

I'm needing it in profiles as a tab with it's own URL. The way of organizing it all separately the way it is now can stay (it's useful), but I need a "combined" sales page that has it all under one roof for marketing purposes.

It can have partial lists that link to more items (for profiles that have many items).

I have never built a module and wouldn't know where to start.
Ken Rich
@ken-rich
01/28/16 02:20:10PM
926 posts

Combined Sales Page on Profiles


Design and Skin Customization

I brought this up before and someone closed it.

Brian suggested this can be done with a Foxycart list call, Paul suggested using the seamless module.

In any case, I find that my clients would rather promote other sales sites because they list all their items on one page, rather than spread out over several tabs.

I've even got a client who is award winning in sales saying there should be one page his fans can go to to see all his saleable items, whether downloads, physical items, services. He is still waiting for me to implement.

The trouble is, I have no idea how.

1) Can this be done?
2) What is the best approach - FC list call or seamless?
3) Is someone good at coding willing to try this?
updated by @ken-rich: 07/03/16 02:55:28PM
  17