Jump to content

Jeiko

Explorer
  • Posts

    129
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Jeiko

  1. the image is not working, about the code this is the whole code for the reputation you want to change on the userinfopane?
  2. Check if it's on <li> item maybe it takes the bullet for cause of the list item
  3. Search on hook files for the userinfopane somewhere it will have those words to remove them i guess if not wait for someone else to help you
  4. For the location try to remove the Topic View Format code from Members -> Custom Profile Fields Now about the reputation i don't know how to fix the hook for the reputation but you can add on bottom the down reputation you got by taking the code for reputation and move it for example under the post count
  5. sure np can you show me a picture cause i didn't understand what do you mean?
  6. Hello guys. I searched and didn't find anything related to this so i decide to make a guide for users who may need this. If it's posted again and i didn't find it i'm sorry. Let's start. I saw many people asking how to adapt sites from Stress Web to HTML and even pay for them and trust me it's something really easy you can do it at your own very fast and with out any knowledge. Part 1: Select our design. You can find a lot of Strees Web templates around the internet it will be easy to find them so don't worry about that. For this guide i'll choose this template Part 2: Checking the files The files you will find inside will be those files: Part 3: Getting started with adapt. If you try to open the index.html file you will get an error like this: It's because this file it's created to work only if you don't have access to the site.The working index is the index.tpl file. Now the first things you have to do in order to make the template working is to open the index.tpl file and replace the code "{template}/" with a space. The index.tpl will look like this: You just replace them with a space: Just click on replace all button and then go to File -> Save As and save it as index.html (replace the old one) Now as you can see the most of things are not working like server status,forum posts,top pvp,etc. Now all you have to do is simply check the files it says so you can make it work. For example in order to edit the Server Status go to your files open server.tpl file and take the content and paste it into the template where it says {server} Don't forget to remove the {template}/ . Where it says "{nameLink}" is the server name and on {online} it's your server status. Note: You can make the files .php at any time you want and add scripts in order to work via php and no manualy by you but now i'm here to learn you how to do the basic things. Now as you can see the server status is looking fine Do the following thing with all the other things are missing like forum topics,top pvp,top pk,etc and here you're you just adapt the Stress Web template to HTML template and it's ready to use. Note: Where it says "{info}{content}" you will add the code from news.tpl file. Here is a download link with the template as it is on the first preview picture if you want to use it. I hope i helped you, have fun
  7. i don't know where is the problem on this maybe someone else can help you on this
  8. Try with a clean one from the retail IPB template userinfopane <div itemscope itemtype="http://schema.org/Person" class='user_details'> <span class='hide' itemprop="name">{$author['members_display_name']}</span> <ul class='basic_info'> <if test="membertitle:|:$author['member_title']"> <p class='desc member_title'>{$author['member_title']}</p> </if> <if test="avatar:|:$author['member_id']"> <li class='avatar'> <if test="canSeeProfiles:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )"> <a itemprop="url" href="{parse url="showuser={$author['member_id']}" template="showuser" seotitle="{$author['members_seo_name']}" base="public"}" title="{$this->lang->words['view_profile']}: {$author['members_display_name']}" class='ipsUserPhotoLink'> </if> <if test="hasVariable:|:$this->settings['member_topic_avatar_max']"> <img itemprop="image" src='{$author['pp_main_photo']}' class='ipsUserPhoto ipsUserPhoto_variable' /> <else /> <img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' /> </if> <if test="canSeeProfiles2:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )"> </a> </if> </li> <else /> <li class='avatar'> <img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' /> </li> </if> <li class='group_title'> {$author['_group_formatted']} </li> <if test="rankimage:|:$author['member_rank_img']"> <li class='group_icon'> <if test="rankimageimage:|:$author['member_rank_img_i'] == 'img'"> <img src='{$author['member_rank_img']}' alt='' /> <else /> {$author['member_rank_img']} </if> </li> </if> <if test="postCount:|:$author['member_id']"> <li class='post_count desc lighter'> {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"} {$this->lang->words['m_posts']} </li> </if> <if test="authorwarn:|:$author['show_warn']"> <li> <if test="hasWarningId:|:$options['wl_id']"> <img src='{$this->settings['img_url']}/warn.png' class='clickable' onclick='warningPopup( this, {$options['wl_id']} )' title='{$this->lang->words['warnings_issued']}' /> </if> <a class='desc lighter blend_links' href='{parse url="app=members&amp;module=profile&amp;section=warnings&amp;member={$author['member_id']}&amp;from_app={$this->request['app']}&amp;from_id1={$contentid}&amp;from_id2={$options['id2']}" base="public"}' id='warn_link_{$contentid}_{$author['member_id']}' title='{$this->lang->words['warn_view_history']}'>{parse expression="sprintf( $this->lang->words['warn_status'], $author['warn_level'] )"}</a> </li> </if> </ul> <if test="authorcfields:|:$author['custom_fields'] != """> <ul class='custom_fields'> <foreach loop="customFieldsOuter:$author['custom_fields'] as $group => $data"> <foreach loop="customFields:$author['custom_fields'][ $group ] as $field"> <if test="$field != ''"> <li> {$field} </li> </if> </foreach> </foreach> </ul> </if> </div> ipb_styles.css Replace the /* AUTHOR INFO (& RELATED) STYLES */ with this one /* AUTHOR INFO (& RELATED) STYLES */ .author_info { width: 155px; float: left; font-size: 12px; text-align: center; padding: 15px 10px; } .author_info .group_title { color: #5a5a5a; margin-top: 5px; } .author_info .member_title { margin-bottom: 5px; word-wrap: break-word; } .author_info .group_icon { margin-bottom: 3px; } .custom_fields { color: #818181; margin-top: 8px; } .custom_fields .ft { color: #505050; margin-right: 3px; } .custom_fields .fc { word-wrap: break-word; } .user_controls { text-align: center; margin: 6px 0; } .user_controls li a { display: inline-block; background: #f6f6f6; background: -moz-linear-gradient(top, #f6f6f6 0%, #e5e5e5 100%); /* firefox */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f6f6f6), color-stop(100%,#e5e5e5)); /* webkit */ border: 1px solid #dbdbdb; -moz-box-shadow: 0px 1px 0px rgba(255,255,255,1) inset, 0px 1px 0px rgba(0,0,0,0.3); -webkit-box-shadow: 0px 1px 0px rgba(255,255,255,1) inset, 0px 1px 0px rgba(0,0,0,0.3); box-shadow: 0px 1px 0px rgba(255,255,255,1) inset, 0px 1px 0px rgba(0,0,0,0.3); -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; padding: 5px; color: #616161; }
  9. Hello guys, before some days i finished my first complete website template and i wanted to show you my work Here is a preview of my website template. *The name is used for preview only* Here is the preview:
  10. Go to admin panel and go to Members -> Member Ranks it will look like this Click on Newbie for example and set the number of pips like this For me the pip image name is bullet_black find yours and change it to the icon you want, or you can go to Members -> Member Groups -> Manage Member Groups and add an image for the Members but the image should be located inside the 'public/style_extra/team_icons/' folder in order to work.
  11. check here: http://webflake.sx/topic/7974-the-settings-file-in-template/?hl=%2Bhorizontal+%2Buserinfopane#entry38584 You should just make off what Skreamzja says You need to locate three template files. ( userinfoPane, topicViewTemplate & post ) and in there right at the top of the templates, you shuold see the option to set horizontal user info pane on. To turn it on you change the instances of "no" to "yes" where it says horizontal user info pane on do it off
  12. Welcome to WebFlake @Jyuki
  13. Καλώς ήρθες στο WebFlake trial
  14. Maybe a black & white background would be just awesome to complete this theme i really like simple and clean things so for me it's really nice.
  15. Tell me your dimensions and i can give a try
  16. Welcome to webflake Brandon
×
×
  • Create New...