Forum Activity for @michael

michael
@michael
08/30/16 04:17:14AM
7,832 posts

Adding Tags Using Form Designer


Design and Skin Customization

Take a look in your datastore for the name of the field that is stored, then add that stored field's key to the "Additional Search Fields"

Try it with the default item_list.tpl file so you know if results are being returned or not, then move on to using a custom one.

One other thing to try is rebuilding the search index.
ACP -> MODULES -> LISTING -> SEARCH -> TOOLS -> REBUILD INDEX
michael
@michael
08/29/16 06:44:03PM
7,832 posts

Premium skins


Design and Skin Customization

Might be better to start its own ticket, perhaps "Setting up the Mogul skin, images not appearing." as a title.
michael
@michael
08/29/16 06:41:46PM
7,832 posts

Adding Tags Using Form Designer


Design and Skin Customization

You can add the Form Designer created field name to the Additional Search Fields and they will become searchable.

Docs: "Search : Global Config"
https://www.jamroom.net/the-jamroom-network/documentation/modules/950/search#tab-global-config
michael
@michael
08/27/16 11:51:36PM
7,832 posts

Changing the skin on TinyMCE


Using Jamroom

Might be able to add it to a custom plugin instead, (haven't done it so you'd need to try). If that worked, it would mean it would be stable over upgrades.

Docs: "Howto add a tinymce plugin to the system"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/4207/howto-add-a-tinymce-plugin-to-the-system
michael
@michael
08/27/16 11:47:32PM
7,832 posts

Changing the skin on TinyMCE


Using Jamroom

You're getting your skin from here:
http://skin.tinymce.com/

Give it a name other that 'custom', I called mine "soreeyes".
* download that skin to your pc, unzip it.
* upload it to your jamroom site at:
/modules/jrCore/contrib/tinymce/skins/soreyes

--
open the form_editor.tpl file in either the ACP editor or the file, or the file over-ride and it will look like this:
{jrCore_module_url module="jrCore" assign="murl"}
{jrCore_module_url module="jrImage" assign="imurl"}
tinymce.init({
    setup: function(ed) {
        var mce_body_fs = $('body').width();
        ed.on('FullscreenStateChanged', function(e) {
            if (e.state === true) { $('.form_editor_holder .mce-fullscreen').width(mce_body_fs); }
            else {
                $('.form_editor_holder .mce-panel').css('width','');
            }
        });
    },
    body_id: "{$form_editor_id}",
.........
Add the skin's name to that

{jrCore_module_url module="jrCore" assign="murl"}
{jrCore_module_url module="jrImage" assign="imurl"}
tinymce.init({
    setup: function(ed) {
        var mce_body_fs = $('body').width();
        ed.on('FullscreenStateChanged', function(e) {
            if (e.state === true) { $('.form_editor_holder .mce-fullscreen').width(mce_body_fs); }
            else {
                $('.form_editor_holder .mce-panel').css('width','');
            }
        });
    },
    body_id: "{$form_editor_id}",
    skin: "soreeyes",
.........
michael
@michael
08/27/16 11:23:47PM
7,832 posts

Advanced analytics


Jamroom Developers

We haven't built a module to replicate google analytics, so can't comment on how it would work. Also haven't built a module to bring Google analytics interface into jamroom. You'd have to do something custom.

As to how that custom module would perform, it would depend on how its written. Use caching to lighten the reports load.
michael
@michael
08/27/16 02:36:03AM
7,832 posts

Adding Iframe capability to blog and forum editor form


Design and Skin Customization

and there is the "iFrame Control" module that allows specific URLs to be added via iframes.

https://www.jamroom.net/the-jamroom-network/networkmarket/ss=iframe
michael
@michael
08/27/16 02:34:34AM
7,832 posts

Advanced analytics


Jamroom Developers

Sounds similar to this post:
https://www.jamroom.net/the-jamroom-network/forum/design-and-skin-customization/37458/meta-tag-manager-is-awesome

allowing your users to enter their google ids into their profiles.
michael
@michael
08/27/16 02:31:27AM
7,832 posts

User Sign Up Form


Installation and Configuration

The signup forms are not ajaxified, they are not fully reloaded after a user selects an option.

The options will be available to that user in their profile update page after they have signed up.

They would probably also be there if that is the only signup quota. Or if the quota was selected when the page was created.

They are not there by default.
michael
@michael
08/27/16 02:21:06AM
7,832 posts

Admin logged out immediately after logging in


Using Jamroom

If you're still on JR4 then the likely cause is that your server has updated php or mysql to current versions.

JR4 will only work on jamroom up to php 5.2 so you'll probably need a special server that meets those requirements to keep the site running. Most hosting companies will upgrade their servers to current versions of stuff.
  363