Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1083680

    Dear team,

    My blog page is autogenerated from the theme, and has a share section and comments at the bottom of the page, see here:
    http://oliverrees.com/google-is-watching/

    Is it possible to add a similar set up on each of my portfolio pages? These are designed using my own layouts, e.g.:
    http://oliverrees.com/portfolio-item/gyro_light/

    Thank you for your help,

    Ollie :)

    #1083700

    There are elements for “Comments” and ” Social Share Buttons” in the “Avia Layout Architect”-editor.
    Did you try those?

    #1083701

    Hello CG,

    I did and whilst the social share buttons gave me something that closely ressembled what I was looking for, the comments element added nothing to my page?

    Kind regards,

    Oliver

    #1083703

    Ah … i think you have to additionally activate “allow comments” for an entry.
    Try:
    – at the top of the entry there is a little button (top right) to fade in options for the “view”
    – select “Discussion” to show this option
    – at the bottom below the content editor there now should be a selection wether to allow comments or not to that specific post

    By activating that you should now see the comment section in the frontend.
    Does that work?

    #1083705

    CG,

    Thank you for your message.

    I have allow comments ticked. It was always ticked :/

    Ollie

    #1083707

    I just tried to recreate your problem … but for me it does work easily this way on blog posts and also on portfolio entries or every other page …

    So … for further help i think someone has to check your frontend/backend directly … and i have to leave this for the admins/developers around … can’t assist further, sry … :-)

    —–
    Edit:
    Maybe you have the same problem as described in this thread … link to the temporary fix from Ismael:

    => https://kriesi.at/support/topic/comments-working-in-one-post-and-not-in-another/#post-1083364

    • This reply was modified 5 years, 8 months ago by cg. Reason: Added related thread
    #1084999

    Hi oliverrees,

    Thanks for helping out @cg. If you should need any further help on the topic then please post admin login details in private so that we can have a closer look.

    Best regards,
    Rikard

    #1086059

    Hello Rikard,

    Thank you for your help.

    Please see details I have sent.

    Kind regards,

    Oliver

    #1086960

    Hi,

    Thanks for the update. We added the filter in the functions.php file as previously suggested.

    
    function ava_remove_parent_filters() {
    	remove_filter('comments_open', 'av_comments_on_builder_posts_required');
    }
    add_action( 'after_setup_theme', 'ava_remove_parent_filters' );

    The comment form displays properly now.

    Best regards,
    Ismael

    #1086978

    Thank you Ismael you’re brilliant!

    I now have the share buttons, and comments at the bottom of this page: http://oliverrees.com/portfolio-item/gyro_light/

    I was wondering however:

    1. Could I create the date | # comments | By | Tags line? like it is at the bottom of my blog page: http://oliverrees.com/google-is-watching/
    2. Is it possible to make this section the same width as on the blog page above without making the entire page narrower?
    3. Is it possible to make the content within the main body of the blog page the same width as my portfolio pages?

    Thank you as always Ismael!

    Kind regards,

    Oliver

    #1088108

    Hi,

    Thanks for the update.

    1.) You have to add those info manually using a text/code block or create a custom shortcode.

    custom shortcode: https://kriesi.at/support/topic/post-using-advanced-editor-how-to-insert-post-meta-info-title-date-etc/#post-466158

    2.) You can add a css code that limits the width of the section container.

    #av_section_3 .container {
        max-width: 800px;
    }

    Replace the “#av_section_3” with the color section’s Section ID for specificity.

    3.) Use this css code to adjust the width of the blog content container.

    #top .fullsize .template-blog .post .entry-content-wrapper > * {
        max-width: 1030px;
    }
    
    #top .fullsize .template-blog .post .entry-content-wrapper {
        max-width: 1030px;
    }

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

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