• Sorry for this question. I”m sure it’s silly.

    We had someone else build our site on WordPress, but that person is no longer with us. I know the basics like “html” ‘how to add a page’ etc….

    But I’m completely stuck with 2 easy things.

    The website is: https://southwestpokernews.com/

    On the right, there are a couple images, and then it says ‘Our Sponsorsfrontad’ in text underneath the 2 images.

    How do I access that entire column?? I want to make one of the images linkable. and I want to delete the text ‘sponsorsfrontad’

    and my 2nd question is. Underneath the ‘leave a reply’ section on the front of my site, it says:

    "You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b>
    <blockquote cite=""> <cite>  <del datetime=""> <em> <i> <q cite=""> <strike> <strong> "</p>

    How do I get rid of that?

    Thanks for your help!

    [please, next time, do not post in all-caps (topic title de-capped) and use a better topic title]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    For your second question, you can add CSS display to hide it, but I’m not sure why you want it hidden.

    Thread Starter apollopoetry

    (@apollopoetry)

    i dont want to hide the comments. i just want to to hide that ‘coding text’ that appears on the front of the website

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    i just want to to hide that ‘coding text’ that appears on the front of the website

    How come?

    As Andrew mentioned, you can hide that text using CSS only. Placing something like this in your theme’s style.css file would do:

    p.form-allowed-tags {
        display: none;
    }

    If you want it completely removed from the page, code and all, you can edit your theme’s comments.php file. Look for comment_form(); (it’s near the bottom) and change it to:

    comment_form( array( 'comment_notes_after' => '' ) );

    https://codex.www.ads-software.com/Function_Reference/comment_form

    As for the items in your sidebar, they appear to be normal widgets. You can add/delete/edit them by going to Appearance > Widgets.

    https://codex.www.ads-software.com/WordPress_Widgets

    As always, it’s recommended to use a child theme if you plan on making edits to the code.

    https://codex.www.ads-software.com/Child_Themes

    Thread Starter apollopoetry

    (@apollopoetry)

    thanks! and does anyone know where in the backend can i control the right-side bar on my front page?

    i dont know where to edit the pictures/links that appear there, like i do with all the other ‘pages’

    where in the backend can i control the right-side bar on my front page?

    dashboard – appearance – widgets

    you have several textwidgets in that area…

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘easy question to answer . embarrassing’ is closed to new replies.