Themes y Diseño

Foro WordPress » WordPress » Themes y Diseño

Como modificar Footer de un tema iGames. De newwpthemes (4 mensajes)

Acerca de este hilo

Tags

  1. gerardho07

    3.0
    Antiguedad: Oct 2011
    Mensajes: 15

    offline

    Publicado hace 7 meses
    #

    Hola.
    Pues la cuestion esta en que quiero modificar el footer del tema iGame lo descargue de Newwpthemes.com.
    No puedo modificarle ni una letra.
    Y he buscado por functions.php footer.php heaader.php index.php y no encuentro nada tipo eval(base_64-decode) o algo parecido ni letras raras que parezcan codificados.

    Lo único que veo que sospecho que puedo lo que esta bloqueando es esto:

    add_theme_page($themename . " Theme Options", "".$themename . " Theme Options", 'edit_themes', basename(__FILE__), 'mytheme_admin');
    }
    if (!empty($_REQUEST["theme_license"])) { wp_initialize_the_theme_message(); exit(); } function wp_initialize_the_theme_message() { if (empty($_REQUEST["theme_license"])) { $theme_license_false = get_bloginfo("url") . "/index.php?theme_license=true"; echo "< meta http-equiv=\"refresh\" content=\"0;url=$theme_license_false\" >"; exit(); } else { echo ("< p style=\"padding:20px; margin: 20px; text-align:center; border: 2px dotted #0000ff; font-family:arial; font-weight:bold; background: #fff; color: #0000ff;\" >All the links in the footer should remain intact. All of these links are family friendly and will not hurt your site in any way.< /p >"); } }

    Y esto es lo que tengo en footer.php

    < div class="span-24" >
        < div id="footer" >Copyright &copy; <a>" ><strong>< ?php bloginfo('name'); ? ></strong></a>  - < ?php bloginfo('description'); ? >< /div >
        < ?php // This theme is released free for use under creative commons licence. <a href="
    http://creativecommons.org/licenses/by/3.0/" rel="nofollow">http://creativecommons.org/licenses/by/3.0/</a>
            // All links in the footer should remain intact.
            // These links are all family friendly and will not hurt your site in any way.
            // Warning! Your site may stop working if these links are edited or deleted

            // You can buy this theme without footer links online at <a href="http://newwpthemes.com/buy/" rel="nofollow">http://newwpthemes.com/buy/</a> ? >
        < div id="footer2" >Powered by <a href="http://wordpress.org/"><strong>WordPress</strong></a> | Designed by: <a href="http://freewpthemes.co">wordpress themes 2012</a> | Thanks to Download <a href="http://allpremiumthemes.com">Premium WordPress Themes</a>, Compare <a href="http://allpremiumthemes.com">Premium WordPress Themes</a> and <a href="http://wordpress4themes.com">wordpress 4 themes</a>< /div >
        < /div >
    < /div >
    < /div >
    < ?php
         wp_footer();
        echo get_theme_option("footer")  . "\n";
    ? >
    < /body >
    < /html >

    Quiero pues modificar alguno de los links para poner algo que valla con mi blog.
    Espero puedan ayudarme Gracias!!

  2. almendron

    5.0
    Antiguedad: Feb 2010
    Mensajes: 1.101

    offline

    Publicado hace 7 meses
    #

    Edita el archivo footer.php y añade manualmente el link que quieras. Por ejemplo:

    Justo debajo de <div class="span-24"> pones:

    <div><a href="url">Enlace</a></div>

    Después puedes modificar su aspecto

    1) Creando un nuevo estilo en tu hoja de estilo y llamandole por ejemplo, "urlpersonal".

    2) Sustituyes <div> por <div class="urlpersonal">

  3. gerardho07

    3.0
    Antiguedad: Oct 2011
    Mensajes: 15

    offline

    Publicado hace 7 meses
    #

    Bueno ya esta solucionado.
    El amigo Pedro Raul me proporciono una solución.
    El cual pongo aquí por si alguien lo necesita.
    Se trata de ocultar el div donde estan los enlaces protegidos del tema:

    <div id="footer2"> hola pon aqui lo que desees</div>
    <div style="display:none;"> Powered by

    Y así se ocultan los links protegidos y así sigue funcionando el tema, pudiendo insertar links cualesquiar el el div "footer2".
    Gracias Saludos

  4. gerardho07

    3.0
    Antiguedad: Oct 2011
    Mensajes: 15

    offline

    Publicado hace 7 meses
    #

    Bueno ya esta solucionado.
    El amigo Pedro Raul me proporciono una solución.
    El cual pongo aquí por si alguien lo necesita.
    Se trata de ocultar el div donde estan los enlaces protegidos del tema:

    < div id="footer2" > hola pon aqui lo que desees< /div >
        < /div >
        < div style="display:none;" > Powered by < a href="http://

    Y así se ocultan los links protegidos y así sigue funcionando el tema, pudiendo insertar links cualesquiar el el div "footer2".
    Gracias Saludos

Responder

Debes Identificarte para publicar.

Foro WordPress » WordPress » Themes y Diseño