Jump to content
  • Sign Up

John

Contributor
  • Posts

    116
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by John

  1. remove display: table-cell; from it and try it should work and yeah like that
  2. hmm just checked it with inspect element seems display: table-cell is affecting that part #ipsLayout_mainArea, #ipsLayout_sidebar { background: #fff; display: table-cell; height: 100%; vertical-align: top; {prefix="box-sizing" value="border-box"} }i can only suggest u use custom.css and add the above without #ipsLayout_sidebar and remove display:table-cell from the code it might fix the problem and not affect the sidebar if done on the custom.css
  3. i believe they used IP.Content to make those pages if your ipboard license supports IP.Content you should be able to install and use the app on ur website
  4. try this <dl class="pairjustified"><li class='ipsResponsive_hidePhone'><dt style="float:left; margin-left:30px">Rep:</dt><dd style="float:right; margin-right:30px">{template="reputationBadge" group="global" app="core" params="$comment->author()"}</dd></li></dl><br> <dl class="pairjustified"><li class='ipsType_light'><dt style="float:left; margin-left:30px">Posts:</dt><dd style="float:right; margin-right:30px">{$comment->author()->member_posts}</dd></li></dl> look for and replace the below code with the code above <li class='ipsResponsive_hidePhone'>{template="reputationBadge" group="global" app="core" params="$comment->author()"}</li> <li class='ipsType_light'>{lang="member_post_count" pluralize="$comment->author()->member_posts"}</li> it should look like this
  5. seeing as ur willing to pay then now when in templates go to forums > topics > postContainer and look for {{if \IPS\Member\Group::load( $comment->author()->member_group_id )->g_icon }} <li><img src='{file="$comment->author()->group['g_icon']" extension="core_Theme"}' alt='' class='cAuthorGroupIcon'></li> {{endif}} and then u place it below <li>{expression="\IPS\Member\Group::load( $comment->author()->member_group_id )->formattedName" raw="true"}</li> result will be
  6. ​ i just learned something there man, thanks, i manually edited misc.css and added my css part in it but u can add the css part in there as well and it will do as u said, however doesnt change the source of the avatar used on the authorpane, that source is a square or the same link as i showed u above which is a thumb of the original u uploaded, stretching a square image to the dimensions of a rectangle doesnt always look good, what my edit above does is totally different it changes the image source to that of what was uploaded the original dimensions and uses it on the authorpane what we do with the css is just shrink the width or expand it to whatever we want while keeping the height free instead of having a square outcome
  7. ​this is for 4.x of IP.Board as far as i know the reflection avatar mod is for 3.4.x http://community.invisionpower.com/files/file/6083-nb34-reflection-avatars/ as u can see the path is Downloads > Previous Versions ​ it can? im not aware of any other way to use the original avatar that was uploaded, on your authorpane, as if u run inspect element u will get http://webflake.sx/uploads/profile/photo-thumb-173.png this as the image used and not the original file u uploaded, thats cause IP.Board crops the image and uses the crop image instead and if ur just doing css edit it will only modify that image size which is square and not the original if it were rectangle dimensions, my tut allows u to use the original in ur authorpane instead of a crop
  8. updated the code again seems Default avatar was broken in the code when u used the code above now it should work like normal Step:4
  9. ​edited the code a bit read Step:4 above and it should work now
  10. Step:1 Go to ACP > Customization > Themes and Select the skin you wish to edit Step: 2 Find postContainer in the templates Step: 3 Look for <li class='cAuthorPane_photo'> {template="userPhoto" app="core" group="global" params="$comment->author(), 'large', $comment->warningRef()"} </li> Step: 4 Replace it with <li class='cAuthorPane_photo'> {template="userPhoto2" app="core" group="global" params="$comment->author(), 'variable', $comment->warningRef()"} </li> Step: 5 Create New HTML Template Name: UserPhoto2 Variables: $member, $size='small', $warningRef=NULL, $classes='', $hovercard=TRUE Location: Add To an existing location Existing Location: front Group: Add to an existing group Existing Group: global Application: System Step 6: Find HTML template "UserPhoto2" and paste the following code into it {{if $member->member_id and \IPS\Member::loggedIn()->canAccessModule( \IPS\Application\Module::get( 'core', 'members' ) )}} {{$memberURL = ( $warningRef ) ? $member->url()->setQueryString( 'wr', $warningRef ) : $member->url();}} <a href="{$memberURL}" {{if $hovercard}}data-ipsHover data-ipsHover-target="{$memberURL->setQueryString( 'do', 'hovercard' )}"{{endif}} class="ipsUserPhoto ipsUserPhoto_{$size}{{if $classes}} {$classes}{{endif}}" title="{lang="view_user_profile" sprintf="$member->name"}"> <img src='{{if $member->pp_main_photo}}{file="$member->pp_main_photo"}{{else}}{file="$member->photo"}{{endif}}' alt='{$member->name}'> </a> {{else}} <span class='ipsUserPhoto ipsUserPhoto_{$size} {{if $classes}}{$classes}{{endif}}'> <img src='{file="$member->photo"}' alt='{$member->name}'> </span> {{endif}} Step: 7 Find custom.css and Add this line of code below .ipsUserPhoto_variable img, img.ipsUserPhoto_variable, .ipsUserPhoto_variable:after { width: 170px; {{if theme.rounded_photos}} border-radius: 0px; {{endif}} } after you have completed all the steps above the results should be like this below
  11. u can remove it manually in phpmyadmin look for the members_warn_logs after logging into it and selecting the sql table ur ipboard database is installed on and remove the warning u want, u just need to know these tabs wl_member, wl_moderator, wl_reason and possibly wl_points in order to remove specific warning from the table, basically the member id of the person warned else if u delete them all everyone will no longer have warnings, id of the moderator that issued the warning, u may only want to remove a specific warning on the member this is helpful for that and the other two is self explanatory by its name it just gives u the idea
  12. its a .tar file u just upload it to the Applications in the System Tab under Site Features on the ACP
  13. try another hook that changes ur group color the first link is most recommended it shouldnt give u any conflicts and places the group color on the username
  14. having the latest version of anything is most of the times better, its just means, newer apps, newer skins, more features and more possibilities, the one throwback is that not alot of stuff is available for it yet, i mean developers are upgrading their apps to be compatible with version 4.x some probably dropped IP.Board all together but still upgrading apps takes time, i'd say its best to upgrade but this should be done when more content is available for 4.x else alot of Webflake's current features will become void/unusable
  15. u need that ^ and for the special bbcode popup ACP > Look & Feel > Manage Skin Sets & Templates > {current skin} ipb_ckeditor.css however u will need to do inspect element on the page see which code is being used from the css and edit it accordingly, suggest using google chrome and changing the values after u do inspect element too see what is affecting the bbcode popup
  16. care to elaborate how u "solved" it mate, atleast if someone happens to have the same problem as u they can look back and see a solution?
  17. u might need to provide a link to ur website to confirm however perfect blue was ripped from webflake from what i saw on one site so did a search in google and it said PerfectBlue (WebFlake RIP) | "Website Name" i just replaced the Website Name as to not advertise where i saw this
  18. that skin looks like a rip from webflake which
  19. for the first part just go into Member > Member Groups > Manage Member Groups Select the Member Group after wards click the Global Tab and look for Reputation you can then limit how much is given within 24 hrs for each member group for the second one i dont understand u want to make users not rep themselves? meaning like liking their own posts? if so System Settings > Members > Reputation System and look for Allow users to give themselves reputation and select No for the second one i dont understand u want to make users not rep themselves? meaning like liking their own posts? if so System Settings > Members > Reputation System and look for Allow users to give themselves reputation and select No
  20. did u try recaching and rebuild in the acp? its located in Look & Feel > Template Tools if that doesnt work try rebuilding and cache management in System Settings > Tools & Settings > Cache Management > Recache All and if that doesnt work reinstall the hook see if its compatible with the skin if not then it must be a conflict with the hook and a script on the skin so thats why u arent getting it working
  21. well my precious time was wasted on this sigh (u didnt even reply after linking the forum website nor even come online on ur own website which i waited for 1hr for u to atleast make appearance) i dont think i can help u any further now man, its now all up to u, read my instructions carefully and proceed it works i tested it ample amount of times, if not then wait for someone else willing to help, if not my final suggestion switch forum software cause clearly u arent capable of handling IP.Board or the latter btw please remove my account from ur website when u do come online
  22. @TheChaoz all IP.Boards are the same whether its in a different language or not i just have to follow the same steps i did before to unhide my settings but like i said its only if u are up for it mate
  23. @TheChaoz tho i normally wouldnt offer live support i think it best if i do this for u, if u are up for it, can u make a temp admin account and message me the details via pm then turn on the developers mode afterwards tell me and i will do it for you on ur website well that is if u are up for it if not then all i can say is attempt it the first step over again see if it works
  24. u needed to log into admin first http://mysite/forum/admin <--------- unhide it then undo the developers mode well the other is not exactly guaranteed to work but u can try it when inside of ACP u will see something like this for the url link in ur browser http://mysite/forum/admin/index.php?adsess=29a1845074ea43aa9546330a5856e367&app=core add to the &app=core &&module=settings&section=settings&&do=settinggroup_showedit&id=29 so the full url is suppose to look something like http://mysite/forum/admin/index.php?adsess=29a1845074ea43aa9546330a5856e367&app=core&&module=settings&section=settings&&do=settinggroup_showedit&id=29 #note the ?adsess=29a1845074ea43aa9546330a5856e367 will not be the same but it doesnt matter just add the extension i have above to the browser and you should be in the setting to edit it however im still not guaranteeing it will work but its still worth the test
×
×
  • Create New...