Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #917312

    I have found that product archive page functionality is a little weird in Enfold.

    When I visit an Attribute archive (see hidden link) the title of the page is ‘Shop’ rather than the attribute name.

    Can this be fixed?

    Thanks,
    Jason

    #917376

    Hey Jason,

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    #917618

    Sorry I cannot as privacy laws in my country prevent me giving out access to my customer data. You should be able to reproduce this problem on a vanilla install. If you need me to provide any specific logs, settings or screenshots just ask.

    Thanks,
    Jason

    #917784

    Hi Jason,

    I looked at my installation, looks like it is the intended behavior.

    Best regards,
    Victoria

    #917811

    So you reproduced the issue? How would we go about making the title the attribute value?

    Thanks,
    Jason

    #917982

    Hi,

    What Victoria says is that this is how things work out on Enfold.
    If you need an other bahvour, you would need to hire someone so they can help you out.

    Best regards,
    Basilis

    #918053

    Sorry guys but this doesn’t make any sense.

    Category pages use the category title for example. why would attribute pages be different?

    Cheers,
    Jason

    #918198

    Hi Jason,

    Here is a thread for you to consider
    https://kriesi.at/support/topic/breadcrumbs-glitching-illogical-structure/

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #918780

    Unfortunately that thread does not address Attribute pages.

    I switched my dev site to the twentyseventeen theme and Attribute pages have the correct title (ie. the Attribute value).

    Can you please have a dev look at this, it’s clearly a bug in Enfold that can not handle the Attribute functionality in WooCommerce.

    Thanks,
    Jason

    #919530

    Hi,

    The title of the archive or attribute page is “Crow Cams”, not “Shop” or anything. Is this fixed? If not, you can use the “avf_title_args” filter. Example:

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
        if ( is_archive() )
        {
            $args['title'] = get_the_archive_title();
       }
        return $args;
    }

    Best regards,
    Ismael

    #919605

    Sorry, I fixed it myself as the first two support staff avoided my question. Your fix doesn’t fix the link either.

    If you are able to commit a fix in the next version that’d be great, then we can remove these workarounds.

    Thanks,
    Jason

    #919924

    Hi,

    We have the suggestion to our developers.

    Best regards,
    Basilis

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘WooCommerce Product Attribute Archive does not use correct title’ is closed to new replies.