• Resolved sunnytomar

    (@sunnytomar)


    www.travelmegood.com/blog

    i want my blog page to appear
    what i want is to show featured image first
    than title
    than content
    than read more…

    exactly like www.thisisallaboutyou.com/yourblog/

Viewing 11 replies - 1 through 11 (of 11 total)
  • Hello there,

    Could you please try to apply the following CSS code through the Simple Custom CSS plugin or child theme’s style.css?

    .posts-layout .meta-post{
      display: none;
    }

    To change the ellipsis to “read more” link, try to add this function in the child theme‘s functions.php file.

    function sydney_child_ellipsis_link($content) {
    	return str_replace('[&hellip;]', '<a href="'. esc_attr(get_permalink()) .'">[&hellip;]</a>', $content);
    }
    add_filter('the_excerpt', 'sydney_child_ellipsis_link');

    Regards,
    Kharis

    Thread Starter sunnytomar

    (@sunnytomar)

    nothing happened..

    can you help me to look like this
    www.howtowebby.com/blog

    Where did you apply that code? Make sure a group of CSS code where that code belongs to is error free. You can check it here.

    Please confirm if you have properly inserted that function into the child theme’s functions.php file.

    Regards,
    Kharis

    Thread Starter sunnytomar

    (@sunnytomar)

    Applied through custom CSS.. Is there any other way?

    Hello there,

    The custom CSS code might not be applied yet if your site is being cached. Please delete all cache first, then reload your blog page.

    Regards,
    Kharis

    Thread Starter sunnytomar

    (@sunnytomar)

    Let me check…

    Can you please help me in other issue also?
    If u open travelmegood.com/about-us

    There is a unwanted white space just above the footer..
    How can i remove it?

    Thread Starter sunnytomar

    (@sunnytomar)

    cleared cache.. nothing happened.. after applying

    .posts-layout .meta-post{
    display: none;
    }

    my blog is travelmegood.com/blog

    and i want it to look like this
    www.howtowebby.com/blog

    Hello there,

    It seems like you applied the following custom CSS code:

    .entry-header {
        display: block;
    }

    Please remove that code.

    Regards,
    Kharis

    Thread Starter sunnytomar

    (@sunnytomar)

    .entry-header {
    display: none;
    }

    applied this.. because it shows the title on home and other pages…

    Thread Starter sunnytomar

    (@sunnytomar)

    hey Kharis Sulistiyono.. thanks!!this problem of blog is resolved by removing .entry-header {
    display: none;
    }

    but it
    caused another problem…

    now if you can please open
    https://www.travelmegood.com/
    and other pages too..

    every page is showing title.. whichi do not want to show.. please HELP!

    Thread Starter sunnytomar

    (@sunnytomar)

    done with it…

    problem resolved!!

    only one problem left

    [Moderated – Please stop opening multiple threads on the same topic]

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘how to change blog visibility option’ is closed to new replies.