Jump to content
  • Sign Up

Cookie Monster

Moderator
  • Posts

    1,420
  • Joined

  • Last visited

  • Days Won

    76

Everything posted by Cookie Monster

  1. Well the difference is there isn't two blocks in my scrip its 1 line with both of them in one. Person posts a new topic. It will show up. Person replies to a that topic or another topic shows up in the same box :)
  2. As I said i belive its due a nulled release :)
  3. Can you post me the content of your file located /home/senaxxps4/public_html/applications/downloads/modules/front/downloads/browse.php Please use the code tag when posting this (its the <>) I think there is a IPS bug on this. As I have the same, nothing uploaded clicking on it gives the error. Possible because of nulled but not sure.
  4. I see, so this is the RSS generated by the IPS Download, now i'm following. Well gonna do a few tests.
  5. If you can link me the feed I can do a test on my forum board aswell if you want.
  6. Hi SceneFile. Have you tried edit the RSS feed in AdminCP directly after a upgrade ? Just to see if this grabs any effect.
  7. Thank you :) I updated the code a bit, and added a screenshot, though the CSS needs to be tweaked but he gets the idea of what it is. Also updated the code with premade links for it, for a simple cut and paste.
  8. @allucard What IPS Theme is it you are using as standard ? This is the CSS to make the effect of two images. This is extracted from Animated and you will have to customize it for your theme. this creates the header (globalTemplate) <header id='header' class='animateBack'><div class='animateFront'> <div class='ipsLayout_container'> <div class='ipsClearfix alignHeader'> {template="logo" app="core" group="global" params=""} </div></div></div> </header> /* ============== */ /* HEADER */ /* ============== */ #header { background-color: {theme="headerBackground"}; } /* Background position = width of banner_bg.jpg */ @-webkit-keyframes headerAnimate { from { background-position: 0 50%; } to { background-position: -1584px 50%; } } @-moz-keyframes headerAnimate { from { background-position: 0 50%; } to { background-position: -1584px 50%; } } @keyframes headerAnimate { from { background-position: 0 50%; } to { background-position: -1584px 50%; } } @-webkit-keyframes headerAnimateBack { from { background-position: 0 50%; } to { background-position: 1920px 50%; } } @-moz-keyframes headerAnimateBack { from { background-position: 0 50%; } to { background-position: 1920px 50%; } } @keyframes headerAnimateBack { from { background-position: 0 50%; } to { background-position: 1920px 50%; } } .animateBack { background-image: url('http://i.imgur.com/ycHMqgD.jpg'); background-repeat: repeat-x; background-position: 0 50%; } .animateFront { background-image: url('http://i.imgur.com/NRtTWhG.png'); background-repeat: repeat-x; background-position: 0 50%; padding-bottom: 10px; box-shadow: 0px -1px 0px rgba(255,255,255,0.15) inset; } /* Restrict animation to desktops */ @media screen and (min-width:980px){ .animateBack { -webkit-animation: headerAnimateBack 200s infinite linear; -moz-animation: headerAnimateBack 200s infinite linear; animation: headerAnimateBack 200s infinite linear; } .animateFront { -webkit-animation: headerAnimate 150s infinite linear; -moz-animation: headerAnimate 150s infinite linear; animation: headerAnimate 150s infinite linear; } } These two lines controls what image there is there. background-image: url('{resource="ipsfocus/headerTop.png" app="core" location="front"}'); background-image: url('{resource="ipsfocus/headerBottom.jpg" app="core" location="front"}'); This will give you something like this.
  9. As I said it's a PHP and css thing in a theme to make it work currently out so will post when I'm back in front of a computer
  10. It's two images and css I'll write some css for you once I'm home I'm out atm but they use the theme animate. So you can just replace the images in it to get the same sort of effect.
  11. *Feeling amazing on the coding part today!* :cat:

  12. This is how it will look. With posts (As you can see it only show latest reply) but also topics. As you can see, its who answered on it but also updates with the number as normal.
  13. Version 1.0.0

    66 downloads

    IPS 4 removed the ability to modify the way the forum looks with Dates and Time. So i took the time of write a small XML plugin to sort this, so now you can edit it like in IPS3 (well more or less) How to install ? AdminCP > System > Plugins Install Plugin Click on the edit (pencil) Select your options Refresh If things still does not update, make sure you clear bad cache from forum AdminCP > System > Support What does it do ? You can customize forum-wide if you want 12h or 24h time to display You can customize the date (like with php date %d/%m/%y etc) VirusTotal
  14. I found out that I wanted to have Recent Topics and Recent posts all in one, for a bit more sleek overview. I didn't want to have two blocks for the same purpopse. So this custom feed, will update the latest Topic with its post. So if somone creates a topic, and somone replies it will get updated and display the title of the topic but also who posted last. So i re-wrote the standard and used both to combine it in all in one enjoy and lets get cracking Diff level: 1 You only need to cut and paste Whats Required. IPS 4.x + (Works on 4.0 and 4.1) IPS Pages Firstly open AdminCP > Pages > Blocks Click "Create new Block" Select Plugin In the dropdown box select "Topic Feed" Now fill it in with these details. Name: Latest Description: Latest from the forum Template Key: latest2 Click on Feed Configuration Name: Latest on forums (You can call it whatever you want the block to be named) Honour Permissions: On The rest here is optional for how you want to display things for your users. Click on Content Under Template select in the dropdown box "Use as base for custom template" replace the code in the box with the following {{if !empty( $topics ) }} <h3 class='ipsWidget_title ipsType_reset'>{$title}</h3> {{if $orientation == 'vertical'}} <div class='ipsPad_half ipsWidget_inner'> <ul class='ipsDataList ipsDataList_reducedSpacing'> {{foreach $topics as $topic}} <li class='ipsDataItem{{if $topic->unread()}} ipsDataItem_unread{{endif}}{{if $topic->hidden()}} ipsModerated{{endif}}'> <div class='ipsDataItem_icon ipsPos_top'> {template="userPhoto" group="global" app="core" params="$topic->lastCommenter(), 'tiny'"} </div> <div class='ipsDataItem_main'> <div class="ipsCommentCount ipsPos_right {{if ( $topic->posts - 1 ) === 0}}ipsFaded{{endif}}" data-ipsTooltip title='{lang="replies_number" pluralize="$topic->posts - 1"}'>{expression="$topic->posts - 1"}</div> <a href="{$topic->url()->setQueryString( 'do', 'getLastComment' )}" title='{lang="view_this_topic" sprintf="$topic->title"}' class='ipsDataItem_title ipsType_break'>{wordbreak="$topic->title"}</a> {{if $topic->mapped('featured') || $topic->hidden() === -1 || $topic->hidden() === 1}} <span> {{if $topic->hidden() === -1}} <span class="ipsBadge ipsBadge_icon ipsBadge_small ipsBadge_warning" data-ipsTooltip title='{$topic->hiddenBlurb()}'><i class='fa fa-eye-slash'></i></span> {{elseif $topic->hidden() === 1}} <span class="ipsBadge ipsBadge_icon ipsBadge_small ipsBadge_warning" data-ipsTooltip title='{lang="pending_approval"}'><i class='fa fa-warning'></i></span> {{endif}} {{if $topic->mapped('featured')}} <span class="ipsBadge ipsBadge_icon ipsBadge_small ipsBadge_positive" data-ipsTooltip title='{lang="featured"}'><i class='fa fa-star'></i></span> {{endif}} </span> {{endif}} <br> <span class='ipsType_light ipsType_small'>{lang="byline_nodate" htmlsprintf="$topic->lastCommenter()->link()"} · {datetime="$topic->mapped('last_comment')"}</span> </div> </li> {{endforeach}} </ul> </div> {{else}} <div class='ipsWidget_inner'> <ul class='ipsDataList'> {{foreach $topics as $topic}} {template="row" group="global" app="forums" location="front" params="NULL, NULL, $topic, FALSE"} {{endforeach}} </ul> </div> {{endif}} {{endif}} Once saved give the permissions to who can view the block. Who to add the block to the sidebar on the forums Open the main forum Click on the > arrow to the left side Pages > Custom Block > Drag Box to the side or where you want it Click on Edit button on the block In the popup window select in the dropdown box the box you created (In this example its "Latest") Voila you got your custom block.
  15. I can only see the static logo. Or you talking about the animated background? that keeps scrolling :)
  16. Welcome to WebFlake Community @deaneo8
  17. She casted a protection spell on me now :P
  18. + = I'll settle for dinner and uhm a cookie! YES oh wait i'm last post now
×
×
  • Create New...