Essential theme - credit in footer

Re: Essential theme - credit in footer

by Richard Oelmann -
Number of replies: 10
Picture of Core developers Picture of Plugin developers Picture of Testers

Take out the space after the #

#page

In reply to Richard Oelmann

Re: Essential theme - credit in footer

by Alexey Piguzov -

I have so:

#page-footer .thecredit { visibility: hidden }
Does not work! I'm desperate!
At the same time to upgrade everything worked...
In reply to Alexey Piguzov

Re: Essential theme - credit in footer

by Fernando Acedo -
Picture of Plugin developers Picture of Testers

Try this:

#page-footer .footercredit {
    visibility: hidden;
}
In reply to Alexey Piguzov

Re: Essential theme - credit in footer

by Mary Evans -
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers Picture of Testers

The fix is this...

#page-footer .thecredit { visibility: hidden; }

Average of ratings: Useful (1)
In reply to Mary Evans

Re: Essential theme - credit in footer

by Richard Oelmann -
Picture of Core developers Picture of Plugin developers Picture of Testers

For future reference (mine as much as anyone elses - and with a slap on my own wrist for not checking which version!): Essential2.8 as requested is .thecredit while Essential2.9 (currently in Beta) appears to be .themecredit

Advice for future readers - use a tool such as firebug to determine the class if it gets changed again ;)

In reply to Mary Evans

Re: Essential theme - credit in footer

by Fernando Acedo -
Picture of Plugin developers Picture of Testers

@Mary,

just curious to verify what is the real class of the div. I never doubt of your posts but today i used the footercredit class. So I verified some past versions and found:

Version 2.814 and older

#page-footer .footercredit {visibility: hidden;}

 

In version 2.817 was:

#page-footer .thecredit { visibility: hidden; }

 

And I don't see the link in version 2.907 Beta (Thanks Gareth Yes)

 

@Graham, 

If you don't know the theme version, apply both or just wait until next update.

 

 

In reply to Fernando Acedo

Re: Essential theme - credit in footer

by Richard Oelmann -
Picture of Core developers Picture of Plugin developers Picture of Testers

in 2.9.0.6 and 2.9.0.7 its .themecredit, but its been coded slightly differently

    public function standard_footer_html() {
        $output = parent::standard_footer_html();
        $output .= html_writer::start_tag('div', array ('class' => 'themecredit')).
                   get_string('credit', 'theme_essential').
                   html_writer::link('//about.me/gjbarnard', 'Gareth J Barnard', array('target' => '_blank')).
                   html_writer::end_tag('div');

        return $output;
    }

In reply to Fernando Acedo

Re: Essential theme - credit in footer

by Alexey Piguzov -

Thank you, but it does not work!
Version theme_essential 2.8.1.8 (Build: 2015061902)
Moodle 2.8.7 (Build: 20150706)
FireBug:
<div id="yui_3_17_2_2_1441347531108_286" class="thecredit row-fluid">

In reply to Alexey Piguzov

Re: Essential theme - credit in footer

by Steve Ward -

I updated Essential theme to 2.8.1.8 today and I too got the footer message reappear.

I'd previously hidden it with:   #page-footer .thecredit { visibility: hidden; }


So it appears something has changed in this latest version.

In reply to Steve Ward

Re: Essential theme - credit in footer

by Just H -

"If" you still want to remove it, along with your custom CSS, comment out line 234 in Essential's lib.php i.e.

// $customcss = str_replace('thecredit', 'themepagefooter', $customcss);

Average of ratings: Useful (1)
In reply to Alexey Piguzov

Re: Essential theme - credit in footer

by Mary Evans -
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers Picture of Testers

The dot in front of credit should NOT have a space after it!