Problem with Footer.php
-
Hello!
I have a problem with Footer.phpI found it in Editor,but I can’t seem to find how to edit the footer – I mean I would like to change POWERED BY (THEME) and WORDPRESS… I want to remove WordPress.
can you help me what to do ?
Thanks!THEME: POWERED BY PAЯABOLA & WORDPRESS.
so it’s PARABOLA. Tnx
-
Thanks but… I can’t do it -.-
I don’t know where to look for this
“Okay, so if you have access to a FTP client or anything to edit the file on the server,
go into the theme folder
parabola\includes\
Open up theme-functions.php”
I’m in the Filezilla …but I honestly don’t know what to do and where to search for it. Daaaaaaangg!
I understand that sentiment but the theme’s here are all free for editing per their GPL license and that removing of the links is fine.
Plus it doesn’t look like the OP is asking to remove the theme author.
This is how you do it,
- First create a Child Theme, so that all you have in your Child Theme folder is a “style.css” file
- Then create a “functions.php” file in your Child Theme folder, so that it’ll be sitting alongside your style.css file
- Then edit your functions.php file (from within your Child Theme) and put this code into it:
<?php /** * Footer info */ function parabola_child_site_info() { $parabolas = parabola_get_theme_options(); foreach ($parabolas as $key => $value) { ${"$key"} = $value ; } ?> <div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:11px;"> <?php _e('Powered by','parabola')?> <a target="_blank" href="<?php echo 'https://www.cryoutcreations.eu';?>" title="<?php echo 'Parabola Theme by '. 'Cryout Creations';?>"><?php echo 'Paяabola' ?></a> </div><!-- #site-info --> <?php } // parabola_site_info() add_action('cryout_footer_hook','parabola_child_site_info',12); ?>
Found it! !!!!! LOL! Took me some time. :D: D ??
Btw: I just want to change: “Designed by WORDPRESS” – because of privacy policy… A a friend of mine told me so and… don’t know. I will leave :”PARABOLA” alone… Or.. ?? ? what?
I really don’t get it :/
Justbobbsap, ignore what I said completely and refer to Andrew Nevin’s post about the custom child theme function.
okay, I will try do to so UrbanMusicHQ.
Thanks guys!
btw: it’s really hard for me to do all of this… I know it might be simple for Andrew..but it costs me a lof of time. :D:D
==============
Bah…this is soo hard for me. Style sheet… Damn! Sorry for cursing.
I just don’t know what to do :/ ! =I made the child theme in a zip file if you want with exactly what Andrew said….
[Redacted – Please don’t link to downloadable files, if you want to share large excerpts of code do so through PasteBin, otherwise just post the code here]
since you said it takes you a lot of time.
That child theme should work the css code is
/* Theme Name: Parabola Theme URI: https://www.cryoutcreations.eu/parabola Description: Welcome to a world of endless possibilities! Parabola awaits you with a huge assortment of theme settings that enable you to take a fully responsive, clean and elegant design to even newer heights. You can edit everything: all text and background colors, font families and sizes, site widths and layouts. Author: Cryout Creations Author URI: https://www.cryoutcreations.eu Template: parabola Version: 1.0.0 Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready Text Domain: parabola-child */ @import url("../parabola/style.css"); /* =Theme customization starts here -------------------------------------------------------------- *
If andrew can verify thats right… than all should be good.
Well,
I will see now,but could you tell me – where to install this and how :D?
From my https://www.example.com\cPanel or directly from my Dashboard?
If it is directly from my dashboard- what should I do :S?I just can’t get it still! It’s my first WordPress web-site and … I’m
-like crazy ?? if you know what I mean.Thanks again dude! It’s just really hard for me xD!
Also all this doesn’t remove what you want :/
it removes the line above the line you want….
Well, I’m not sure if yours isn’t better – UrbanmusicHQ ( I mean your method) because, this is too complicated, and I’ve created some Pages on my wordpress site + other stuff… And I don’t want to loose it :S… if u know what I mean
My method would be better as it does remove the line you want. But you when you update the theme you would need to re-do it again. so you would just do what i said originally if you want to remove the line you want.
If you look here
I removed it.
Yeah,that’s what I mean!
Btw I logged into my:
https://www.host-adress.com/cpanel and I went in to File managing and now I’m curious how to do it to sound like that:
POWERED BY PARABOLA & DESIGNED BY …. MY NAME .. (for example)
what do I have to do with this code to post my name instead of WordPress? Thanks!
/**
* Site info
*/
function parabola_site_info() {
$parabolas = parabola_get_theme_options();
foreach ($parabolas as $key => $value) { ${“$key”} = $value ; } ?>
<div style=”text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:11px;”>
<?php _e(‘Powered by’,’parabola’)?> ” title=”<?php echo ‘Parabola Theme by ‘.
‘Cryout Creations’;?>”><?php echo ‘Paяabola’ ?> & “
title=”<?php esc_attr_e(‘Semantic Personal Publishing Platform’, ‘parabola’); ?>”> <?php printf(‘ %s.’, ‘WordPress’ ); ?>
</div><!– #site-info –>
<?phpI did it dude!
Thanks a lot of times ?? !
- The topic ‘Problem with Footer.php’ is closed to new replies.