Forum Activity for @blindmime

blindmime
@blindmime
10/08/20 06:22:01AM
776 posts

jrCore_list in a blog or page


Using Jamroom

Is it possible to include a jrCore_list in the editor of a blog or page?
updated by @blindmime: 01/06/21 09:07:47PM
blindmime
@blindmime
10/02/20 05:42:01AM
776 posts

jrPage images


Design and Skin Customization

Paul, I was just working on another image and noticed while I upload a png, the code displayed in the control panel to show how to code it indicates jpg. Also, the image I upload into the jrPage images tab didn't upload there. It shows in the list and gives a code, but it's not in the directory. (It is now, because I FTP'd it there.
updated by @blindmime: 10/02/20 05:51:57AM
blindmime
@blindmime
09/29/20 07:10:13AM
776 posts

jrPage images


Design and Skin Customization

Of course. Thanks, Paul.
blindmime
@blindmime
09/28/20 01:03:07PM
776 posts

jrPage images


Design and Skin Customization

Yeah, I've tried all those those things.

Example page: http://tapegerm.com/blindmime/page/42/g-day
blindmime
@blindmime
09/28/20 05:52:04AM
776 posts

jrPage images


Design and Skin Customization

I'm getting this
<img src="http://tapegerm.com/image/img/module/jrPage/download_sources.png?skin=jrElastic2" alt="DOWNLOAD SOURCES" title="DOWNLOAD SOURCES" class="iloutline iindex" width="" height="" style="float:right;margin: 0px 10px">

Via this

{jrCore_image module="jrPage" image="download_sources.png" alt="DOWNLOAD SOURCES" title="DOWNLOAD SOURCES" class="iloutline iindex" width=false height=false style="float:right;margin: 0px 10px"}

But it's not displaying the image which I have uploaded to the jrPage module images by way of the ACP. I uploaded the image to the skin and the jrCore as well.
updated by @blindmime: 01/01/21 01:47:26AM
blindmime
@blindmime
09/03/20 05:16:32AM
776 posts

jrPage Items Showing/Not Showing


Using Jamroom

I'm having some issues with jrPage. I've created 30 pages. {jrCore_list module="jrPage" order_by="_created desc" pagebreak=15 page=$_post.p pager=true} lists all the pages correctly.

1) In the module tools, http://tapegerm.com/page/browse doesn't show any projects.

2) Pages don't appear on a profile list if that option is selected. Clicking on the Page tab shows no pages.

3) Example page with "visible on profile" selected shows this link: http://tapegerm.com/page/30/chris-phinney-august-2003. Going there shows the page without any edit buttons when I'm logged in.

4) http://tapegerm.com/mental/page/30/ shows the page on the profile with buttons as I would expect but this isn't the url anywhere in list links.

5) http://tapegerm.com/mental/page doesn't list any pages.

6) The pages breadcrumb link also doesn't show any pages
updated by @blindmime: 12/09/20 08:59:32PM
blindmime
@blindmime
07/26/19 03:37:27PM
776 posts

Aparna or something similar might help


Jamroom Developers

I'm happy to see another Aparna fan around here. Welcome back, Matthias.
blindmime
@blindmime
07/21/19 06:41:05AM
776 posts

jrFollower change?


Using Jamroom

I think there has possibly been a change in jrFollower or maybe jrUser that has broken something on my site. I wonder if you know what it is and can steer me toward a fix.

On the site index page, I have been listing the profiles a user is following with the following jrCore_list function:
{jrCore_list module="jrFollower" search1="_user_id = `$_user._user_id`" order_by="_created desc" limit=10000 template="index_list_following.tpl"}

index_list_following.tpl:
{jrCore_module_url module="jrFollower" assign="murl"}
{if isset($_items)}
{foreach $_items as $item}
{if $item._user_id == $_user._user_id}
<div class="col3">
 {jrCore_list module="jrProfile" profile_id=$item.follow_profile_id template="index_list_following_profile.tpl"}     
 </div>
{/if}
{/foreach}
{/if}

index_list_following_profile.tpl:
{if isset($_items)}
{foreach $_items as $item}

         <div class="p5 center" style="position:relative">
            <a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="large" crop="auto" class="img_scale" width=false height=false alt="{$txt|jrCore_entity_string}" title="{$txt|jrCore_entity_string}"}</a><br><a href="{$jamroom_url}/{$item.profile_url}">@{$item.profile_url}</a><br>
        </div>
    
{/foreach}
{/if}

updated by @blindmime: 10/25/19 11:27:03AM
blindmime
@blindmime
07/19/19 05:15:21AM
776 posts

Button to change account values


Using Jamroom

I have a couple user form fields, state and county. I display different things on the site based on these values. Users can change the values by changing them in their user account settings, however, I would like to have buttons on index and profile pages which users can click to instantly update the values.

How?
updated by @blindmime: 10/17/19 09:59:25PM
blindmime
@blindmime
04/11/19 03:22:29AM
776 posts

Newsletter to inactive users


Using Jamroom

Thanks, Strumelia. It's helpful to see how others approach similar situations. Most of the users I'm wanting to isolate and limit activity appear to be bots or spam users. But not always. I don't want to stop them from logging in; just all other activity. I want to periodically send out a newsletter that explains their limbo status and tells them they need to do a list of things in order to reenable access. Those that don't respond will be purged.
  2