Viewing 29 posts - 1 through 29 (of 29 total)
  • Author
    Posts
  • #1091411

    Hello, I’m using advanced blog editor and I’having couple of problems with it.
    1 – In the blog page I can’see the resume+read more link (I only see read more link) even if set in the ‘article element’ options.
    2 – In the single article, I can’t see the featured image at the top of the article as set in ‘featured image options’ “show on the single entry”
    can you help?
    thanks
    Mimmo

    #1091753

    Hi Mimmo,

    Are you using the Layout Editor to create your posts? If so then you need to add both the excerpt and featured image manually to the post. If you don’t see the excerpt field then please select to show it under Screen Options in the top right hand corner.

    Best regards,
    Rikard

    #1091969

    Hi Rikard,
    yes using layout editor, thanks for the help.
    I have other two questions
    – How do I show the category in a single post?
    – In the Archive page how do I hide the voice ‘comment’ and ‘author’ and show the featured image (small)?
    in general does exist a way to set the archive page?
    thanks
    Mimmo

    #1093207

    Hi,

    Thanks for the update.

    1.) You’ll have to add it manually in a code/text block, or add it as a shortcode or as another builder element as shown in the following thread.

    // https://kriesi.at/support/topic/post-meta-information-not-appearing-on-single-post-in-restaurant-theme-in-enfold/#post-508189

    If you don’t want to create another builder element, just add this shortcode.

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

    2.) You can hide those info by toggling the options in the Enfold > Blog Layout > Blog meta elements settings. You can also use a custom css code. We’ll have to inspect the actual blog page so that we can see the current blog style and provide the appropriate css code.

    Best regards,
    Ismael

    #1095812

    hi,
    point 1 almost solved now I can see what I want in the single post, I followed the suggestion to modify functions.php in child theme, but than I lost some of the theme options like fav, logo, font, socket and footer colors. Do I have to reset again?

    point 2 , the meta options in the blog layout don’t work.
    thanks

    #1096178

    Hi,

    Which code did you add exactly and where? We will have to be able to see and reproduce the problem in order to help you out.

    Best regards,
    Rikard

    #1096413

    hi,
    here is the short code, added in Theme Enfold/child > functions.php
    <?php

    /*
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    */function post_title_shortcode(){
    global $post;
    return get_the_title($post->ID);
    }
    add_shortcode( ‘sc_post_title’, ‘post_title_shortcode’ );

    function post_date_shortcode(){
    global $post;
    return get_the_date(‘Y-m-d’, $post->ID);
    }
    add_shortcode( ‘sc_post_date’, ‘post_date_shortcode’ );
    function post_category_shortcode(){
    global $post;
    $categories = get_the_category($post->ID);
    $separator = ‘ ‘;
    $output = ”;
    if ( ! empty( $categories ) ) {
    foreach( $categories as $category ) {
    $output .= ‘term_id ) ) . ‘” alt=”‘ . esc_attr( sprintf( __( ‘View all posts in %s’, ‘textdomain’ ), $category->name ) ) . ‘”>’ . esc_html( $category->name ) . ‘‘ . $separator;
    }

    }
    return trim( $output, $separator );
    }
    add_shortcode( ‘sc_post_category’, ‘post_category_shortcode’ );

    #1097495

    Hi,

    Thanks for the update.

    That code should should not have affected the theme options. Are you sure that you didn’t do anything else?

    Best regards,
    Ismael

    #1097686

    Hi, yes I just added the code and nothing else.
    Mimmo

    #1097924

    Hi,

    Alright. Can we access the dashboard? Please provide the login details in the private field.

    Best regards,
    Ismael

    #1098078
    This reply has been marked as private.
    #1099864

    Hi,

    Thanks for the update.

    There are no published pages in the site. Anyway, we don’t encounter any issue in saving the theme options, but we can’t revert the lost or previous options back. Please create a backup or a restore point next time. You can also export the theme options in the Enfold > Import/Export panel in case something like this happens again.

    Best regards,
    Ismael

    #1100027

    Hi, pages were in draft. Anyway, pages and articles are published now, the settings are almost ok, the missing things are:
    – Blog page, all the articles show the right title, but the text is still the lorem ipsum text I used in designing the layout. Note that when designing the layout the titles were false text too, once I uploaded the right text, the blog page shows the right title, but that doesn’t happen with the text of the article.
    – Archive page, (when I click on the category in the article page) I don’t see the featured image, and I still see author and comment tag even if in blog settings option they are disabled. In the Archive I would like to see only the date.

    Thiese seems to be the only and last things to fix.
    Thanks for the support

    #1100029

    Sorry, fixed the point 1. and fixed hiding the comments in the archive page.
    the only thing left to set is the featured image that has to be shown, and the author to be hide, in the archive page.
    thanks.

    #1100139

    Hi,

    Thanks for the update.

    Did you select or set the blog page in theme options? You have set the blog page there and reset the Settings > Reading options to default. After setting the blog page in the theme options, go to the Blog Layout panel and configure the blog settings.

    Best regards,
    Ismael

    #1100166

    Hi, sorry but I don’t see any reading options in the theme options.
    What I have done now is to export actual theme settings, so if something happens I can reset as it is now, right?. Is there any way to send you a screenshot so to show you what I see?
    thanks
    mimmo

    #1100411

    Hi mforlano,

    You can upload the image to a service like https://imgur.com/upload and give us the link here.

    Best regards,
    Victoria

    #1100454
    #1101328

    Hi mforlano,

    https://imgur.com/a/YuGJoq2 The reading options are in the general WP settings menu.

    Best regards,
    Victoria

    #1101376

    Hi Victoria,
    I am very sorry, but I got lost, found and done all said in this chat, but nothing change. At the moment the thing I need is to see the featured image post in the archive page and not to see the author in archive page
    thanks for the help

    #1102350

    Hi,

    Thanks for the update.

    This filter should help change the layout of the archive page and display the featured images back.

    //change category page layout to blog single big style
    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'single-big';
       return $layout;
    }

    Best regards,
    Ismael

    #1102446

    hi, it has to be added in Theme Enfold/child > functions.php?
    thanks
    Mimmo

    #1102661

    Hi,

    Yes, that should be added in the functions.php file.

    You should create a child theme if the site is not using one, yet.

    // https://kriesi.at/documentation/enfold/child-theme/

    Best regards,
    Ismael

    #1102832

    hi,
    ok it works, the only thing left to fit is that I don’t want to see the author of the article in the archive page.
    It is still visible even if in the blog options is desabled.
    thanks a lot
    Mimmo

    #1103281

    Hi mforlano,

    Please try the following css:

    
    .blog-author.minor-meta {
        display: none;
    }
    

    Best regards,
    Victoria

    #1103298

    Perfect!
    thanks a lot
    Mimmo

    #1103326

    Hi,

    Did you need further help with this or shall we close this topic?

    Best regards,
    Jordan Shannon

    #1103333

    Can close it, thanks

    #1103352

    Hi,

    If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 29 posts - 1 through 29 (of 29 total)
  • The topic ‘Blog setting’ is closed to new replies.