Forum Activity for @michael

michael
@michael
09/01/19 11:11:18PM
7,828 posts

user group


Using Jamroom

Try on a standard skin. It's all working here for me.
michael
@michael
08/30/19 12:03:53AM
7,828 posts

form designer cache


Design and Skin Customization

You'll need to outline steps to recreate the issue for this one. There are so many moving parts in this area that its difficult to understand what you're trying to do, what you're expecting to happen and what is actually happening.

--edit--
Are you using the beta or the stable marketplace channel?
updated by @michael: 08/30/19 12:06:25AM
michael
@michael
08/27/19 12:46:24AM
7,828 posts

Updating the Documentation Module


Using Jamroom

Depends on how you've done the customized templates.

If you've cloned a skin or created a new one, then uploaded files that start with the name of the module:
/skins/xxYourSkin/jrDoc_category_index.tpl

Then they are safe, you'll just have the old version of the template file that you'll then need to check to see if there are any changes you want to bring in to your skin override template.

If you're over-riding by using the Template editor on the TEMPLATES tab of the Docs module in the ACP then those overrides will still be there after the update and you can use the COMPARE button to see what the difference is.
michael
@michael
08/25/19 07:02:11PM
7,828 posts

RSS Template Variables


Design and Skin Customization

Try:
$_items[0]._profile_id
michael
@michael
08/24/19 02:20:37AM
7,828 posts

RSS Template Variables


Design and Skin Customization

try:
{$item.0._profile_id}
michael
@michael
08/23/19 08:13:33PM
7,828 posts

RSS Template Variables


Design and Skin Customization

Things are getting to cryptic for me, im not understanding. What do you want to get into the rss.tpl file?

You want to get the profile info out.

Could you post your ideal RSS structure here along with the current structure and what info you need. Cheers.

--edit--
and whats the URL (or example of) that you're accessing the rss on. is it the main site feed or a profile.
updated by @michael: 08/23/19 08:16:57PM
michael
@michael
08/23/19 05:13:17PM
7,828 posts

RSS Template Variables


Design and Skin Customization

What variables you have available in a template can be discovered with {debug}

Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1477/debug
michael
@michael
08/23/19 05:11:35PM
7,828 posts

one thing i DO NOT like about the new editor


Suggestions

Fix will be in JR6.4.0 which is getting released soon.
michael
@michael
08/22/19 10:15:31PM
7,828 posts

RSS Template Variables


Design and Skin Customization

You use a foreach loop to loop over the elements in an array, so if you have an array like this:
$the_array = array('cat', 'dog', 'ant eater');
then a foreach loop over it would go
{foreach $_the_array as $animal}
The animal is a {$animal}
{/foreach}

But if your array looks like this
$the_array = array('tom' => 'cat', 'bill' => 'dog', 'simon' => 'ant eater');
Then the foreach loop would look like this

{foreach $_the_array as $owner => $pet}
The pet of {$owner} is a {$pet}
{/foreach}

So it depends on what your array looks like as to how you access it outside a loop.

For the second array you can go
the pet of Simon is a {$the_array['simon']}
or
the pet of Simon is a {$the_array.simon}

to get Simons pet.
updated by @michael: 08/22/19 10:16:57PM
michael
@michael
08/22/19 10:04:48PM
7,828 posts

one thing i DO NOT like about the new editor


Suggestions

The fix is going to be adding:
contextmenu: false,
into
jrCore/form_editor.tpl
jrSiteBuilder/form_editor.tpl

The cause of the issue is the 'link' plugin:
https://www.tiny.cloud/docs/plugins/link/

and the 'contextmenu'
https://www.tiny.cloud/docs/ui-components/contextmenu

Quote: ....By default it does not disable the operating system’s native context menu, if there are no items to display at the cursor position the native context menu will be shown....
Since you can always link anything 'link' is turning up all the time. Even when what you want is really spellcheck.

Thanks for reporting this.
  81