Home Forums Themes Support Claue Change Footer

Viewing 3 reply threads
  • Author
    Posts
    • #25088

      Hi,

      I would like to slightly change the design of the footer. I know that I can change the columns no problem. I wish to know how to add a row above and a row below.

      Above I wish to have a Social Icon for Facebook and Instagram

      Below I wish to have Secure payments via followed by an image of payment methods. See attached image with what I would like it to look like.

      Attachments:
      You must be logged in to view attached files.
    • #25094

      Hi Alex,

      Could you tell me which footer layout you choose for your site. I will help you customize.

      Kind regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

    • #25095

      My site has the option of 4 columns selected currently.

      Attachments:
      You must be logged in to view attached files.
    • #25102

      Hi,

      1. Please download attach file and extract to claue-child > views > footer

      2. Add below code to claue-child > functions.php

      function jas_claue_child_register_sidebars() {
              register_sidebar(
                  array(
                      'name'          => esc_html__( 'Footer Top Sidebar', 'claue' ),
                      'id'            => 'footer-top-sidebar',
                      'description'   => esc_html__( 'Footer Top Sidebar', 'claue' ),
                      'before_widget' => '<aside id="%1$s" class="widget %2$s">',
                      'after_widget'  => '</aside>',
                      'before_title'  => '<h4 class="widget-title fwm">',
                      'after_title'   => '</h4>',
                  )
              );
              register_sidebar(
                  array(
                      'name'          => esc_html__( 'Footer Bottom Sidebar', 'claue' ),
                      'id'            => 'footer-bottom-sidebar',
                      'description'   => esc_html__( 'Footer Bottom Sidebar', 'claue' ),
                      'before_widget' => '<aside id="%1$s" class="widget %2$s">',
                      'after_widget'  => '</aside>',
                      'before_title'  => '<h4 class="widget-title fwm">',
                      'after_title'   => '</h4>',
                  )
              );
          }
          add_action( 'widgets_init', 'jas_claue_child_register_sidebars' );

      After that you can create new widget for Footer Top Sidebar and Footer Bottom Sidebar

      Kind regards

      Attachments:
      You must be logged in to view attached files.

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

Viewing 3 reply threads

You must be logged in to reply to this topic.