Okay
  Public Ticket #1752385
Questions 3
Closed

Comments

  • EticaTerra started the conversation

    1. In web page there is logo icon that should re-direct to home page. Nevertheless that is not happening. Could you assist me? (e.j. https://eticaterra.com/product-category/almacen/ ) (Attached Q.1. Icon that should redirect to home underlined)

    2. In market Place I would like to have 2 categories on the same screen. Ej. after "Cosechas" I would like to have a banner/separator indicating that "almacén" products are going to be shown. Still I would like to have on the header the two different "links" . (Attached Q2.)

    3. On Appearance, widget option. https://eticaterra.com/wp-admin/widgets.php I have different Footer options. In case I choose to have Bakery Footer for example , I would like to change the dimension (width) of the different footer sections (ej. Footer Bakery 1- 50% of the width, and the three others (Footer Bakery 1-2-3 occupy rest 50%). (Attached Q3). How can I do this?

    Looking forward to your response,

    Daniel

  •  608
    WordPress replied

    Hi,

    1. You should have additional css: 

    .header-v9 .header-logo {

    z-index: 99;

    }

    2. Would you mind describing more details about that ?

    3. There is 1 way to do that:

    Active child theme

    Copy file footer 6 from footers/footer_6.php in current theme to child theme like exact directory.

    After that, Edit some lines of codes, see the picture, then you can edit the width size.

    https://prnt.sc/l7s9cy

    Best Regard.



  • EticaTerra replied

    Hi, thanks for the reply.

    Points 1 & 3 are ok. 

    Regarding point 2: What we want to have in the woocommerce category page is, current category items on top (as it is now). Then add any kind of separator. Then list the rest of the woocommerce products. Let me know if this is still unclear.

    Thanks in advanced!

  •  608
    WordPress replied

    Hi,

    Thing you want to have in category page can't be done. You just only add the rest of  woocommerce products is in home page.

    Thanks

    Best regard.


  • EticaTerra replied

    Thanks for the response.. Isn´t there a way to add specific widgets in category and checkout page?

  •  608
    WordPress replied

    Hi,

    Yes, there is one way that is creating 2 widgets:  category widget and checkout widget, by adding these lines of code in child theme:

    This is an example for register 1 widget:

    <?php
    add_action( 'widgets_init', 'ci_widgets_init' );
        if ( ! function_exists( 'ci_widgets_init' ) ) :    
            function ci_widgets_init() {        
                register_sidebar( array(            
                    'name'          => __( 'Checkout Sidebar', 'ci_theme'),
                    'id'            => 'blog-sidebar',            
                    'description'   => __( 'The list of widgets assigned here will appear in your blog posts.', 'ci_theme'),            
                    'before_widget' => '<aside id="%1$s" class="widget %2$s group">',            'after_widget'  => '</aside>',            
                    'before_title'  => '<h3 class="widget-title"><span>',            
                    'after_title'   => '</span></h3>',        
            ) 
        );    
    }

    You can use Shop sidebar for category widget instead of register a new widget for it.

    Thanks

    Kind regard.