Jump to content
WebFlake

Jeffrey

Rising Star
  • Posts

    927
  • Joined

  • Last visited

  • Days Won

    57

Community Answers

  1. Jeffrey's post in IPS 4.4.10 Re-Install Method? was marked as the answer   
    Once you have move your software to the /forum/ directory, the images broke and do not display properly? Using the support tool to clear the cache will fix this problem. Also, is this a problem on the default theme as well (assuming you have it still)? If so, have you tried to clear your web browser's cache? You can also try to flush your dns via command prompt:
    ipconfig /flushdns  
  2. Jeffrey's post in how to change title of forum front page was marked as the answer   
    Inside the AdminCP under Customizations, edit the English language and use the search bar for "Forums".
  3. Jeffrey's post in Change "Portal" name was marked as the answer   
    Edit the English language in the AdminCP under Customizations
  4. Jeffrey's post in An error occurred (500 Error) was marked as the answer   
    I use Webflake's Nulled software (4.4.10) and I haven't had any problems. Also, you have to change the blank config file name to remove the ".dist" part in order to install.
  5. Jeffrey's post in Modify Post feed block was marked as the answer   
    First, I would like to say thank you for posting code you want edited. Most users ask for us to edit code we do not know/have access to. Here is your edited code:
    {{if !empty( $comments ) }} <h3 class='ipsType_reset ipsWidget_title'>{$title}</h3> {{if $orientation == 'vertical'}} <div class='ipsWidget_inner ipsPad_half'> <ul class='ipsDataList ipsDataList_reducedSpacing'> {{foreach $comments as $comment}} <li class='ipsDataItem'> <div class='ipsDataItem_icon ipsPos_top'> {template="userPhoto" group="global" app="core" params="$comment->author(), 'tiny'"} </div> <div class='ipsDataItem_main'> <div class='ipsType_break ipsContained'><a href="{$comment->url()}" title='{lang="view_this_topic" sprintf="$comment->item()->title"}' class='ipsType_medium ipsTruncate ipsTruncate_line'>{$comment->item()->title}</a></div> <p class='ipsType_reset ipsType_light ipsType_medium ipsType_blendLinks'>{lang="byline_nodate" htmlsprintf="$comment->author()->link()"} · <a href='{$comment->item()->url()->setQueryString( array( 'do' => 'findComment', 'comment' => $comment->pid ) )}' class='ipsType_blendLinks'>{$comment->dateLine()|raw}</a></p> </div> </li> {{endforeach}} </ul> </div> {{else}} <div class='ipsWidget_inner'> <ul class='ipsDataList'> {{foreach $comments as $comment}} <li class='ipsDataItem ipsClearfix'> <div class='ipsComment_header ipsPhotoPanel ipsPhotoPanel_mini'> {template="userPhoto" app="core" group="global" params="$comment->author(), 'mini', $comment->warningRef()"} <div> <p class='ipsPos_right ipsType_reset'> {{if $comment->canReportOrRevoke() === TRUE}} <a href='{$comment->url('report')}' data-ipsDialog data-ipsDialog-remoteSubmit data-ipsDialog-size='medium' data-ipsDialog-flashMessage='{lang="report_submit_success"}' data-ipsDialog-title="{lang="report"}" data-action='reportComment' title='{lang="report_content"}'>{lang="report"}</a> · {{endif}} <a class='ipsType_blendLinks' href='{$comment->item()->url()->setQueryString( array( 'do' => 'findComment', 'comment' => $comment->pid ) )}' data-ipsTooltip title='{lang="share_this_comment"}' data-ipsMenu data-ipsMenu-closeOnClick='false' id='elShareComment_{$comment->pid}' data-role='shareComment'><i class='fa fa-share-alt'></i></a> </p> <h3 class='ipsComment_author ipsType_blendLinks'> <strong class='ipsType_normal'>{template="userLink" app="core" group="global" params="$comment->author(), $comment->warningRef()"}</strong> {template="reputationBadge" group="global" app="core" params="$comment->author()"} </h3> <p class='ipsComment_meta ipsType_light ipsType_medium'> <a href='{$comment->item()->url()->setQueryString( array( 'do' => 'findComment', 'comment' => $comment->pid ) )}' class='ipsType_blendLinks'>{$comment->dateLine()|raw}</a> {{if $comment->editLine()}} ({lang="edited_lc"}) {{endif}} {{if $comment->hidden()}} · {$comment->hiddenBlurb()} {{endif}} </p> {{if member.modPermission('mod_see_warn') and $comment->warning}} {template="commentWarned" group="global" app="core" params="$comment"} {{endif}} </div> </div> <div class='ipsPad ipsClearfix'> <div class='ipsType_break ipsContained'><a href="{$comment->url()}" title='{lang="view_this_topic" sprintf="$comment->item()->title"}' class='ipsDataItem_title ipsTruncate ipsTruncate_line'>{wordbreak="$comment->item()->title"}</a></div> <div data-role='commentContent' class='ipsType_normal ipsType_richText ipsContained' data-controller='core.front.core.lightboxedImages'> {{if $comment->hidden() === 1 && $comment->author()->member_id == \IPS\Member::loggedIn()->member_id}} <strong class='ipsType_medium ipsType_warning'><i class='fa fa-info-circle'></i> {lang="comment_awaiting_approval"}</strong> {{endif}} </div> {{if $comment->hidden() !== 1 && \IPS\IPS::classUsesTrait( $comment, 'IPS\Content\Reactable' ) and settings.reputation_enabled}} <div class='ipsItemControls'> {template="reputation" group="global" app="core" params="$comment"} </div> {{endif}} </div> </li> {{endforeach}} </ul> </div> {{endif}} {{endif}} Using the existing code, it will show everything that you have asked for.

  6. Jeffrey's post in How can I give users Username Items? was marked as the answer   
    Add a group suffix to the existing group you'd like to edit.
    <i class="fa fa-check-circle-o" aria-hidden="true"></i>  
  7. Jeffrey's post in table W-F was marked as the answer   
  8. Jeffrey's post in Discord icon - Account settings was marked as the answer   
    Inspect Element > find the css for the specific icon > Override with custom.css code to change icon
  9. Jeffrey's post in how to upgrade ips was marked as the answer   
  10. Jeffrey's post in Postbit background on IPS 4.X was marked as the answer   
    forums -> topics -> postContainer:
    Change:
    <aside class='ipsComment_author cAuthorPane ipsColumn ipsColumn_medium'> With:
    <aside class='ipsComment_author cAuthorPane ipsColumn ipsColumn_medium' style='{{if $comment->author()->member_group_id == 4}}background: linear-gradient(to bottom, rgba(15,183,255,0.2) 0%,rgba(15,183,255,0) 100%);{{endif}}'> Change background and member group id to whatever needed.
  11. Jeffrey's post in Group Formatting gradient was marked as the answer   
    You can do this with the way I added a gradient text color to the time on WebFlake that appears in your author pane.
    background-image: -webkit-gradient( linear,left top,right top,color-stop(0,#ffd728),color-stop(1,#ff7328) ); color: transparent; -webkit-background-clip: text;  
  12. Jeffrey's post in Redirect to a topic after registration was marked as the answer   
  13. Jeffrey's post in Vulpes Dark Theme Background Image? was marked as the answer   
    body { background: url(...); }  
  14. Jeffrey's post in Wordpress - IPS Migration was marked as the answer   
    Just use the converter provided in the software and it's pretty easy. 
  15. Jeffrey's post in News help [Dimension] was marked as the answer   
    Post in custom.css
    .cForumList .ipsDataItem_unread .ipsDataItem_title:before, .cForumGrid_unread .ipsPhotoPanel h3 a:before { content: "NAUJA"; }  
  16. Jeffrey's post in Cloudflare and IP Address was marked as the answer   
    Something you should probably look into - https://support.cloudflare.com/hc/en-us/articles/201897700#h_533849564801543957037974
  17. Jeffrey's post in 4.4.3 UPDATE was marked as the answer   
  18. Jeffrey's post in Changing Default Editor Text was marked as the answer   
    You can use CSS to do this:
    .cke_wysiwyg_div > p { color: #fff; }  
  19. Jeffrey's post in IPB 4,4 was marked as the answer   
    PHP 5.6 isn’t compatible with IPS 4.4. You’d need to have 7.0, 7.2, or 7.3. 7.1 is known to not work.
  20. Jeffrey's post in How to remove annoying titile was marked as the answer   
    While in the Live Meta Tag Editor, search for the og:title in the right sidebar.
  21. Jeffrey's post in Full Online Plugin was marked as the answer   
    You could just combine the Who Was Online plugin with the Who is Online plugin. ?
  22. Jeffrey's post in Annoucements in Sidebar was marked as the answer   
    .cAnnouncementIcon, #cAnnouncementSidebar h3 { display: none; }  
  23. Jeffrey's post in topic image was marked as the answer   
  24. Jeffrey's post in Custom Group Icons was marked as the answer   
    Images should be 20 x 20 and should include a padding-bottom of 2 pixels.
  25. Jeffrey's post in Icons do not appear was marked as the answer   
    Run the support tool in admin cp 
×
×
  • Create New...