Forum Activity for @xephius

Xephius
@xephius
03/17/17 01:36:37PM
93 posts

Template customization -> jrGallery -> can't find (datastore key)'s to make correct call


Design and Skin Customization

Hey all, I am modifying a template. It is designed to show the profile image of a user, but I don't want that. Instead, I would like it to make it display the latest image uploaded to a users Galleries. I have read the docs, but am clearly missing something. ;)

Here is the original code
{if isset($_items)}
    {foreach from=$_items item="item"}
        <div class="col3">
           <div class="wrap">
               <a href="{$jamroom_url}/{$item.profile_url}">
                   {jrCore_module_function
                   function="jrImage_display"
                   module="jrProfile"
                   type="profile_image"
                   item_id=$item._profile_id
                   size="xlarge"
                   crop="auto"
                   class="img_scale"
                   alt=$item.profile_name
                   title=$item.profile_name
                   }
               </a>
           </div>
        </div>
    {/foreach}
{else}
    {jrCore_include template="no_items.tpl"}
{/if}

And here is my modified code. I attempted to remove the tags that link back to the users account and displays the name. I also tried to change the source it was pulling the images from, but I now I get an error saying I don't have the proper "type" defined. I looked up the docs and found:

(jamroom url)/(module url)/image/(datastore key)/(item_id)/(size)

But that didn't give me a list of what key's those could be, or where to find where that working list maybe on my site. Again, sorry I am not understanding. My code:

{if isset($_items)}
    {foreach from=$_items item="item"}
        <div class="col3">
           <div class="wrap">
                   {jrCore_module_function
                   function="jrImage_display"
                   module="jrGallery"
                   item_id=$item._item_id
                   size="xlarge"
                   crop="auto"
                   class="img_scale"
                   }
           </div>
        </div>
    {/foreach}
{else}
    {jrCore_include template="no_items.tpl"}
{/if}

updated by @xephius: 06/19/17 09:18:00AM
Xephius
@xephius
03/15/17 12:01:35PM
93 posts

Cancel Subscription Options


Installation and Configuration

That is potentially true from the PayPal Users perspective, but I don't have the ability to cancel a Users PayPal subscription from my dashboard.

But to expand on that, if your using a Credit Card processor, (WorldPay or any regular Credit Card Gateway) then there is no further account information linked. I don't think that telling a customer to call their Credit Card company to cancel the subscription makes for a good customer experience.

Is it not possible for a Subscriber to cancel from 'Our' Foxycart/Jamroom Dashboard?
updated by @xephius: 03/15/17 12:02:08PM
Xephius
@xephius
03/15/17 11:18:38AM
93 posts

Cancel Subscription Options


Installation and Configuration

Hey guys,

I have a couple of subscription accounts setup and working, and we just successfully tested our payment gateway using FoxyCart. The problem came when I tried to Cancel the subscription. The default Foxycart Subscription Template has a "Start Subscription" button that turns into a "Purchase History" button, and this appears true for both the User and when I view it as an Admin. I can see the next scheduled deduction, but no way to cancel it. Similarly, when I log into FoxyCart directly, they don't have a way to cancel the subscriptions, only view them.

The only way I have been able to find to cancel the subscription is via the link included in the Foxycart automated response. (Not the Jamroom Foxycart Module response)

This appears to make it very difficult for me and a user to manage Subscriptions to the site.

The FoxyCart docs seem to indicate that a call to the sub_token with a the appropriate cancel string would generate a new page to cancel a users subscription. Is this something that could be added to the FoxyCart Subscription Template page to allow users to Cancel directly from that page?

https://wiki.foxycart.com/v/2.0/products/subscriptions

Sorry if I am asking things awkwardly, I am trying to articulate this the best I can. :)

updated by @xephius: 06/17/17 09:41:51AM
Xephius
@xephius
03/15/17 10:42:31AM
93 posts

FoxyCart / Subscription Welcome Email


Installation and Configuration

Hey all,

I found some templates in the FoxyCart Module that seem to indicate we can send a "Welcome" email (among others) to new subscribers. I watched the videos on the documentation page and reviewed this:
https://www.jamroom.net/the-jamroom-network/documentation/modules/67/foxycart-ecommerce-selling-a-subscription

I can't find anything that tells me how to configure them or how to enable sending 'Welcome' or new sales emails. Could you point me in the right direction?

Clear skies,
John
updated by @xephius: 06/20/17 02:00:57AM
Xephius
@xephius
03/12/17 08:23:01AM
93 posts

How do I restrict/sort Calendar Events from different profile Calendar?


Installation and Configuration

Ah, thanks for the docs link. They are not working under the 'help' Tab in the Module dashboard. It says something about needing a correct email. Image attached....

After looking over the docs, I did some digging and found some other templates that looked more like what I wanted. Also, I couldn't get the correct events to pull up until I modified the first search perimeter to be profile_id instead of profile_qouta_id. Here is what I currently have working... I think its correct, but I would appreciate your feedback. :)

{jrEvent_calendar search="profile_id = 1"  template="widget_calendar_small.tpl" tpl_dir="jrEvent"}

Screen Shot 2017-03-11 at 8.13.20 PM.png Screen Shot 2017-03-11 at 8.13.20 PM.png - 148KB
Xephius
@xephius
03/11/17 05:07:39PM
93 posts

How do I restrict/sort Calendar Events from different profile Calendar?


Installation and Configuration

Found it!

Now I understand. I created a new Template Code Widget, but got an unexpected result. How would I ask it to display a 'small' calendar like the 'Calendar Widget' creates? Attached is a screen grab of the results using the code above.

Clear skies,
John
Screen Shot 2017-03-11 at 6.55.13 PM.png Screen Shot 2017-03-11 at 6.55.13 PM.png - 114KB
Xephius
@xephius
03/11/17 04:12:06PM
93 posts

How do I restrict/sort Calendar Events from different profile Calendar?


Installation and Configuration

Thanks Michael,

I believe I understand how to use the function call you outlined above if I were to use the 'Item List' Widget, but when I select the 'Event Calendar' Widget, I don't see any fields to add the code (Only Widget Title and Calendar Size). Am I looking in the wrong place?

Clear skies,
John
updated by @xephius: 03/11/17 04:13:03PM
Xephius
@xephius
03/11/17 03:43:27PM
93 posts

How do I restrict/sort Calendar Events from different profile Calendar?


Installation and Configuration

I have created two profiles, each in a unique Quota, and each has an Event Calendar. When I create a Calendar Widget, I don't have any way to sort what events are viewable to the user. Currently all events from all Event Calendars are displayed in a Event Calendar Widget. How can I control what events are displayed in the Event Calendar Widget?

Example-
Profile-A/Quota-A/Calendar-A
Profile-B/Quota-B/Calendar-B

Desired Calendar Variations
Users in X Quota can see A & B Events
Users in Y Quota can see only A Events
Users in Z Quota can see only B Events
updated by @xephius: 06/16/17 08:47:42AM
Xephius
@xephius
02/26/17 06:31:01AM
93 posts

YouTube Link creates large data block when link is posted in chat, how can I change or restrict that?


Installation and Configuration

Hey all,

How can I control how much of the thumbnail, title, and graphic are imported when a URL/Link is dropped in chat on the website? I believe it does this in other areas as well. I would like to be able to:

1) Reduce the amount of description that is imported to just the first few lines with a more button or something. Right now it is a wall of text.

2) Restrict what are allowed URLS. We would like to only allow links from our YouTube channel to be shared on the site and Chat. Is there a way to configure that?

4) I read the documentation for YouTube, Banned Items, and Media URL Scanner and still feel like I am missing something. Is there another module that already does this?

Thanks.
-John
updated by @xephius: 05/30/17 05:16:39AM
  3