Forum Activity for @strumelia

Strumelia
@strumelia
11/24/20 04:20:21PM
3,603 posts

phone version of tinymce text editor is limited?


Using Jamroom

So is it not anything easily do-able to enable my members to embed images or apply font colors or my site smilies etc into their forum posts then? All Forum and Group discussion posts will always get only the plain vanilla minimal text input on phones?
Strumelia
@strumelia
11/22/20 12:18:46PM
3,603 posts

phone version of tinymce text editor is limited?


Using Jamroom

Yes when I'm on my iphone and i go to create a Blog, i see the grey box/book options.
However, I don't allow my members to create or use blogs.
I can understand why a simple input would be fine on mobile for comments on videos, audio clips, and photos. But members wanted to be able to embed images, indent, Undo, use smilies, etc... into Forum posts and also Group discussion posts.

Are you saying that all Forum posts and Group discussion posts are actually just 'comments' and as such will not give any of those editing options on phones as they all do on laptops and desktops?
If so, I'm assuming this would not be a simple thing to change and enable... correct?
Strumelia
@strumelia
11/22/20 11:22:04AM
3,603 posts

phone version of tinymce text editor is limited?


Using Jamroom

None of us are seeing that grey box and book, Brian. See attached jpg that shows an example of what we are seeing on both iphones and androids. That jpg is from a member (not me, but I see pretty much the same on my iphone). We get no view of a book icon or grey box before we go to type anything, either.
My custom skin is a 'child' of Ninja, if that helps. Also, I have customized a few minor items in my text editor from time to time, btw.
phone.jpg phone.jpg - 231KB
Strumelia
@strumelia
11/22/20 10:41:22AM
3,603 posts

phone version of tinymce text editor is limited?


Using Jamroom

I feel dumb that i only just noticed this, but I'm usually attending to my sites while on my laptop, not my phone-
Is it normal for the tinymce text editor window to not show any of the icons/buttons along the top when creating a post? I mean there are no icons for adjusting font size, color, bold, smileys, code view, or embedding images, etc.
On my iphone and on my members' android phones, we only get a plain text input box (with no icons/buttons along the top), and two boxes on the bottom- for publish post and for attaching a file.
Is this normal or am I missing something? Thanks
updated by @strumelia: 03/22/21 01:43:48AM
Strumelia
@strumelia
10/02/20 07:23:39AM
3,603 posts

My skin's Pending Followers menu link count stopped working


Using Jamroom

That seems to have worked.
Thank you again Paul. :)
Strumelia
@strumelia
10/01/20 05:03:31PM
3,603 posts

My skin's Pending Followers menu link count stopped working


Using Jamroom

Oops, slight snag here...
Not sure why on my pennywhistle site, with the new code applied, my Strumelia account menu count shows "0", but clearly I do have 1 pending follower:
https://pennywhistleclub.com/strumelia/follow
(i did integ check and cleared cache several times, refreshed browser, also checked on both Chrome and FF browsers, no change)
Here's the updated code in my penny whistle site's custom skin Menu templ, looks the same to me as yours. ?:
{foreach from=$_items name="loop" item="entry"}
    {if isset($entry.menu_function_result) && strlen($entry.menu_function_result) > 0}
        {if is_numeric($entry.menu_function_result)}
        	<li><a href="{$entry.menu_url}">{$entry.menu_label} [{$entry.menu_function_result}]</a></li>
        {else}
        	<li><a href="{$entry.menu_url}">{$entry.menu_label} <img src="{$entry.menu_function_result}" alt="{$entry.menu_label}"></a></li>
        {/if}
    {else}
		{if $entry.menu_label == "Private Messages"}
       		{* CUSTOM CODE for pending followers in menu HERE *}
    		{if jrUser_is_logged_in()}
    			<li><a href="{$jamroom_url}/{$_user.profile_url}/follow">Pending Followers: {jrFollower_pending_count()}</a></li>
    		{/if}
		{/if}
    	<li><a href="{$entry.menu_url}">{$entry.menu_label}</a></li>
    {/if}
{/foreach}

updated by @strumelia: 10/01/20 05:05:35PM
Strumelia
@strumelia
10/01/20 04:54:30PM
3,603 posts

My skin's Pending Followers menu link count stopped working


Using Jamroom

Hi Paul, thanks-
I had two pending followers on my FOTMD site, and the menu count correctly changed to "1", and then to "0", as i approved them one by one, while clearing cache between each approval. Once they were both approved, it now shows "0"... so it's working! :D
I applied the code change to my other JR site as well, and it's working again too.
Muchas gracias!
Strumelia
@strumelia
09/30/20 09:39:51AM
3,603 posts

My skin's Pending Followers menu link count stopped working


Using Jamroom

I've had this code in my custom skin working fine for a long time, but it no longer works, not sure why.
In my custom skin's Menu template, I have this code:
{foreach from=$_items name="loop" item="entry"}
    {if isset($entry.menu_function_result) && strlen($entry.menu_function_result) > 0}
        {if is_numeric($entry.menu_function_result)}
        <li><a href="{$entry.menu_url}">{$entry.menu_label} [{$entry.menu_function_result}]</a></li>
            {else}
        <li><a href="{$entry.menu_url}">{$entry.menu_label} <img src="{$entry.menu_function_result}" alt="{$entry.menu_label}"></a></li>
        {/if}
        {else}

{if $entry.menu_label == "Private Messages"}
       {* CUSTOM CODE for pending followers in menu HERE *}
    {if jrUser_is_logged_in()}
    <li><a href="{$jamroom_url}/{$_user.profile_url}/follow">Pending Followers: {jrCore_list module="jrFollower" search1="follow_profile_id = `$_user._profile_id`" search2="follow_active = 0" return_count=true no_cache=true}</a></li>
    {/if}
{/if}

    <li><a href="{$entry.menu_url}">{$entry.menu_label}</a></li>
    {/if}
{/foreach}
...which resulted in a custom item in my profile dropdown menu which gave a number count of how many Followers were Pending approval for a member (and showed a numeral zero if there were none pending).
Now I see on both my own master admin profile and on a 'regular member' test profile, there are pending followers but no number shows in the drop down menu anymore like it should.
I assume some update tripped this up, what should I do? (BTW the same problem on my other pennywhistle site.)
updated by @strumelia: 01/01/21 04:56:58PM
Strumelia
@strumelia
09/17/20 08:06:51PM
3,603 posts

my custom jrXCommentDelete module stopped working


Using Jamroom

No need to rush about getting the module rushed to marketplace.
Thank you for answering my additional questions, and for fixing this up. :)
Strumelia
@strumelia
09/17/20 11:26:32AM
3,603 posts

my custom jrXCommentDelete module stopped working


Using Jamroom

Duh! lolol Thanks Paul.
As long as the count can be accurate I guess I don't really need the module to tell me how many comments it deleted (maybe that's a popup setting in my Chrome or something, who knows).

Since you put in a fix on the next Comments Module release, I'm guessing it's not due to a custom template override of mine, correct? And if that's true, then it'll automatically get fixed at that point on my other pennywhistle site without my doing anything, right? (the whistle site is mostly a test site so is not important at all to fix up right now).
  8