Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #226690

    Hi there,
    Wondering if you can assist with how my site is navigating on mobile. Currently my portfolio is very enfold-out-of-the-box. I am not using the ajax function as I had concerns users would click only within the popup and miss content. MY site is http://www.agoodplacetobe.com.
    When I click to portfolio and then on an item there are no arrows to the right and left to allow you to navigate to other items. Are users expected to click back to portfolio or is there another way?

    Also is there a way for “recent projects” that come below to omit a project if it is the page you are on. As in if you are on “A” project – it would be good not to call out “A” in recents.

    Lastly – is there a way to edit the wording of the breadcrumb text – I want to change “you are here”.

    Many thanks – great theme – can’t wait to add my own customisation.

    `a

    #226941

    Hi indirapril!

    Please add following code to Quick CSS in Enfold theme options under Styling tab to display post navigation on mobile

    @media only screen and (max-width: 767px) {
    .responsive #top .avia-post-nav {
    display: block;
    }}

    Edit: Please use this plugin to change "You are here" http://wordpress.org/plugins/codestyling-localization/

    Cheers!
    Yigit

    • This reply was modified 10 years, 1 month ago by Yigit.
    #227763

    Thanks Yigit – that code worked brilliant in solving the mobile issue.
    IN regard to the you are here text…the plugin link you sent is for translation – did you mean to send a different plugin?

    many thanks,
    `a

    #228027

    Hey!

    Please use this on functions.php to change the text on the breadcrumb:

    add_filter('avia_breadcrumbs_args','avia_change_breadcrumb_before', 10, 1);
    function avia_change_breadcrumb_before($args)
    {
    $args['before'] = 'You can change this text:';
    return $args;
    }

    Cheers!
    Ismael

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