• Resolved musictonite

    (@musictonite)


    Hello,

    I am not able to get paragraphs on my pages. It all gets crumbled up into one fat paragraph ??

    I know it’s probably supposed to be a setting in the css, but I can’t figure out what it is.

    Your help is greatly appreciated.
    Thank you in advance.

Viewing 14 replies - 1 through 14 (of 14 total)
  • Moderator Samuel Wood (Otto)

    (@otto42)

    www.ads-software.com Admin

    In the editor, after a paragraph, you hit “enter” and get a new one.

    Or, if that’s not working, you can give us a link to your site so we can see the problem as you see it.

    Thread Starter musictonite

    (@musictonite)

    I tried using “enter”
    no luck

    I also tried it in both ‘html’ and ‘view’ mode
    no luck

    I also tried using
    and <p> html tags
    no luck

    the url is https://www.recorderhaven.com/

    thanks a bunch!

    Thread Starter musictonite

    (@musictonite)

    in the post above, I typed “
    ” and the page actually used it to ‘break’ the paragraph ??

    I wish that would work on my page as well ??

    Thread Starter musictonite

    (@musictonite)

    shoooot

    …br… with brackets around it ??

    Moderator Samuel Wood (Otto)

    (@otto42)

    www.ads-software.com Admin

    You’ve only got one paragraph on that page.

    Are you using the Visual Editor or the HTML editor?

    Thread Starter musictonite

    (@musictonite)

    I tried using both… no luck

    actually, if you click on the title of the post, which will take you to the post itself (p=1) there are paragraphs.

    it’s got to be some setting on the front page I need to check

    weird

    Thread Starter musictonite

    (@musictonite)

    anybody?
    this is a tuffy for me!

    I especially don’t understand it since when you click on the post itself, it will show the paragraphs but when you see the post on the opening page, there are NO paragraphs at all…

    weird

    Moderator Samuel Wood (Otto)

    (@otto42)

    www.ads-software.com Admin

    What is the code in your theme’s index.php file? Is it using the_content(), or something else?

    Thread Starter musictonite

    (@musictonite)

    it is using the_content ()

    I realize now it is a template setting which is meant to show small tid-bits of articles on the front page with a link to the actual post…

    I don’t want that. I want to place full information on the front page, and I would like to know if there is a way to change this setting.

    thanks

    Moderator Samuel Wood (Otto)

    (@otto42)

    www.ads-software.com Admin

    WordPress has no such setting. That’s up to the theme to do.

    If you’re using the_content(), then you get the full content. But without seeing the actual code, I can’t tell you what it is doing.

    Switch to the default theme. Does it work properly there? If so, then the problem is in your theme and you need to fix the theme, somehow. Since I can’t see your theme’s code, I can’t tell you exactly how to do that.

    Thread Starter musictonite

    (@musictonite)

    let me try to post the theme code, right there were I made the changes…

    Thread Starter musictonite

    (@musictonite)

    it looks something like this…

    <!– begin post –>
    <div class=”post<?php if ($first) { echo ‘ first’; $first = false; } ?>”>
    <h2>“><?php the_title(); ?></h2>

    <p><?php ob_start(); the_content(); echo dp_clean_excerpt(ob_get_clean()); ?></p>
    </div>
    <!– end post –>
    <?php endwhile; ?>
    <p id=”postnav”>
    <?php next_posts_link(‘Older Entries’); ?>  
    <?php previous_posts_link(‘Newer Entries’); ?>
    </p>

    Moderator Samuel Wood (Otto)

    (@otto42)

    www.ads-software.com Admin

    <p><?php ob_start(); the_content(); echo dp_clean_excerpt(ob_get_clean()); ?></p>

    Yeah, this is definitely something your theme is doing.

    Try this instead. Replace that line I posted with this one:

    <?php the_content(); ?>

    Thread Starter musictonite

    (@musictonite)

    I got it

    thank you for the help!

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘There are no paragraphs. How do I divide into paragraphs?’ is closed to new replies.