Jump to content

Heroes Killer

Apprentice
  • Posts

    42
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Heroes Killer

  1. It sounds like a solution! I'll try it as soon as I come home. Custom font size inside ACP's Test BBCode Parsing works. // edit: 19:27 (UTC +1). Yes! It seems this is working. Thank you very much! I've just edited it a little (because of big numbers - || instead of &&).
  2. Huh, thank you for detailed answer. It was not neccessary. I'm not really confused, I just wanted to be sure if I hadn't made any mistake in syntax etc... I hadn't. Code is exactly same as yours, but it doesn't work for me.
  3. Thanks, it's very good perception! I'll try. // Hmm, I tried it and it doesn't work. Could you send me a screen of your default.php (or code)? Maybe I've made some mistake.
  4. Thank you anyway... I'll look at it tommorow (there is very late here). Sry, but I absolutely don't understand you.
  5. Unfortunatelly, changing defaults.php does not work... Switching between Standart and Rich text editor solves that underlined text, but not font-sizes.
  6. I understand that, I just wanted to edit font-sizes (to be compatible). 1 => 8 ... It's substitution? For example, could I write 150 => 16, so that size 150(% in pphBB) would be size 16 here? By the way, BBCode for underlined text seems to be the same both for phpBB and IPB. However, it's not working properly (see Spoiler 1).
  7. Thank you, but it's not exactly what I mean. I am not converting. I'll try to explain it via images. Posts are not fully compatible. Text in post editor, same for phpBB and IPB (copied). How does it look in phpBB. How does it look in IPB. So... I tried to copy that to BBCode mode (= ). Here it seems fine, except font-sizes. For example...
  8. Greetings. Is there some way to change font-size settings to percentages? If I set bbcode-mode in post-editor, then THIS is 50. But I'd like to have it like this: = 150% of normal font-size. Thanks in advance. // By the way - the reason is compatibility with phpBB posts.
  9. Hi. Use combination of Hide Content and Ajax Thanks.
  10. Greetings. Could somebody tell me, how to fix this problem? I think the problem has appeared after I'd installed some skin. However, I can't find appropriate template. Thanks in advance. // Well, it seems that this is problem with my browser. I've just checked it with Firefox and it's ok there. Deleting cache & cookies doesn't help, any ideas?
  11. Well, it's not bad idea. Maybe there could be some little error that causes the problem. The main file I'm interested in is forumIndexTemplate.
  12. Hello. I suppose you had already made changes to Board Index -> boardIndexTemplate. These changes make possible custom icons on the BoardIndex (mainpage). However, have you also changed Forum View -> forumIndexTemplate? If not... ___________________________________________ Go to: Look & Feel -> Look & Feel -> Manage Skin Sets & Templates -> [your skin] -> Manage Templates & CSS -> Forum View -> forumIndexTemplate Find: <td class='col_c_icon'> <if test="$forum_data['_has_unread']"> <a id='forum_img_{$forum_data['id']}' href="{parse url="app=forums&module=forums&section=markasread&marktype=forum&forumid={$forum_data['id']}&returntoforumid={$this->request['f']}&i=1" base="public"}" data-tooltip="{$this->lang->words['bi_markread']}" class='forum_marker'><img src='{$this->settings['img_url']}/f_icon.png' /></a> <script type='text/javascript'> ipb.global.registerMarker( "forum_img_{$forum_data['id']}", "{$forum_data['img_new_post']}", markerURL + "&forumid={$forum_data['id']}" ); </script> <else /> <img src='{$this->settings['img_url']}/f_icon_read.png' /> </if> </td> and change it to: <td class='col_c_icon'> <if test="$forum_data['_has_unread']"> <a id='forum_img_{$forum_data['id']}' href="{parse url="app=forums&module=forums&section=markasread&marktype=forum&forumid={$forum_data['id']}&returntoforumid={$this->request['f']}&i=1" base="public"}" data-tooltip="{$this->lang->words['bi_markread']}" class='forum_marker'><if test="$forum_data['icon'] != '' AND $forum_data['icon'] !='0'">{$forum_data['icon']}<else /><img src='{$this->settings['img_url']}/f_icon.png' /></if></a> <script type='text/javascript'> <if test="$this->settings['dp3_fi_mode'] == 'replace'">var unreadIcon = "{$forum_data['icon_read']}";</if> ipb.global.registerMarker( "forum_img_{$forum_data['id']}", "{$forum_data['img_new_post']}", markerURL + "&forumid={$forum_data['id']}" ); </script> <else /> <if test="$forum_data['icon'] != '' AND $forum_data['icon'] !='0'">{$forum_data['icon']}<else /><img src='{$this->settings['img_url']}/f_icon_read.png' /></if> </if> </td> And don't forget to find: <a href="{parse url="showforum={$forum_data['id']}" seotitle="{$forum_data['name_seo']}" template="showforum" base="public"}" title='{$forum_data['name']}'>{$forum_data['name']}</a> change it to: <a href="{parse url="showforum={$forum_data['id']}" seotitle="{$forum_data['name_seo']}" template="showforum" base="public"}" title='{$forum_data['name']}'><if test="$forum_data['_name']">{$forum_data['_name']}<else />{$forum_data['name']}</if></a>
  13. Thank you Sanctuary, I'll add a link to your post in the first post. By the way, it seems, that some idiot is having fun with giving negative reputation here. Both my and your posts.
  14. I am sorry, it seems there is no easy way how to do it. Maybe externally via CSS...
  15. Greetings. In view of the fact that I had tried to find on the whole internet how to change position of Reputation Bar to the left side of posts and couldn't find it anywhere, now I know how to do it and here is the tutorial. Thanks to user Sanctuary, who told me how to change position of Like-button, so that I could easily find out how to change position of Rep-button. This tutorial shows how to move it to the left side of a post (see the screens below). If you would like to center it in the middle, see by Sanctuary. How to change position of Like button? Simply go to: ACP -> Look & Feel -> Your Skin -> Other Global Templates -> repButtons, find this: <div class='ipsLikeBar right clearfix' id='{$data['domCountId']}'> and replace it with: <div class='ipsLikeBar left clearfix' id='{$data['domCountId']}'> How to change position of Reputation buttons? Simply go to: ACP -> Look & Feel -> Your Skin -> Other Global Templates -> repButtons, find this: <div class='rep_bar clearfix <if test="pos:|:!$data['position'] || $data['position'] == 'right'">right</if>' id='{$data['domCountId']}'> and replace it with: <div class='rep_bar clearfix <if test="pos:|:!$data['position'] || $data['position'] == 'left'">left</if>' id='{$data['domCountId']}'>
  16. It's not entirely correct, however, thank you very much and +rep. The code above is related to LikeBox only. If anyone would like to change position of RepBar, change this (it is located in the same template as the code above --> repButtons): <div class='rep_bar clearfix <if test="pos:|:!$data['position'] || $data['position'] == 'right'">right</if>' id='{$data['domCountId']}'> to <div class='rep_bar clearfix <if test="pos:|:!$data['position'] || $data['position'] == 'left'">left</if>' id='{$data['domCountId']}'>
  17. Greetings, it's me again. Does anybody know how to move reputation button to the left?
  18. Yes, image is getting uploaded and it points to: my-site.nz/uploads/forumicons/icon.png Nevertheless, I've found out what the problem was - permissions. I went to my FTP, found folder called "forumicons" and changed it's CHMOD to 775, so that it could be displayed and launched publicly. Now, it's displaying correctly. Anyway, thanks for replies.
  19. Yes, I followed it. However, it doesn't matter - the problem is not in the code, it should display the image even without any code changes (the screenshot is from ACP). This is not how the hook works, it has it's own uploader.
  20. Hello. I have a little problem with modification called Forum Icons (v 2.0.0). Installation was successful, I've also made code changes. However, when I upload a icon, it shows me this: Any idea how to fix it? Thanks in advance.
×
×
  • Create New...