Forum Activity for @douglas

douglas
@douglas
02/17/16 08:29:04AM
2,812 posts

Like / Dislike on Timeline


Design and Skin Customization

Try this:

{if isset $_items}
{jrCore_module_url module="jrLike" assign="murl"}
{foreach $_items as $item}
{/foreach}{debug}
{/if}

updated by @douglas: 02/17/16 08:29:21AM
douglas
@douglas
02/16/16 10:46:44AM
2,812 posts

Need CSS Help


Using Jamroom

I've got this fixed for you.

Let me know if you see any issues.
douglas
@douglas
02/15/16 08:51:36AM
2,812 posts

Need CSS Help


Using Jamroom

This should be a real easy fix, as Michael said, if changing the CSS file isn't working, then there is a setting for that class in the database.

If you'll send you URL, admin login and FTP info, I'll look into it for you. It shouldn't take too long to do.
douglas
@douglas
02/12/16 09:02:27AM
2,812 posts

Jamroom 5.3 is now out of beta!


Announcements

Do you have a dev site setup?

If you are really worried about it, you could setup a dev site, exact replica of your live site, then update that to 5.3 to see if you run into any issues.

If you are using a cloned/custom skin, and any modifications made to module templates/CSS were done via the ACP, you should be okay.

If you are not using a cloned skin, just don't update any skins. I don't think there are any updates to skins except the jrElastic skin anyway.

Hope this helps!
douglas
@douglas
02/09/16 10:08:26AM
2,812 posts

Follow annd Rating functions


Genosis

Yes, I have both the Follow and Rating modules installed on my test Genosis site as well but the code isn't in the templates so neither show.

The "Follow" code should go in the profile_header.tpl for your Genosis skin, if you want the ability to rate blogs, the "Rating" code would go in your Genosis skins jrBlog_item_detail.tpl, since it is a custom module template for that skin. If you want to rate the profile, you could put it in the profile_header.tpl as well.

Hope this helps!
douglas
@douglas
02/09/16 05:15:49AM
2,812 posts

Follow annd Rating functions


Genosis

I don't believe that the Genosis skin is setup to use the Follow and Rating modules. I can see that the code is not in the skins custom module templates and profile templates.

I'm not 100% sure it will work but you would have to add in the code if you want to use the Follow and Rating modules with the Genosis skin.

Follow code for the profile_header.tpl taken from the jrElastic skin:
{jrCore_module_function function="jrFollower_button" profile_id=$_profile_id title="Follow This Profile"}

Blog ratings code taken from the modules/jrBlog/templates/item_detail.tpl

<span style="display:inline-block;margin-top:6px;">{jrCore_module_function function="jrRating_form" type="star" module="jrBlog" index="1" item_id=$item._item_id current=$item.blog_rating_1_average_count|default:0 votes=$item.blog_rating_1_count|default:0}</span>

If you want to rate the profile, instead of blogs, change the module parameter to jrProfile and the item_id parameter to $_profile_id

Hope this helps!
douglas
@douglas
02/08/16 03:48:17AM
2,812 posts

how do I get notified of new user accounts in order to approve them...


Using Jamroom

In your ACP > Users > Users > Quota Config, set the signup method to admin validation for the quotas your allowing signups on.

The admin will receive an email about new signups and you can approve or disapprove new accounts in your ACP > Dashboard > Pending section.
douglas
@douglas
02/05/16 05:24:11AM
2,812 posts

Designing a profile form for profiles in Quota X, and a different form for profiles in Quota Y


Using Jamroom

Quote:
What and where is the "User account" form you mention?

yoursite.com/user/signup
douglas
@douglas
02/04/16 01:36:43PM
2,812 posts

Share this issue with facebook


Using Jamroom

perrie:
OK, so I did the thing with hiding my image page. I checked facebook and it looks like it took.
I am getting a strange message from them (and the image they show on their test page isn't what is showing, but that is good).
What does this mean?

Your missing the // in your URL "http:thenewstalkers.com" looks like what you have entered and it should be http://thenewstalkers.com.
douglas
@douglas
02/02/16 09:53:51AM
2,812 posts

Designing a profile form for profiles in Quota X, and a different form for profiles in Quota Y


Using Jamroom

Adding form fields with the form designer does just that, it adds new fields to the form your modifying. You then need to add the variable for that new form field in you profile templates where you want it to show.

For example:

Create a new form field in the modify profile form designer, the beginning of the form field name will start with profile_, so if you name the new field profile_website, then the variable you want to add to your profile templates would be {$profile_website}. You can also check to see if the field has been filled out by the profile by using an if statement in your template, ie.

{if isset($profile_website) && strlen($profile_website) > 0}
    {* Show the profiles website field since it has been filled in by the profiles user *}
    {$profile_website}
{/if}

The display to quota means that the new field will only show to users that have a profile in the quota(s) you select.

Hope this helps!
  115