• Hi, I’m from spain and here we have to put a link to a page with privacy policy in ours website. I want to have the privacy policy on the footer of my web. In the black bar on the footer in the right of copyright. How I can do it? My web in airinrojas.com.

    Thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Kathryn Presner

    (@zoonini)

    You can create a child theme and modify the wording in the footer file to add a link to your privacy policy page: footer.php

    These are the lines you’ll want to replace with your own HTML:

    <a href="https://www.ads-software.com/" title="<?php esc_attr_e( 'A Semantic Personal Publishing Platform', 'sela' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'sela' ), 'WordPress' ); ?></a>
    <span class="sep"> | </span>
    <?php printf( __( 'Theme: %1$s by %2$s.', 'sela' ), 'sela', '<a href="https://wordpress.com/themes/sela" rel="designer">WordPress.com</a>' ); ?>

    Using a child theme means your tweaks won’t be overwritten when updating the theme. Here are some guides in case you haven’t made one before:

    https://codex.www.ads-software.com/Child_Themes
    https://op111.net/53/

    Thread Starter airinrojas

    (@airinrojas)

    Thanks. i’ve already a theme child intaled, and I already change it. now I wan to add the link to privacy police, but with the code you game Is not working. I already write this code:

    .site-info:before {
    visibility: visible;
    content: “COPYRIGHT ? 2015 Airin Rojas”;
    display: block;
    }

    Can you game me the code css that i have to write to have in the left part of my footer to have the link to privacy police?

    Thanks in advance.

    Moderator Kathryn Presner

    (@zoonini)

    You can’t add links within CSS so you’ll need to modify the footer file itself, making the change as I mentioned above. This type of change can’t be done with CSS alone.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Privacy policy on Sela’ is closed to new replies.