Jump to content

Lock Down

Rising Star
  • Posts

    1,035
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by Lock Down

  1. Demo account does not give me access to admin panel which I need to resolve what you are doing wrong. Finished .. You didn't need the prefix part. Check it now.
  2. The built in ad system will do that .. admin panel >; settings> Ad Code Integration
  3. I believe you are talking about this http://webflake.sx/topic/765-hook-bbcode-warning-success-information-error/
  4. If you have removed or disabled all hooks and apps and tested it then I can only suggest you try a fresh install to see if it works.
  5. Do you still have the default skin installed? And does it do it on that skin? Have you tried setting minify js/css to off in settings general tab?
  6. Use the hook below or if you know php use the built in recent topics sidebaar to create your own. http://webflake.sx/topic/494-hook-sos34-recent-topics
  7. What version ipb are you running? If you want pm me an admin login and I will look at it. And you are putting it in the userinfopane template?? Also check the logs in admin panel for sql errors.
  8. How can you say it doesn't work?? Of course it works. Why are you showing code for posts when you want topics. Didn't you at least setup the css and language parts??? Here it is with hard coded language <php>$topics=ipsRegistry::DB()->buildAndFetch(array('select' => 'count(*) as count','from'=>'topics','where'=>'starter_id='.$author['author_id']));</php> <div class="extraUserInfo"> <if test="topicCount:|:$topics['count']>0"> <dl class="pairsJustified"> <dt> Topics: </dt> <dd>{parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $topics['count']) )"}</dd> </dl> </if> </div>
  9. for likes use this hook http://webflake.sx/files/file/729-tb-show-reputation-in-user-info-310/ Update for the topics you can use this <php>$topics=ipsRegistry::DB()->buildAndFetch(array('select' => 'count(*) as count','from'=>'topics','where'=>'starter_id='.$author['author_id']));</php> <if test="$topics['count']>0"><li> topics: {$topics['count']}</li></if> Of course you can change the word topics: to whatever you like...
  10. May not do what is in your mind, but the code works perfectly. Since you can't express yourself better it is a good idea you close it. It is not wasting your time but more important the members trying to help you.
  11. I explained how to use it in the first line. but simply, if the field number is 11 your code would be (raw code) <php>$formatted = str_replace('{content}',$member['field_11'],$this->caches['profilefields'][11]['pf_topic_format']); $formatted = str_replace('{title}',$this->caches['profilefields'][11]['pf_title'],$formatted);</php> then use {$formatted} to show the formatted string . Remember this will only work when you have a field that was formatted in the creation of the custom profile fields. Tho I thought the whole purpose was for you to use your own customized code.
  12. admin panel > Member Groups > Manage Member Groups > guests > shoutbox tab Can view the shoutbox? Yes No Allow this group to VIEW but not use the shoutbox? Just choose no..
  13. First these thumbnail pictures are unreadable. But to get these fields formatted you have to also get the caches for the field pf_topic_format and pf_title. Then put them together replacing the {title} and {content} with the ones form the the field data and the cached data. $this->caches['profilefileds'][1]['pf_topic_format'] $this->caches['profilefileds'][1]['pf_title'] $this->caches['profilefileds'][1]['pf_icon'] $this->caches['profilefileds'][1]['key'] The one is the field number of the profile. The rest can be used to create what ever you want...
  14. The built in ad system will do that .. admin panel >; settings> Ad Code Integration
  15. It is nice to tell us exactly where you want them . If you are putting that in the profiles > profileModern template exactly as shown it does work. I just used it that way.
  16. it's placed like this <tr id='shoutbox-announcement-row' class='row2'<if test="$hide"> style='display:none;'</if>> <td class='altrow' valign='middle'<if test="$global"> colspan='2'</if>> <div id='shoutbox-announcement-text' class='message'> <span style="background-image: url ('http://yoursite.com/img/your image.gif'); background-repeat: no-repeat; background-position: center;"> {$this->settings['shoutbox_announcement']} </span> </div> </td> </tr> or better yet <tr id='shoutbox-announcement-row' class='row2'<if test="$hide"> style='display:none;'</if>> <td class='altrow' valign='middle'<if test="$global"> colspan='2'</if>> <div id='shoutbox-announcement-text' class='message' style="background-image: url ('http://yoursite.com/img/your image.gif'); background-repeat: no-repeat; background-position: center;"> {$this->settings['shoutbox_announcement']} </div> </td> </tr
  17. You can make anything in ipb that xenforo can. give HSBC the link.
  18. I posted the answer to this before a search for field_ would have given you this link http://webflake.sx/topic/6994-replacing-user-titles-with-custom-field-in-userinfopane/ The second way is to use this variable for the author custom fields FieldName: {$post['author']['field_11']}
  19. Sorry I don't understand. " I only want one picture at a time (1200x163) And then 3 or 4 pictures." Looks like to show 1 pic at a time how many contents in one slide show page should be 1. and then 3-4 more pictures I will guess and say total contents in slide show should be 4 or 5...
  20. Without showing the setup configuration you chose no one can help. Also check this topic for helpful hints. http://webflake.sx/topic/8842-how-to-set-up-a-scrolling-filmstrip-see-example/
  21. Depending on what you want done there are lots of hooks in the downloads section here.
  22. If you have the ioncube loader version of nexus the server is using version 4 and you need version 5. Ask you host to install ioncube version 5.
  23. This is what I get viewing your image Maybe you are talking about the secondary group option in the member edit in the admin panel. Many hooks use it to show multiple member icons in the userinfopane template.
  24. This way will work also <span style="background-image: url ('http://yoursite.com/img/your image.gif'); background-repeat: no-repeat; background-position: center;"> announcemnet . . . . . . . </span>
×
×
  • Create New...