• Good day,

    I’m having troubles displayinig my images in my catogories. It is showing correctly in my post though.

    Instead of the image a link is shown:

    Please see:
    https://techtechy.com/category/social-media/

    example of link:
    do_sud_thumb(“https://bloggingfingers.com/wp-content/uploads/2007/08/rss-subscribers.png”,”

    are you able to help me please?

    Thank you
    Kind regards: Bohdan Ruzicka

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter bohdanruz

    (@bohdanruz)

    Can Anyone help.

    2) I’m having the problem where my pictures aren’t displaying at all in my categories. Not sure why? Exp: https://techtechy.com/category/games/

    1) Further, I have images show in my post but often my text is smashed against the pictures. Exp

    Please help urgently

    Thank you
    Bohdan

    Moderator keesiemeijer

    (@keesiemeijer)

    category.php or archive.php uses the_excerpt() to show a excerpt of the content. HTML tags and graphics are stripped from the excerpt. replace this with the_content() to show the full content with images

    Moderator keesiemeijer

    (@keesiemeijer)

    to correct the smashed text look in your theme’s stylesheet for this:

    .alignleft {
       float: left;
    	}
    
    .alignright {
       float: right;
    	}

    and change it to this:

    .alignleft {
       float: left;
        padding: 0 10px 10px 0;
    
    	}
    
    .alignright {
       float: right;
       padding: 0 0 10px 10px;
    	}

    Thread Starter bohdanruz

    (@bohdanruz)

    Man you’re a genius!!!

    Thanks a million, This one just can’t find on the web.

    it all works. I’ve got only one trouble with the fist part showing my images in my category.
    When removing the_excerpt() and replacing it with the_content() it doesn’t show the summerized version of my post but shows the full post in the text.
    Is there no way I can just show the summerized version as before and have the picture appear there as well.

    I saw the original template of mine could do this but just not on my own website ??

    Moderator keesiemeijer

    (@keesiemeijer)

    Is do_sud_thumb() a plugin or a function you use in your theme? How do you attach images to your posts now?

    It is possible with featured images if you want. Here is a nice tutorial: https://markjaquith.wordpress.com/2009/12/23/new-in-wordpress-2-9-post-thumbnail-images/

    Thread Starter bohdanruz

    (@bohdanruz)

    I believe the do_sud_thumb() is a plugin as I can’t find any such function in my wordpres theme but was unsuccessful in finding the plugin that does this.

    Does this featured images site you gave me come in a plugin in form instead of having me to add HTML in my website. I’m not a programmer ?

    Thread Starter bohdanruz

    (@bohdanruz)

    Oh, and when i load images I do it via wordpress standard image uploader in a form of a link.

    What I am trying to achieve is just have a summerized version of my post in my category with pictures in it. Not the whole post. I have seen themes where one can set it summarized or detail but my current theme can’t do it

    Please advice?

    Thread Starter bohdanruz

    (@bohdanruz)

    Good day,

    Could I ask for an urgent answer to the following question please?

    I would like to have a function like the ‘more’ button loacted in the write post automated to cut my pages in the category field including a picture at a certain dimention to look like the following page. https://newwpthemes.com/demo/NewsView/

    Currently my category field looks like this: https://techtechy.com/category/games/

    I know there are some themes that have the function programmed and so one does not need to cut the page at all.

    If it is a case of some code to be put in my site, please explain it clearly as I do not know HTML very well.

    If there would be a plugin for this, that would be idial.

    Your urgent reply would be much appreciated.

    Thank you

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Not able to view images in my catogories’ is closed to new replies.