Home Forums WoodMart support forum PÁGINA CONTENIDAS CON SOCIAL MEDIA

PÁGINA CONTENIDAS CON SOCIAL MEDIA

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #290151

    DelopWeb
    Participant

    Hola.

    Queremos saber en cuantas página contiene las referencias a redes sociales? Nosotros hemos contado dos:
    – wp-content > themes > woodmart > inc > shortcodes
    – wp-content > themes > woodmart > inc > header-elements

    Gracias, saludos.

    #290287

    Hello,

    Your question is not clear enough. Please advise your purpose and I will guide you on how to configure.

    Best Regards

    #291083

    DelopWeb
    Participant

    Hola.

    El motivo de saber donde se sitúan los iconos de redes sociales es que estamos intentando hacer funcionar un tema hijo ya instalado, pero no funciona. Hay que personalizar el functions.php con la función que tenemos instalada?

    <?php

    function enqueue_styles_child_theme() {

    $parent_style = ‘parent-style’;
    $child_style = ‘child-style’;

    wp_enqueue_style( $parent_style,
    get_template_directory_uri() . ‘/style.css’ );

    wp_enqueue_style( $child_style,
    get_stylesheet_directory_uri() . ‘/style.css’,
    array( $parent_style ),
    wp_get_theme()->get(‘Version’)
    );
    }
    add_action( ‘wp_enqueue_scripts’, ‘enqueue_styles_child_theme’ );

    ?>

    En el archivo style.css tenemos:

    /*
    Theme Name: Woodmart Child
    Theme URI: http://nombre.com
    Description: Modificación Woodmart Child
    Author: Nombre
    Author URL: Web
    Template: woodmart
    Version: 1.0.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
    Text Domain: woodmart-child
    */

    La web se visualiza, pero no funciona el css ni las nuevas reglas php que queremos insertar, modificando las del tema padre.

    #291221

    Hello,

    Please find this file: woodmart/inc/shortcodes/social.php

    Then find this function: function woodmart_shortcode_social(

    Copy this function into the functions.php of the child theme and edit the social networks as per your needs.

    Best Regards

Viewing 4 posts - 1 through 4 (of 4 total)