Jump to content
WebFlake

AntiMetaman

Apprentice
  • Posts

    64
  • Joined

  • Last visited

  • Days Won

    3

Community Answers

  1. AntiMetaman's post in Text and Logo in ipsfocus theme was marked as the answer   
    This solution works the best and takes the logo and text from the settings. You can use html tags to change font and format of the title.
    Replace the core->front->log with this:
    <a href='{setting="base_url"}' class='logo' accesskey='1'> {{if \IPS\Theme::i()->logo['front']['url'] !== null }} {{$logo = \IPS\File::get( 'core_Theme', \IPS\Theme::i()->logo['front']['url'] )->url;}} <img src="{$logo}" alt='{setting="board_name" escape="true"}' /> {{endif}} <span> <span class='logo-name'>{{if theme.focus_logo}}{theme="focus_logo"}{{else}}{setting="board_name"}{{endif}}</span> {{if theme.focus_slogan}}<span class='logo-slogan'>{theme="focus_slogan"}</span>{{endif}} </span> </a>  
  2. AntiMetaman's post in Stuck at 4.2.2. Cannot upgrade to 4.2.4. was marked as the answer   
    OMG!! I found what the issue was. The ftp server I was connecting to was the wrong one!  I recently upgraded my VPS server, so they changed the ip address but forgot to update the DNS servers to point to that ip address. This means all the files I've been uploading this whole time were to another server and that's why it was saying there's nothing to upgrade since literally there isn't! Everything works guys, sorry for all the trouble!
  3. AntiMetaman's post in Help! Core_Members crashed was marked as the answer   
    I am happy to report that I've fixed it. All I had to do was repair the mySQL database via cpanel. This did the trick. Apparently, I had a surge of member registrations that overloaded the server and caused the mySQL member_core to crash.
  4. AntiMetaman's post in How to add reactions to a 4.1.x theme? was marked as the answer   
    I have fixed it myself.
    Go to: 
    Forums > Front > Topics > post Core > Front > Global > comment Core > Front > Statuses > statusReply Then simply replace this:
    {{if $comment instanceof \IPS\Content\Reputation and settings.reputation_enabled}} {template="reputation" group="global" app="core" params="$comment, 'ipsPos_right ipsResponsive_noFloat'"} {{endif}} with this:
    {{if \IPS\IPS::classUsesTrait( $comment, 'IPS\Content\Reactable' ) and settings.reputation_enabled}} {template="reputation" group="global" app="core" params="$comment"} {{endif}} That's it and your 4.1.x theme is updated to 4.2. That simple. This adds reactions to the posts on the forums. There are other minor changes but reactions is the major one. Other differences are hardly noticeable for me anyways.
     
    You can close this thread. Problem solved.
  5. AntiMetaman's post in Profile error was marked as the answer   
    I fixed it! It was because the latest Group Color on User Link 9, didn't work properly. I downgraded to version 8 and everything works like a charm now!
  6. AntiMetaman's post in Error EX0 upon registering was marked as the answer   
    For anyone who might be having this error, the culprit was "Classfields"!! Just disabling that fixes everything!
×
×
  • Create New...