Viewing 23 posts - 1 through 23 (of 23 total)
  • Author
    Posts
  • #829311

    Archive page has wrong breadcrumbs. How to fix it?

    The breadcrumbs should be
    Top/2017/February
    or
    Top/お知らせ/2017/February

    See the url in below;

    #830038

    Hey Ayumi,

    You can adjust the permalinks at Dashboard.

    Best regards,
    John Torvik

    #830890

    The problem is not permalink but breadcrumbs.
    The breadcrumbs is broken on blog archive pages.
    Need more explanation?

    #832571

    Hi,

    Sorry for the late reply. Please send us a temporary admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply.

    Best regards,
    Rikard

    #834149

    Thank you.
    Below is the test site pages. Please check it.

    #836157

    Hi,

    What is the meaning of the following kana in english?

    問い合わせテスト
    

    We need to know in order to trace where it’s coming from. I translated it using google and it returns “Query test”. Does it make sense?

    We would like to apologize for the delay. We normally respond within 24 hours but in the wake of the latest theme update, we have received more inquiries than usual. Please be patient while we go through the rest of the queue. Thank you for your understanding.

    Best regards,
    Ismael

    #838422

    Thank you for your reply.
    You’re right, the meaning is “Query test”. The page isn’t exist.
    I never mind the delay, if the problem will be solved.

    #838588

    Hi,

    I would like to check this again but I got the following errors.

    Your connection is not private
    Attackers might be trying to steal your information from renewal-test.zero-start.jp (for example, passwords, messages, or credit cards). Learn more
    NET::ERR_CERT_AUTHORITY_INVALID
    Automatically send some system information and page content to Google to help detect dangerous apps and sites. Privacy policy

    Please contact your hosting provider to correct the issue.

    Best regards,
    Ismael

    #839037

    I’m sorry to bother you.
    This is a test server and it has ssl error. It doesn’t matter to ignore it.
    To access with Safari or click the link below the message.

    #839718

    Hi,

    I’m sorry but we don’t access sites with such errors. Please revert the site to http or settle the ssl issue with your hosting provider then we’ll check the issue.

    Best regards,
    Ismael

    #840274

    The below is the live server. However I don’t have admin account for it.

    #841831

    Hi,

    I just noticed that the site is running on a very old version of the theme. Please update to version 4.1.2. Did you set the “Query Test” page as the blog page in the theme options?

    Best regards,
    Ismael

    #841907

    Hi,
    I will update the theme. Do you mean “Frontpage Settings”? I set another page for it.

    #842349

    Hi,

    Could you please provide the login details to the site? We need to inspect it.

    Best regards,
    Ismael

    #860850

    I’m sorry to be late.
    It is impossible to give you the login ID for security.
    I checked the code and found that there was a problem on line 420.
    Could you please check the code and tell me how to fix it.
    Best regards,

    #861254

    Hi,

    What’s wrong with that line? I’m sorry but we can’t help you further if we can’t access the site.

    Best regards,
    Ismael

    #862706

    Hi,
    Below is login account.
    The problem is breadcrumbs are broken in archive blog pages.

    #863226

    Hi,

    Thank you for the info. However, the login credentials above is not working. Please check. For the mean time, please try this code in the functions.php file.

    add_filter( 'avia_breadcrumbs_trail', 'remove_category_from_breadcrumb', 50, 2 );
    function remove_category_from_breadcrumb( $trail, $args ) {
    	if ( is_archive() ) {
    		unset ($trail[2]);
    	}
    	return $trail;
    }

    Best regards,
    Ismael

    #864430

    I’m sorry the access error. I will check the problem.

    I will add the code in the functions.php file, and tell you whether it works or not.

    #864635

    The access error is caused by the region restriction, I’m sorry for inconvenience.
    The code works well, thank you very much.

    We have another site which has same problem. ( One is for the corporate and the other is for the products. )
    I guessed I need to edit the part of the code, but it didn’t work.
    Could you please check below and tell me the correct code.

    Best regards,

    #865086

    Hi,

    Please use this code.

    add_filter( 'avia_breadcrumbs_trail', 'avf_remove_category_from_breadcrumb', 50, 2 );
    function avf_remove_category_from_breadcrumb( $trail, $args ) {
    	if ( is_archive() ) {
    		unset ($trail[1]);
    	}
    	return $trail;
    }

    Best regards,
    Ismael

    #865235

    Hi,
    The code works perfectly. Thank you so much for your help. I appreciate.
    Best regards,
    Ayumi

    #865840

    Hi Ayumi,

    Glad we got things working for you! :)

    If you need further assistance please let us know.

    Best regards,
    Victoria

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