Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1192334

    Hi guys
    I am looking at https://kriesi.at/themes/enfold-2017/portfolio-item/ipad-iphone-freebie/
    I noticed your very nice arrows showing previous and next portfolio items.
    But I do not see how to include the arrows in my portfolio items. Can you help?

    #1192640

    Hey bojsenit,

    If you have more than one post they should be enabled by default.

    Best regards,
    Jordan Shannon

    #1192666

    Well, I have 24 portfolio posts.
    I made one manually and then copied 23 items with the Duplicate Post plugin: https://da.wordpress.org/plugins/duplicate-post/
    Is that a problem?

    #1192693

    Hi bojsenit,

    That shouldn’t be an issue.
    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    #1192713

    Temporary user created – thanks

    #1193058

    Hi bojsenit,

    Thanks for giving us admin access.
    The problem was not actually the cloning but the cause of the issue why the portfolio nav arrows are not showing is because of the slider.
    This is the default behavior and to alter this, you’ll need to use a child theme, you can download it and find the instructions on how to use it in this link: https://kriesi.at/documentation/enfold/child-theme/
    Then in the functions.php of your child theme, add this code:

    function enfold_post_nav_settings($settings) {
    	if(is_singular('portfolio')) {
    	   $settings['is_fullwidth'] = false;
    	   $settings['skip_output'] = false;
    	}
    	return $settings;
    }
    add_filter('avf_post_nav_settings','enfold_post_nav_settings', 999, 1);

    Best regards,
    Nikko

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