Okay
  Public Ticket #3528227
Can't edit some of the portfolio showcase pages
Closed

Comments

  •  1
    Teo Dumitru started the conversation

    Hi! I configured the theme using the wizard, imported the elementor content, and even tried to import manually with the xml file. The portfolio single projects look and work great. However, some of the portfolio showcases (slider, carousel etc.) can't be edited with elementor, as I get this error - https://elementor.com/help/the-content-area-was-not-found-error/.

    Attached files:  serano.png

  •  1,803
    Support replied

    Hi Teo,

    If you plan on using Elementor, we recommend installing Elementor demo data. Let us know if you need any help with that.

    The portfolio page templates do not display the content entered in the editor. They just build the layout automatically based on portfolio items options (hero image, hero title, subtitle, background etc) and the options of the page having this template. These options are not configurable through the editor but in wordpress admin. 

    So in order to edit these page templates you need to modify their options and create/edit portfolio items under admin -> Portfolio

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  •  1
    Teo Dumitru replied

    Oh, ok, I got it, thank you. I managed to import all the demo content correctly. Now I have 2 questions:

    1. I am using the theme to create a showcase of offers for an aesthetics clinic. The first slide should not lead anywhere when clicked, it should just say "scroll to see the offers". Is that possible?

    2. I noticed that when the title is too long, the layout gets messed up, the title alignment becomes left and the second line of the title is either not displayed or is displayed in the following slide (https://www.loom.com/share/bf02ed2521e34454991c61397bad7b1b?sid=c32a320a-fefb-4106-bc9c-71140e640110). Any fix or workaround for this? 

  •  1
    Teo Dumitru replied

    I kinda managed to achieve the first request with the following CSS which makes the first slide unclickable, but it still gets shown at the bottom of the single portfolio pages.

    .clapat-slide:first-child, .clapat-slide:last-child {
        pointer-events: none !important;
    }

  •  1,803
    Support replied

    Hi Teo,

    the bottom portfolio page navigation (next/prev portfolio item) will navigate through all the defined and published portfolio items in reverse or forward chronological order (this can be set in customizer -> portfolio settings)

    https://developer.wordpress.org/reference/functions/next_post_link/

    To exclude some items you need to modify the wp query that selects the next item or prev item - therefore custom work

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  •  1
    Teo Dumitru replied

    All right, got it! What about the long title issue?

  •  1,803
    Support replied

    I escalated this issue to our web designer to get the best opinion on this.

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  •  1,803
    Support replied

    Hello Teo,

    We would advise you of course to keep the title shorter. The title are running actually in a separate slider and have a carefully calculated height. However you can try the following in customizer -> additional CSS

    .clapat-sync-slider.large-titles {
      height:12vw;
    }

    .large-titles .slide-title span {
      text-align: center;
    }

    .large-titles .slide-title {
      height: 12vw;
      display: flex;
      justify-content: center;
      align-items: center;
    }


    plz note that we modified the height with this CSS code and the display mode (flex)


    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy