Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #703518

    Hi guys. I need to Remove “Archive for category.” (and show only category title). For example Now I have
    Archive for category: Negocios
    I need to show only Negocios.

    Thank you!

    #703554

    Hey marilusnm,

    Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)

    Best regards,
    Jordan

    #704076

    Hi, I’m working on localhost. I will put the site online tomorrow, and I will show you what I mean. Thank you

    #704094

    Hi again, the site is online!

    #704403

    Hi!

    1- Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_title_args', 'avia_fix_category_title', 10, 2);
    function avia_fix_category_title($args,$id)
    {
        if (is_category)
        {
            $args['title'] = single_cat_title('',false);
        }
        return $args;
    }

    2- Please go to Appearance > Widgets and add empty text widgets to your footer widget areas if you would not like to display default widgets. You can also turn off footer widgets in Enfold theme options > Footer tab.

    Regards,
    Yigit

    #704431

    Hi Yigit!! Could you help me to remove “INTERESTING LINKS
    Here are some interesting links for you! Enjoy your stay :)” too?

    thank you so much!

    #704435

    Hi!

    Login credentials are not working for me, however please see my answer #2 above. That is to remove default widget from footer widget area :)

    Best regards,
    Yigit

    #704441

    Perfect, if I delete the widget and erase the text! Thanks! The issue is that I do not see the footer …
    I need a footer..

    P.s. I dont know happened to the password but I changed again por the same

    #704442

    Yigit, could you please help me with this other post too?

    I need to understand how to do use it.
    thank you so much!

    #704842

    Hey!

    You can simply go to Appearnce > Widgets and add Widgets to your Footer widget areas to display your footer. If that is not what you meant, please elaborate :)

    Regards,
    Yigit

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.