Jump to content

Dexter_X

Clients
  • Posts

    396
  • Joined

  • Last visited

  • Days Won

    3

Reputation Activity

  1. Like
    Dexter_X got a reaction from konon in Improving user status in hovercard   
    add  : {$member->location()|raw} in your theme template core/profile/hovercard, at line 40, after {lang="members_online_now"}
    You'll obtain something like : 
    {{if $member->isOnline() AND ( !$member->isOnlineAnonymously() OR ( $member->isOnlineAnonymously() AND \IPS\Member::loggedIn()->isAdmin() ) )}} {lang="members_online_now"} : {$member->location()|raw} {{elseif $member->last_activity}} {lang="members_last_visit"} {datetime="$member->last_activity"} {{endif}} Save the template, reload your community page and see the magic happen...
    Hopping this could help.
  2. 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 !
  3. 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 !
  4. Like
    Dexter_X got a reaction from RoHAdmin in PHP8 will be the minimum version from November 2022   
    HI, 
    I've tried to set up the 8.0 or 8.1 PHP version but it only makes our community to display a blank screen. I've enabled all the available modules and nothing changes.
    Could you please be more precise on what PHP modules are needed by our communities in PHP 8.X to work properly. And maybe someway to debug the community in order to know why we got a blank screen ?
    Thankyou,
    D
  5. Like
    Dexter_X reacted to Luuuk in Show Reputation Points in Profil-Info?   
    See this topic:
     
  6. Like
    Dexter_X got a reaction from Clover13 in PHP8 will be the minimum version from November 2022   
    Thankyou @Jim M, I've found an old third party app that was causing the blank screen. I don't know what to do now because it is an app we use as main management for our community, but at least I know where the problem cames from...
    @Washerhelp thankyou but I already know you need to type the right PHP path into your cron task from your hosting management panel. My problem did not come from there. But regarding what you say, when you check "cron task" in the community settings it tells you what you need to type, including the path, you only need to make a "copy paste" and job's done ! 😉 
    And beware for the others, the PHP path is not always the same, it depends on your hosting installation, you need to refer to the ACP path to type the right one !
     
    Thankyou all for your advices, now at least I know where my problems came from.
  7. Thanks
    Dexter_X got a reaction from Washerhelp in PHP8 will be the minimum version from November 2022   
    Thankyou @Jim M, I've found an old third party app that was causing the blank screen. I don't know what to do now because it is an app we use as main management for our community, but at least I know where the problem cames from...
    @Washerhelp thankyou but I already know you need to type the right PHP path into your cron task from your hosting management panel. My problem did not come from there. But regarding what you say, when you check "cron task" in the community settings it tells you what you need to type, including the path, you only need to make a "copy paste" and job's done ! 😉 
    And beware for the others, the PHP path is not always the same, it depends on your hosting installation, you need to refer to the ACP path to type the right one !
     
    Thankyou all for your advices, now at least I know where my problems came from.
  8. Like
    Dexter_X got a reaction from SeNioR- in PHP8 will be the minimum version from November 2022   
    Thankyou @Jim M, I've found an old third party app that was causing the blank screen. I don't know what to do now because it is an app we use as main management for our community, but at least I know where the problem cames from...
    @Washerhelp thankyou but I already know you need to type the right PHP path into your cron task from your hosting management panel. My problem did not come from there. But regarding what you say, when you check "cron task" in the community settings it tells you what you need to type, including the path, you only need to make a "copy paste" and job's done ! 😉 
    And beware for the others, the PHP path is not always the same, it depends on your hosting installation, you need to refer to the ACP path to type the right one !
     
    Thankyou all for your advices, now at least I know where my problems came from.
  9. Thanks
    Dexter_X reacted to Jim M in Bug : periodic "contact us form request" sent   
    Sorry, you'll want to first disable it as it is showing you the settings as it is selected.
  10. Like
    Dexter_X got a reaction from Jim M in Bug : periodic "contact us form request" sent   
    ok, thankyou ! I'll take a closer look at that...
  11. Agree
    Dexter_X got a reaction from Joachim Sandstrom in "Reverse" VAT management   
    Hi,
    In USA everybody knows the VAT is to be added to what you buy, even in public stores so the shop logics are based on a "without VAT" price where the VAT is added at checkout... The Commerce module logic uses the same principle.
    Here in Europe we display prices "all taxes included", so the final price with the total amount of what you will have to pay, including VAT. 
    My "problem" is that if I enable VAT management in commerce it is only a percent of the product value that is added to the "basic" (without VAT) price. It is the normal way VAT works, I agree, but it is not very useful. For europeans like me, it is a bit complex to got the exact total price you want to sell your products (displayed in the shop) by that way : the price needs to be computed regarding VAT, and to get the exact amount you want including VAT you need to set prices with a 1/10000 currency precision , or 1/100 cent precision (4 digits after the dot)... but... the commerce module does not accept prices more precise than at a cent (so 1/100 currency or two digits after the dot)... So it is nearly impossible for us to use VAT and have the right price displayed... It is very visible when we want a "round" price, like 40€, by activating the VAT (here it is 7.7%) we need to set a price of 40/(1+0.077)=37.14€ , then wen the final price is displayed in the shop, we've something like 40.01€ or 39.99€... 😑
    So it will be better if the VAT could be computed from the "selling all taxes included" price rather than added to a base price... At least for us in Europe where we only need to show customers the VAT they've paid. So, in other words, we set a selling price of 40€, and the customer gots a bill where it is displayed they've paid 2,86€ VAT included in that total price.
    If you compare with CMS managing online shops like prestashop or Magento : this is something you can do without any problem and without a dedicated plug-in...
  12. Thanks
    Dexter_X reacted to Marc Stridgen in Translation export problem   
    I have created a ticket for you on this, so one of our developers can see whats going on for you
  13. Agree
    Dexter_X reacted to Richard Arch in Commerce: Drop Shipping   
    Cater for drop shipping, there are some requirement and ideas discussed here.
     
  14. Thanks
    Dexter_X reacted to Marc Stridgen in Badges on subscription purchase not awarded   
    I see the issue has now been resolved by my colleague for you. 🙂
  15. Thanks
    Dexter_X reacted to Marc Stridgen in Badges on subscription purchase not awarded   
    I have created a ticket for you on this, so we can take a look for you
  16. Agree
    Dexter_X got a reaction from Admin Audinside in Avoid full quotes   
    Hi,
    It may be useful to reduce database occupancy to add an option detecting full quotes (when fully quoting the last posted message) and automatically removing it. Some users don't know how to post without just quoting the full previous post they're answering to...
    As a bonus it also can enhance the readability of a discussion when such users participate.
    Thankyou for your attention,
    D
  17. Agree
    Dexter_X got a reaction from Joachim Sandstrom in Front End User Guide   
    I'm maybe wrong, but I think Umaar asks for a user guide on how to use the standard/default interface. Could be useful for users not knowing how to use a forum/community...
  18. Thanks
    Dexter_X reacted to Marc Stridgen in email_transaction_wait displayed as content for transaction   
    This has now been resolved in the 4.6.9 version which has just been released. Please feel free to let us know if you are seeing any issues after upgrading
  19. Agree
    Dexter_X got a reaction from Everade in Avoid full quotes   
    Hi,
    It may be useful to reduce database occupancy to add an option detecting full quotes (when fully quoting the last posted message) and automatically removing it. Some users don't know how to post without just quoting the full previous post they're answering to...
    As a bonus it also can enhance the readability of a discussion when such users participate.
    Thankyou for your attention,
    D
  20. Thanks
    Dexter_X reacted to Matt in Points awarded but no badge   
    Just replied to the open ticket, but it's all fixed.
  21. Thanks
    Dexter_X reacted to Mark H in Security anti-spam suggestion   
    Please open a support request for this in the Client Area -> Manage Purchases -> click your license -> next page, "Support Request":
     

  22. Like
    Dexter_X got a reaction from Marc Stridgen in Points awarded but no badge   
    I've sent you both the informations through PM.
  23. Like
    Dexter_X got a reaction from Matt in Points awarded but no badge   
    I've sent you both the informations through PM.
  24. Like
    Dexter_X got a reaction from Matt in Points awarded but no badge   
    Hi all, thankyou for your answer and for reopening that ticket.
     
  25. Thanks
    Dexter_X reacted to Stuart Silvester in Caching on uploaded images gallery   
    Naturally creating a new language pack is a project that requires a lot of effort.
    It doesn't sound like you've modified a string that has changed (it would be listed on under that filter). If we delete a core string, when you upgrade it will remove it from your language packs.
    For the issue at hand, I would recommend taking a look at the browser developer tools, specifically at the console to see if any errors are shown when this issue occurs.
×
×
  • Create New...