Forum Activity for @paul

paul
@paul
09/16/18 12:31:05PM
4,335 posts

Subscription Profile Access


Using Jamroom

All it would be is three lines of code in the skin profile_header template.
Let me know when and I’ll tell you how to do it :-)
paul
@paul
09/16/18 09:37:38AM
4,335 posts

Subscription Profile Access


Using Jamroom

If you have a mix of features you want users to be able to subscribe to, then you'll need to have multiple subscription quotas -

Subscription Quota 1 - Users can upload audio
Subscription Quota 2 - Users can upload video
Subscription Quota 3 - Users can upload audio and video
etc.

You can then set appropriate subscription prices for each quota.

Quote: Seems there is no direct way to sell access to a specific profile?
This sentence is telling. Are you really wanting to give subscribed users access to specific profiles? If so, that can be done with simple template modifications.
paul
@paul
09/16/18 04:37:42AM
4,335 posts

Following Error


Using Jamroom

Am seeing this happen now. Its a bug in the Follower module. It isn't clearing caches after an unfollow.
It'll be fixed in the next release of the module.
Thanks for bringing it to our attention.
paul
@paul
09/16/18 03:54:35AM
4,335 posts

Custom Module Standard User


Jamroom Developers

The $entry.active parameter test is just to change the colour of the tab, to show that you are viewing the tab's page.
You can do something similar by testing the $_post array parameters to see if you are on your custom module's page -
{if isset($_items)}
{foreach $_items as $module => $entry}
    {if $entry.active == '1'}
    <a href="{$entry.target}" class="t{$module}"><div class="profile_menu_entry profile_menu_entry_active">{$entry.label}</div></a>
    {else}
    <a href="{$entry.target}" class="t{$module}"><div class="profile_menu_entry">{$entry.label}</div></a>
    {/if}
{/foreach}
{/if}

{if $_post.module == 'myCustomModule'}
    <a href="LINK TO MY MODULE PAGE"><div class="profile_menu_entry profile_menu_entry_active">MY MODULE TAB TEXT</div></a>
{else}
    <a href="LINK TO MY MODULE PAGE"><div class="profile_menu_entry">MY MODULE TAB TEXT</div></a>
{/if}

hth
paul
@paul
09/15/18 10:01:00AM
4,335 posts

Following Error


Using Jamroom

Not seeing any issues here.
What skin are you using?
It might just be a browser caching thing?
paul
@paul
09/15/18 09:59:04AM
4,335 posts

Custom Module Standard User


Jamroom Developers

Yes - That's the example code.

Quote: Is there any way to have "read only" (no stored data) custom profile module tabs, show for all "Standard Users"
Yes - Take a look at you skin's profile_menu.tpl template and add them there, after the {foreach} loop. say.
paul
@paul
09/15/18 09:55:14AM
4,335 posts

Restore Member Accounts


Ning To Jamroom

If they have gone into the Recycle Bin, then yes.
Go to your site Dashboard and click on the Recycle Bin tab. If they are there, they can be restored.
hth
paul
@paul
09/15/18 05:54:31AM
4,335 posts

Custom Module Standard User


Jamroom Developers

In that case, maybe show the link as a (dropdown) User Menu item?
You can just create one using ACP=>Core=>System Core=>Tools=>User Menu Editor or you could add it to the module's init function in the include.php file. Checkout one of the modules that does this (eg. jrFollower include.php line 65ish) to see how its done.
hth
paul
@paul
09/13/18 03:02:56AM
4,335 posts

I don't care about cookies (stop having to 'agree' on every site you visit)


Off Topic

I do believe that this EU law was recinded (or at least advice given that it was no longer necessary) as they realised it wasn't practical and annoying to users. I have also read that they are planning on replacing it with something even more unworkable lol
paul
@paul
09/12/18 10:51:13AM
4,335 posts

Certain signup questions not showing in profile sidebar


Using Jamroom

Its a long time since I developed the Ning import module and the way it handled the signup questions so can't remember too much about how it all worked.
Best thing would be for you to ticket me with the site in question along with the admin login and I'll take a look. Hopefully it'll all come back to me then :-)
Thanks
  87