How to edit Homepage images
-
on my homepage there’s 3 images below the main image slider, a sword, phoenix, and a key
i forget where in wordpress i can edit these images, specifically the URL’s they are hotlinking to.
can anyone shed some light please?
-
Quick fix would be to replace the images located here with whatever new image you want: https://www.ronniewhittaker.com/wp-content/uploads/Blog-Sword1.png, https://www.ronniewhittaker.com/wp-content/uploads/Phoenix1.png, https://www.ronniewhittaker.com/wp-content/uploads/memberskey2.png. Otherwise the images could be set in widget, theme options, or hardcoded into theme.
thanks, the images i created and put up there initially.. they are hyperlinks too and its this aspect i really need changed
i just cant remember how i accessed them and the theme owner hasn’t gotten back to me
check in your theme files!! .. usually can check through appearance>>editor section of the admin section …
tried that, ran searches but i just can’t find them! O-O
of course they’ll be somewhere most obviousi’m still very stuck on this one can someone offer any other ideas please?
I’ve checked the location of those images.
wp-content/uploads/Blog-Sword1.png
wp-content/uploads/Phoenix1.png
wp-content/uploads/memberskey2.pngYou’ll need to log in via FTP to change those. It’s probably part of the html, rather than php. So there’s unlikely somewhere on the Dashboard that you can change them.
Either go on FTP and go to public_html >wp-content > uploads and overwrite those images files with your own (keeping them the same size and file name), or find them in one of the .php files. Probably home.php or something and change them from there.
hi john thanks, i don’t nee to change the images but the hyperlink associated. specifically the first one of the sword which links to : https://www.ronniewhittaker.com/?page_id=352
i need it to link to : https://www.ronniewhittaker.com/?cat=16
Where those images link to must be in the html.
If you can find the .php file with
<div class="one_third"> <h2 style="text-align: center;"><a href="https://www.ronniewhittaker.com/?page_id=352"><cufon style="width: 90px; height: 24px;" alt="Ronnie’s " class="cufon cufon-canvas"><canvas style="width: 101px; height: 24px; top: 1px; left: 0px;" height="24" width="101"></canvas><cufontext>Ronnie’s </cufontext></cufon><cufon style="width: 42px; height: 24px;" alt="Blog" class="cufon cufon-canvas"><canvas style="width: 49px; height: 24px; top: 1px; left: 0px;" height="24" width="49"></canvas><cufontext>Blog</cufontext></cufon></a></h2> <p style="text-align: center;"><a href="https://www.ronniewhittaker.com/?page_id=352"><img class="size-full wp-image-405 aligncenter" style="border: 4px solid black; opacity: 1; visibility: visible;" title="Blog Sword" src="https://www.ronniewhittaker.com/wp-content/uploads/Blog-Sword1.png" alt="" height="100" width="170"></a></p> <p style="text-align: center;"><span style="color: rgb(0, 0, 0);"><strong>Daily Metaphysical updates</strong><br> </span></p> </div> <div class="one_third"> <h2 style="text-align: center;"><a href="https://www.ronniewhittaker.com/?page_id=335"><cufon style="width: 63px; height: 24px;" alt="Study " class="cufon cufon-canvas"><canvas style="width: 73px; height: 24px; top: 1px; left: 0px;" height="24" width="73"></canvas><cufontext>Study </cufontext></cufon><cufon style="width: 77px; height: 24px;" alt="Courses" class="cufon cufon-canvas"><canvas style="width: 85px; height: 24px; top: 1px; left: 0px;" height="24" width="85"></canvas><cufontext>Courses</cufontext></cufon></a></h2> <p style="text-align: center;"><a href="https://www.ronniewhittaker.com/?page_id=335"><img class="aligncenter size-full wp-image-402" style="border: 4px solid black; opacity: 1; visibility: visible;" title="Phoenix" src="https://www.ronniewhittaker.com/wp-content/uploads/Phoenix1.png" alt="" height="100" width="170"></a></p> <p style="text-align: center;"><strong><span style="color: rgb(0, 0, 0);">Online courses for your evolutionary advancement</span></strong></p> </div> <div class="one_third"> <h2 style="text-align: center;"><a href="https://www.ronniewhittaker.com/?page_id=51"><cufon style="width: 99px; height: 24px;" alt="Members " class="cufon cufon-canvas"><canvas style="width: 109px; height: 24px; top: 1px; left: 0px;" height="24" width="109"></canvas><cufontext>Members </cufontext></cufon><cufon style="width: 44px; height: 24px;" alt="Area" class="cufon cufon-canvas"><canvas style="width: 50px; height: 24px; top: 1px; left: 0px;" height="24" width="50"></canvas><cufontext>Area</cufontext></cufon></a></h2> <p style="text-align: center;"><a href="https://www.ronniewhittaker.com/wp-content/uploads/memberskey.png"></a><a href="https://www.ronniewhittaker.com/?page_id=51"><img class="size-full wp-image-390 aligncenter" style="border: 4px solid black; opacity: 1; visibility: visible;" title="memberskey" src="https://www.ronniewhittaker.com/wp-content/uploads/memberskey2.png" alt="" height="100" width="170"></a></p> <p style="text-align: center;"><strong><span style="color: rgb(0, 0, 0);">Private forum for members only</span></strong></p> </div>
Look for the <div class=”one_third”> element. Your WordPress is using a separate file for the homepage. I can’t really be specific because I don’t know how the theme is set up. Just go to wp-content > themes > yourtheme and look for something like home.php or hometemplate.php
Edit that file, it should have the code I posted above in it.
thanks for looking, i just can’t find any reference of “one_third” beyond 4 instances within functions.php. in there however is no reference to any of the other information .i.e. the png image file or hyperlink URL
is there an automated way to search all the theme files on the server for a specific content string, say “Ronnie’s Blog”? as that’s the title of the section (image hyperlink) i’m trying to edit on the homepage
- The topic ‘How to edit Homepage images’ is closed to new replies.