Forum Activity for @michael

michael
@michael
11/25/15 12:30:16AM
7,832 posts

old sitebuilder construction kit missing


Using Jamroom

I just did ken's the other day and it all seamed to go smoothly, I think your's is the only skin still using the old site builder now.

If you you want to send me your skin I can try it here as a pre-run to see if I see anything glaringly obvious.

POINT: If you've tried before and reverted to the old system, then its possible that there is data in the new sitebuilder's datastore. The import is only meant to be run once, so empty the tables:

jr_jrsitebuilder_menu
jr_jrsitebuilder_page
jr_jrsitebuilder_widget

via the ACP -> DEVELOPER TOOLS -> DATABASE ADMIN -> (check those three tables) -> truncate

That will drop any new sitebuilder stuff before running the integrity check.
michael
@michael
11/25/15 12:16:10AM
7,832 posts

Unify several rss modules


Design and Skin Customization

Actually seams like you don't need a module to do that, just put this in a skin template:
{capture name="template" assign="rss_template"}{literal}<?xml version="1.0"?>
<rss version="2.0">
    <channel>
        <title>Seamless RSS Feed for Blog and YouTube</title>
        <description>A combined RSS feed ordered by newest blog and youtube items.</description>
        <link>{$jamroom_url}/feed/junk</link>
        <lastBuildDate>{$smarty.now|jrCore_date_format:"%a, %d %b %Y %T %Z"}</lastBuildDate>
        {foreach $_items as $item}
        {if $item.seamless_module_name == 'jrYouTube'}
            <item>
                <title>{$item.youtube_title|jrCore_entity_string}</title>
                <link>{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.youtube_title_url}</link>
                <description>Category: {$item.youtube_category|jrCore_entity_string}</description>
                <pubDate>{$item._created|jrCore_date_format:"%a, %d %b %Y %T %Z"}</pubDate>
            </item>
        {else}
            <item>
                <title>{$item.blog_title}</title>
                <link>{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.blog_title_url}</link>
                <description>BLOG: {$item.youtube_category|jrCore_entity_string}</description>
                <pubDate>{$item.blog_publish_date|date:'D, d M Y H:i:s O'}</pubDate>
            </item>

        {/if}
        {/foreach}
    </channel>
</rss>
    {/literal}
{/capture}
{jrSeamless_list modules="jrBlog,jrYouTube" order_by="_created desc" limit="300" template=$rss_template}

Then call it from the url of the templates name. so if you call the template 'custom_rss.tpl' it will come out at:
site.com/custom_rss

Adjust the contents for what you want:

"{debug}"
http://www.jamroom.net/the-jamroom-network/documentation/development/1477/debug

"Seamless"
https://www.jamroom.net/the-jamroom-network/documentation/modules/289/seamless

And you can have any combo of RSS feed you like. :)

Originally thought that the headers need to be set, but see that is not necessary.
michael
@michael
11/24/15 11:56:33PM
7,832 posts

Unify several rss modules


Design and Skin Customization

Your after a seamless list in XML format that currently doesn't exist.

I'll take a look at what it would take.
michael
@michael
11/24/15 09:27:37PM
7,832 posts

Still Unable to upgrade


Using Jamroom

I've uploaded the tweaks I made to the Admin Skin module to your democo site. Please take a look at it and see if you can spot anywhere where:

(is this a profile page?) = Show the 'profile' skin.
(is this an ACP page?) = Show the 'admin' skin.
(otherwise) = Show the 'active' skin.

is not happening.
michael
@michael
11/23/15 07:04:01PM
7,832 posts

Adding Members To Groups Administratively?


Using Jamroom

:) its not lost, bring em up. hate for your ideas/suggestions/issues to get forgotten about.
michael
@michael
11/23/15 06:50:14PM
7,832 posts

old sitebuilder construction kit missing


Using Jamroom

Perhaps a good time to give the new version of Site Builder a go? Not sure what the issue could be. You mean the tab does not show up on the interface for profiles that are allowed to use it?
michael
@michael
11/23/15 06:47:46PM
7,832 posts

Adding Members To Groups Administratively?


Using Jamroom

Strumelia:...send out a message/notification to all members of a particular group? ...
You're after an extension to the newsletter module I think. (or something similar).

We're in a not-so-stable period right now, with 5.3 coming out. It will likely go that that needs to be out and stable before we get back to building new features/modules.

Its a good idea, just need a bit of time to get to it.
michael
@michael
11/23/15 04:23:35PM
7,832 posts

Still Unable to upgrade


Using Jamroom

The way it should work is:
(is this a profile page?) = Show the 'profile' skin.
(is this an ACP page?) = Show the 'admin' skin.
(otherwise) = Show the 'active' skin.

I'll check it out.
michael
@michael
11/23/15 04:10:45PM
7,832 posts

Can't update module


Using Jamroom

I used to see that occasionally, try again later, or if that doesn't work, delete the module from the INFO tab and re-install it, all the data will still be there.
  461