Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #1424323

    Hi,
    I heave a problem with the news page. The url from the newspage is https://addis-ababa-living-lab.com/design-proposals what I don’t understand because it is the newspage, then in the breadcrumb the page is named Home/news. If I click on one of the news-items, I get home/ news/ “news-item”. The problem is then if you click on ‘news’ in the breadcrumb, you go to https://addis-ababa-living-lab.com/category/news/ but I want it to go back to https://addis-ababa-living-lab.com/design-proposals. How can I fix this?

    #1424417

    Hey InekeWerkt,

    Thank you for the inquiry.

    You may need to reset the options in the Settings > Reading panel to their default settings and replace or rename the “news” category. This category might be conflicting with the news page. Have you configured the front and blog page settings in the Enfold > Theme Options panel?

    Best regards,
    Ismael

    #1424992

    , I tried differnt settings, made a new catergory -> report but it still doens’t work properly. Now the breadcrumb have a double slash and stil go to the category page. Could you please have a look?

    #1425048

    Hi,

    Thank you for the update.

    We tried to login to the site but the credentials above seem to be incorrect. Please check the info carefully or provide another admin account.

    Best regards,
    Ismael

    #1425170
    This reply has been marked as private.
    #1425183

    Hi,

    Thank you for the info.

    Unfortunately, the new account is invalid, and the older one is also not working. Have you tried logging in with the new admin account?

    Best regards,
    Ismael

    #1425217
    This reply has been marked as private.
    #1425358

    Hi,

    Thank you for the info.

    We visited a post in the “design-proposals” category, and when we accessed the category through the breadcrumb, it correctly redirected to the category page. Please check the links in the private field. How can we reproduce the issue?

    Best regards,
    Ismael

    #1425417

    Yes, that is the problem, it should not go to the category page but go back to the page it come from. For example home/report click on BK africa url is home// news/ bk africa. I dont understand why there is bk afrika. It should be home/report/ bk afrika. And if click in the breadcrumb report should gi back report page not the category page.

    #1425533

    Hi,

    Thank you for the update.

    That is the default behavior or trail pattern of the breadcrumb option in the theme. If you need more options for your breadcrumb navigation, you could consider installing plugins such as the following.

    // https://wordpress.org/plugins/breadcrumb/
    // https://wordpress.org/plugins/breadcrumb-navxt/

    You could also add this filter in the functions.php file to adjust the breadcrumb trail and specify your own links based on certain conditions.

    function avia_breadcrumbs_trail_mod($trail) {
               if( is_singular( 'post' ) ) {
    	         $trail[1] = '<a href="https://site.com/news" title="News Page" rel="">News Page</a>';
               }
    	   return $trail;
      }
      add_filter('avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 1);
    

    Please make sure to replace the value of the href attribute with the actual URL of the news page.

    Best regards,
    Ismael

    #1425752
    This reply has been marked as private.
    #1425843
    This reply has been marked as private.
    #1426028

    Hi,

    When we clicked the “design-proposals” trail, it seems to go back to the appropriate page (see private field). Have you tried doing a 301 redirect? Using the following plugin, you can redirect a category page to a custom page.

    // https://wordpress.org/plugins/eps-301-redirects/

    Thank you for your patience.

    Best regards,
    Ismael

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