• Resolved poker1970

    (@poker1970)


    I want to change the footer text from

    · ? 2015 Fotograf G?ran Landstr?m · Designed by Themes & Co ·

    to

    · ? 2010 – 2015 Fotograf G?ran Landstr?m – emailadress and phonenumber ·

    where do i change this text?
    do i need to download my functions.php via FTP and edit it there?

    Thanks for the help in advanced, my gray hair is not that obvious anymore.

Viewing 15 replies - 1 through 15 (of 19 total)
  • Hey there poker1970,

    Hope you’re well! ??

    First, Use child themes for any customisation you will make. Read more about it here: https://codex.www.ads-software.com/Child_Themes

    Put this code inside your child theme’s function.php or use a plugin like https://www.ads-software.com/plugins/code-snippets/

    add_filter( 'tc_copyright_link', 'tc_fotograf_copyright_link' );
    function tc_fotograf_copyright_link() {
    	    $fotograf_ossum_text = sprintf(' &copy; 2010 - 2015 <a href="%1$s" title="G?ran Landstr?m" rel="bookmark"> G?ran Landstr?m</a> -', esc_url( home_url() ) );
    	    return $fotograf_ossum_text;
    }
    
    add_filter( 'tc_credit_link', 'tc_fotograf_credit_link' );
    function tc_fotograf_credit_link() {
    		$fotograf_ossum_text = 'emailadress and phonenumber';
    	    return $fotograf_ossum_text;
    }

    All you just need to change is the emailadress and phonenumber don’t omit the quotation mark as it is required. ??

    Hope it helps! ??

    Take care,
    Calvin

    Thread Starter poker1970

    (@poker1970)

    hi, ive post a similar post in the cusomizr section.
    Im not sure where to find it where else on my FTP of course.

    Is this function.php specific to the customizr theme or is it changeable of many different themes?

    Is it also advisable to download the snippet plugin?

    Please don’t post the same question in more than one place – it makes it much harder for forum volunteers to help you – I’m closing your other thread even though it’s in the correct place – because Calvin’s post here is more useful than the answer you got in the other thread.

    Thread Starter poker1970

    (@poker1970)

    My mistake
    I thought i was in the right section of theme and i couldnt erase this post though.

    No worries – it happens :). I’m sure Calvin will reply here and anyone else will be able to get here via your other thread. Next time, just put a second post here saying you’ve reposted it in the right place and a moderator can close or delete the duplicate.

    Thread Starter poker1970

    (@poker1970)

    Thanks
    In the mean time i′m reading about wordpress features.
    But it would be appreciated to change the topic/subject to “change the footer text – customizr” ?
    Even if its not a specific theme Q it might get easier to other ppl want help.

    Thread Starter poker1970

    (@poker1970)

    hmm well its IS easy with the plugin and just copy and paste..
    But i want to understand a little bit more of CSS.

    The text is limited to the width, so the text going weird.

    like

    ” 2010 – 2015 G?ran Landstr?m emailadress
    phonenumber”

    What i would like to do is to have my text on one single line and also add “photographer”

    Hey there poker1970,

    Hope you’re well! ??

    Hmm, odd cause I got all of those text in one line as you can see here: https://prntscr.com/5u8jm2 . Perhaps you can share your site’s url ( if it’s a live site ) or share some screenshot so I can see your setup and why is it making two lines.

    Looking forward for your reply! ??

    Take care,
    Calvin

    Thread Starter poker1970

    (@poker1970)

    Hi

    Here′s the screen shot.

    https://www.ladda-upp.se/bilder/mppgfpmoevbccx

    As you can see it′s on two lines.

    Is it possible to increase the width?

    I′ve installed the code snippet aswell.

    add_filter( 'tc_copyright_link', 'tc_fotograf_copyright_link' );
    function tc_fotograf_copyright_link() {
    	    $fotograf_ossum_text = sprintf(' &copy; 2010 - 2015 <a href="%1$s" title="G?ran Landstr?m" rel="bookmark">G?ran Landstr?m</a> -', esc_url( home_url() ) );
    	    return $fotograf_ossum_text;
    }
    
    add_filter( 'tc_credit_link', 'tc_fotograf_credit_link' );
    function tc_fotograf_credit_link() {
    		$fotograf_ossum_text = 'e-post: [email protected] - ringa: +4670xxxxxxx';
    	    return $fotograf_ossum_text;
    	#footer .widget-area { width: 100%; }
    	}

    Hey there poker1970,

    Working with Calvin here ??

    You can increase the width of the element with some custom CSS. In order to provide the correct CSS for it would be the best to post link to your site so we can take a look.

    Best regards,
    Bojan

    Thread Starter poker1970

    (@poker1970)

    Hi there.

    My site isnt online yet for the public, therefore i have a “coming soon” plugin called Ultimate Coming Soon Page.

    So is there a another make my site visible? or other ways.

    the code above is coming from you which i′ve add

    #footer .widget-area { width: 100%; }

    The % was set to 30 %.

    Hey again,

    Try to increase the % to see if that helps. If it doesn’t help, you could disable the plugin for couple of minutes so I can take a look ??

    Cheers,
    Bojan

    Thread Starter poker1970

    (@poker1970)

    I will deactivate it and the % is set to 100% and that didnt helped at all.

    I′ve send you a private message to its site.

    the site′s launch up is set to 1th of feb 2015.

    Thread Starter poker1970

    (@poker1970)

    It wasnt possible to send priv mess
    But if you search for wilmermedia there will be a toplink to the site.

    Hey again,

    Managed to find your site, please try adding the following CSS code to Appearance >> Advanced Options >> Custom CSS:

    .span4.credits {
    width: 37%;
    }
    
    .span4.backtop {
    width: 25%;
    }

    This should make the text in one line. Hope this helps ??

    Cheers,
    Bojan

Viewing 15 replies - 1 through 15 (of 19 total)
  • The topic ‘change the footer text’ is closed to new replies.