Jump to content

Dexter_X

Clients
  • Posts

    396
  • Joined

  • Last visited

  • Days Won

    3

Reputation Activity

  1. Thanks
    Dexter_X reacted to Marc Stridgen in email_transaction_wait displayed as content for transaction   
    Just a quick update on this to let you know that a fix has been pushed for this, so it will be in a future release. I will update once that has gone in
  2. Thanks
    Dexter_X reacted to Marc Stridgen in Caching on uploaded images gallery   
    Yes, a video would be very useful incase Im missing anything. With regard access, please add it to your account on file
  3. Like
    Dexter_X got a reaction from FabioPaz in Current ranks – and – Reputation   
    Hi, 
    The reputation system is still "alive", it is just not displayed anymore in the author's pane (left side of a post). We've restored it back by modifying the template in the theme. It is a little "tricky" because there is three places where you need to do it in your theme forums/front/topics/postContainer template file : 
    . to restore reputation badges/levels, around original line 110, add the following code after the </li> :
    {{if $comment->author()->reputationImage()}} <li data-role='reputation-image' class='ipsPadding:half'> <img src='{file="$comment->author()->reputationImage()" extension="core_Theme"}' title='{{if $comment->author()->reputation()}}{$comment->author()->reputation()}{{endif}}' alt=''> </li> {{endif}} so you'll obtain something that looks like this, considering surrounding code :
    </ul> </li> {{if $comment->author()->reputationImage()}} <li data-role='reputation-image' class='ipsPadding:half'> <img src='{file="$comment->author()->reputationImage()" extension="core_Theme"}' title='{{if $comment->author()->reputation()}}{$comment->author()->reputation()}{{endif}}' alt=''> </li> {{endif}} {{endif}} {{if $comment->author()->member_id}} so, it is important to place the new code after both </ul> and </li> ending the counters line.
     
    . To restore the reputation counter, add the following code around original line 96, just after the <ul class="ipsList_reset ipsType_light ipsFlex ipsFlex-ai:center ipsFlex-jc:center ipsGap_row:2 cAuthorPane_stats"> :
    <li data-role='reputation-badge'> {template="reputationBadge" group="global" app="core" params="$comment->author()"} </li> so you'll obtain something that looks like (considering surrounding code) :
    <ul class="ipsList_reset ipsType_light ipsFlex ipsFlex-ai:center ipsFlex-jc:center ipsGap_row:2 cAuthorPane_stats"> <li data-role='reputation-badge'> {template="reputationBadge" group="global" app="core" params="$comment->author()"} </li> {{if isset( $comment->author_solved_count )}} <li>  
    Edit for mobile display (add back reputation counter on mobile devices display) :
    . To restore the reputation counter in mobiles display, add the following code around original line 57, inside the <h3> just after the {template="userLink" group="global" app="core" params="$comment->author(), $comment->warningRef(), TRUE, $comment->isAnonymous()"} and before the </h3>
    &nbsp; <span class="ipsType_medium">{template="reputationBadge" group="global" app="core" params="$comment->author()"}</span> so you'll obtain something that looks like (considering surrounding code) : 
    <h3 class='ipsType_sectionHead cAuthorPane_author ipsType_break ipsType_blendLinks ipsFlex ipsFlex-ai:center'> {template="userLink" group="global" app="core" params="$comment->author(), $comment->warningRef(), TRUE, $comment->isAnonymous()"} &nbsp; <span class="ipsType_medium">{template="reputationBadge" group="global" app="core" params="$comment->author()"}</span> </h3>  
    Save your template file, reload your topic : job done !
  4. Thanks
    Dexter_X got a reaction from Electric_Sheep8787 in Current ranks – and – Reputation   
    Hi, 
    The reputation system is still "alive", it is just not displayed anymore in the author's pane (left side of a post). We've restored it back by modifying the template in the theme. It is a little "tricky" because there is three places where you need to do it in your theme forums/front/topics/postContainer template file : 
    . to restore reputation badges/levels, around original line 110, add the following code after the </li> :
    {{if $comment->author()->reputationImage()}} <li data-role='reputation-image' class='ipsPadding:half'> <img src='{file="$comment->author()->reputationImage()" extension="core_Theme"}' title='{{if $comment->author()->reputation()}}{$comment->author()->reputation()}{{endif}}' alt=''> </li> {{endif}} so you'll obtain something that looks like this, considering surrounding code :
    </ul> </li> {{if $comment->author()->reputationImage()}} <li data-role='reputation-image' class='ipsPadding:half'> <img src='{file="$comment->author()->reputationImage()" extension="core_Theme"}' title='{{if $comment->author()->reputation()}}{$comment->author()->reputation()}{{endif}}' alt=''> </li> {{endif}} {{endif}} {{if $comment->author()->member_id}} so, it is important to place the new code after both </ul> and </li> ending the counters line.
     
    . To restore the reputation counter, add the following code around original line 96, just after the <ul class="ipsList_reset ipsType_light ipsFlex ipsFlex-ai:center ipsFlex-jc:center ipsGap_row:2 cAuthorPane_stats"> :
    <li data-role='reputation-badge'> {template="reputationBadge" group="global" app="core" params="$comment->author()"} </li> so you'll obtain something that looks like (considering surrounding code) :
    <ul class="ipsList_reset ipsType_light ipsFlex ipsFlex-ai:center ipsFlex-jc:center ipsGap_row:2 cAuthorPane_stats"> <li data-role='reputation-badge'> {template="reputationBadge" group="global" app="core" params="$comment->author()"} </li> {{if isset( $comment->author_solved_count )}} <li>  
    Edit for mobile display (add back reputation counter on mobile devices display) :
    . To restore the reputation counter in mobiles display, add the following code around original line 57, inside the <h3> just after the {template="userLink" group="global" app="core" params="$comment->author(), $comment->warningRef(), TRUE, $comment->isAnonymous()"} and before the </h3>
    &nbsp; <span class="ipsType_medium">{template="reputationBadge" group="global" app="core" params="$comment->author()"}</span> so you'll obtain something that looks like (considering surrounding code) : 
    <h3 class='ipsType_sectionHead cAuthorPane_author ipsType_break ipsType_blendLinks ipsFlex ipsFlex-ai:center'> {template="userLink" group="global" app="core" params="$comment->author(), $comment->warningRef(), TRUE, $comment->isAnonymous()"} &nbsp; <span class="ipsType_medium">{template="reputationBadge" group="global" app="core" params="$comment->author()"}</span> </h3>  
    Save your template file, reload your topic : job done !
  5. Like
    Dexter_X got a reaction from Sebbo78 in Hump Day: A Refresh Has Arrived!   
    I think for little communities like ours that price rise of nearly 50% (47% in our case) may be a kill factor.
    I just have something to say : if you go ask your boss for a 47% rise, how do you think he/she'll react ?
  6. Thanks
    Dexter_X reacted to Adriano Faria in Export translation of an app   
  7. Thanks
    Dexter_X reacted to Randy Calvert in How to create a french translation ?   
    There are times where things where capitalization or punctuation, or having a plural version could be in play.
    For example:
    "an IP address"
    "the IP addresses"
    The challenge is that the BASE language is English...  meaning there are multiple strings to handle situations like the above.  Different languages may not need all 20 of the variations, but because English is the base, you could end up with the same entry multiple times.  
    English is the most backwards language in the world and breaks almost all of its own rules.  
     
  8. Thanks
    Dexter_X reacted to Matt in How to create a french translation ?   
    We often have what looks to be duplicate strings, but the context can be very different and in the past we have had requests to ensure that separate translations for each context is available.

    What makes sense for us in English, German and French doesn't in Korean, Chinese, etc.
  9. Like
    Dexter_X got a reaction from Madal in How to create a french translation ?   
    ok ok ok, sorry for asking. I didn't know it was so sensitive...
  10. Like
    Dexter_X got a reaction from Madal in How to create a french translation ?   
    😞 sorry to read that... but thankyou for the answer 
  11. Like
    Dexter_X got a reaction from Madal in How to create a french translation ?   
    Hi, 
    Maybe I've posted in the wrong section, so I try here : I want to produce (and sell in the Marketplace) my own french translation, but in my current licence I don't own all the options (missing downloads & blogs). Is it possible to get only a "strings" file to make a translation without having to buy all the licence options ?
    Thankyou,
    D
  12. Thanks
    Dexter_X reacted to WP V0RT3X in Articles with chapters in blog ?   
    Looks like this one would be perfect ...
    Maybe modify it a little bit (Prev/Next Page, move Navigation) and you'll have the same.
  13. Like
    Dexter_X got a reaction from Jalal arefen in Articles with chapters in blog ?   
    Hi, 
    I don't have the blog feature, but I'm willing to integrate a blog into our community (so maybe I'll purchase it). The original blog articles are quite long and organized in chapters/sections for a easiest understanding and navigation. In the Invision Community blog feature is it possible to create such blogs ? maybe throug an add-on ? (in WordPress for example you need an add on but it is possible).
    Here is an example of a - big - article/tutorial of the blog I want to migrate into invision's blog, you can see in the top right of the navigation bar the chapters organization and levels : https://www.diegoyourself.com/index.php?article=mecanique_carbu_solex32dis 
    Thankyou for your answers and suggestions,
    D
  14. Thanks
    Dexter_X reacted to Sonya* in How to hide EXIF info in Galleries   
    In AdminCP go to System -> Files and click on the button Image Settings.

    This would strip EXIF system-wide, not only in Gallery.
  15. Like
    Dexter_X got a reaction from Matt in Moderate a user's publications ?   
    Thankyou !  I've never knew (until today) what it means by "restrict" (what kind of restriction).
     
  16. Thanks
    Dexter_X reacted to Matt in Moderate a user's publications ?   
    This effectively stops them from posting at all.
  17. Thanks
    Dexter_X reacted to opentype in Moderate a user's publications ?   
    Open the member in the ACP. Then under Warnings & Restrictions: Require approval before content shows. 

  18. Thanks
    Dexter_X reacted to Marc Stridgen in email_transaction_wait displayed as content for transaction   
    Have managed to pinpoint it and added a bug report for this. Im not sure where it was reported previously, but I'm not able to see that report anywhere. Apologies if that has been missed somewhere along the way, but there is a report in there now for it
  19. Thanks
    Dexter_X reacted to Daniel F in Can't find "display adds only on content pages" parameter   
    That's a per ad setting appearing on the form while creating/editing the advertisement under ACP => System => Advertisements.
     

  20. Like
    Dexter_X got a reaction from sobrenome in Online Users doesn't always show correctly   
    Seems to work better since V4.6.7
  21. Like
    Dexter_X got a reaction from sobrenome in Online Users doesn't always show correctly   
    Trying it with 1 minute cache since yesterday : have not seen any significant changes.
  22. Like
    Dexter_X got a reaction from sobrenome in Online Users doesn't always show correctly   
    ok, I've reduced the caching time, but now it is really an issue considering performances because the who's online blocks do not need the same refresh rate than the other (much more static) blocks... 
    A more specific option seems more adapted here or at least maybe a way to patch the code in order to disable caching for who's online concerned blocks (?)
  23. Like
    Dexter_X got a reaction from sobrenome in Online Users doesn't always show correctly   
    sorry, but where is that ACP setting ?
     
    Edit : found ! (ACP -> System -> Advanced Configuration -> Server Environment -> Performance)
  24. Like
    Dexter_X got a reaction from sobrenome in Online Users doesn't always show correctly   
    so... it is maybe not a good idea to cache such blocks where we expect more "instant update"...
  25. Like
    Dexter_X got a reaction from sobrenome in Online Users doesn't always show correctly   
    ok... so it maybe means in previous versions that block was not cached (?) 🤷‍♂️
×
×
  • Create New...