Need Help Please Wordpress

girolamo

Regular Member
Joined
Jan 12, 2016
Messages
410
Reaction score
125
So, I got a problem, whenever I make a post in wordpress the featured image is ABOVE the title, and I want it below. I ve been searching for the solution on the internet for an hour... and still only thing i could find is to make child theme and change the code... Is it possible they made it so complicated just to move the picture... and is it possible to put the pic on such a stupid position as default? :O Hope someone has easier solution, thank you
 
You haven't mentioned which theme are you using, so here is a generic solution. Google:
wordpress problem title is above image

Alternately, you can use this query in Google:
wordpress problem +[themeName] title is above image
 
You haven't mentioned which theme are you using, so here is a generic solution. Google:
wordpress problem title is above image

Alternately, you can use this query in Google:
wordpress problem +[themeName] title is above image
I am using Hemingway theme, but couldn't find anything useful on google...
Btw, jesi ti iz Srbije :D ?
 
Normally there is a box in post setting that allows you to hide featured image from post display. If not you will probably need to edit page.php and move the title code above featured image.

You can always post in hire freelancer section - I'm sure someone will do it for $5-$10.
 
@girolamo

could be the way its programmed. If you have a developer they should be able to fix this for you. If not post in the freelance section
 
you have to play with backend to make this happen. does the demo of this theme have featured img below the title?
 
Theme itself, has an option of featured image... only problem is when you take feature image option, it post it by default above the title. I found some solutions on google, but not for the specific theme... I would rather move the code place alone then pay someone to do it. Though everyone recommends first making a child theme, which I really wouldn't like to do. Also I found some CSS codes and tried to insert them into custom CSS plugin, but wouldn't work.
 
You just need to find where the title and featured image codes are and then interchange their position. The problem needs to look at creating a child theme too.... But make a copy of theme first. I'm on mobile now so will check for any solution llater. Can you send me a link to the theme download? I would help solve any problems....
 
It depends on the theme. Some themes allow u to change the location - they have options like u can put the featured image on the post/below the post/no where. Check the theme settings of your current theme. If there is no option to do that: then first search for some plugins (I don't know there is any or not) that can help u to do so, if there is no plugin and if u r not a web programmer who can edit the theme to do so, then the best and easiest option for you is to try another theme :) and if you like the current theme and want to stay with this theme, then u can hire a wordpress programmer to do that edit for you.
 
If I put the html and css of title and image,then I will be able to help. At first glance I guess the image you have to put styles,

Code:
youimagecss {display: block; clear: both}
 
You just need to find where the title and featured image codes are and then interchange their position. The problem needs to look at creating a child theme too.... But make a copy of theme first. I'm on mobile now so will check for any solution llater. Can you send me a link to the theme download? I would help solve any problems....

https://wordpress.org/themes/hemingway/ Thank you.
 
If I put the html and css of title and image,then I will be able to help. At first glance I guess the image you have to put styles,

Code:
youimagecss {display: block; clear: both}
Not sure I understand you
 
So, I got a problem, whenever I make a post in wordpress the featured image is ABOVE the title, and I want it below. I ve been searching for the solution on the internet for an hour... and still only thing i could find is to make child theme and change the code... Is it possible they made it so complicated just to move the picture... and is it possible to put the pic on such a stupid position as default? :O Hope someone has easier solution, thank you

You need to provide your theme files hierarchy. Then I can give you a hint where you can find your solution.

To give you an idea, You are looking for a WP function name "the_thumbnail" inside any of your theme file. Most probably on single.php or in the template-parts folder.

Hope you can solve it. If not, provide the folder and file structure. I will try my best to help!
 
Some themes allow you to change the location, they have options like you can put the featured image on the post!!
 
Theme itself, has an option of featured image... only problem is when you take feature image option, it post it by default above the title. I found some solutions on google, but not for the specific theme... I would rather move the code place alone then pay someone to do it. Though everyone recommends first making a child theme, which I really wouldn't like to do. Also I found some CSS codes and tried to insert them into custom CSS plugin, but wouldn't work.
Why wouldn't you like a child theme, that is standard WordPress practice. Don't modify core code on a theme or it will be lost next update.
 
Back
Top