Forum Activity for @paul

paul
@paul
02/13/18 08:02:07AM
4,335 posts

Soundcloud not accepting API applications


Installation and Configuration

True - They've been like that for a few months now. I believe they were making huge loses as a company and put this in place whilst awaiting investment and/or restructuring. Not sure what their current status is.
paul
@paul
02/13/18 07:22:43AM
4,335 posts

Disable profile header for forum


Design and Skin Customization

What skin are you using? It could be that its not setup to check for the sidebar being disabled, or maybe it doesn't have a sidebar template at all?
paul
@paul
02/13/18 06:34:13AM
4,335 posts

Disable profile header for forum


Design and Skin Customization

The Ninja skin specifically disables the sidebar for forum by replacing the jrForum item_detail.tpl, item_categories.tpl and item_index.tpl templates, so try this at the top of those templates -
{if $profile_quota_id == 1 || $profile_quota_id == 16}
    {jrProfile_disable_header}
    {jrProfile_disable_sidebar}
{/if}
hth
updated by @paul: 02/13/18 06:34:35AM
paul
@paul
02/13/18 12:39:46AM
4,335 posts

Make something show up only on an item for specific quota


Jamroom Developers

Not really sure what you are trying to do from your description, guessing that you only want items showing that were created by users in the same quota as the viewing user? If so -
{foreach from=$_items item="item"}
    {if $item.profile_quota_id == $_user.profile_quota_id}
        // Show the item
    {/if}
{/foreach}
As Steve says above, temporarily putting a debug at the top of any template will create a popup showing all variables and arrays available to that template. Its a really useful tool when editing templates.
hth
paul
@paul
02/13/18 12:25:31AM
4,335 posts

Different div classes


Jamroom Developers

As Michael says, classes are defined in the various *.css files used by modules and skins. You can view and edit them via the module and skin 'sytle' tabs.
CSS is a website development technique, similar to HTML and Javascript and is outside the scope of Jamroom to document as they are basic tools that are best understood before customising JR templates etc. There will be 1000s of websites teaching CSS out there - remember, Google is your friend ;-)
paul
@paul
02/12/18 11:12:05AM
4,335 posts

Subscriptions Module Question


Using Jamroom

The Subscribe module works with the Payment module and not FoxyCart. These new modules are designed to replace the FoxyCart module and will allow you to collect payments using Stripe or PayPal without the monthly FoxyCart costs. It also does support FoxyCart if you need the flexibility that they provide.
Hope that helps
paul
@paul
02/12/18 06:01:26AM
4,335 posts

Profile clone module


Suggestions

The latest Exporter module now in the (beta) marketplace has a new field in the Jamroom Plugin Config section that allows a comma seperated list of profile IDs. If set, only those profiles and their contents will be exported to the json files.
hth
paul
@paul
02/12/18 05:58:59AM
4,335 posts

Profile Sync Migration


Suggestions

This feature has been added to the latest Exporter module now in the (beta) marketplace.
paul
@paul
02/09/18 11:14:13AM
4,335 posts

Very slow website


Installation and Configuration

That's a very vague statement from your hosting provider and as such its not possible to say what the issue might be.
Get them to give more details, and check that your server meets these Jamroom requirements - https://www.jamroom.net/the-jamroom-network/documentation/getting-started/774/server-requirements
paul
@paul
02/08/18 11:57:44AM
4,335 posts

Turn soundcloud search off?


Design and Skin Customization

Unfortunately that search text and button are hard coded in the SoundCloud module's create function and is not controlled by a template and cannot be disabled without modifying the module's index.php file, which is not recommended.
Sorry
  116