pdishman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: RSS Feed ProblemIts not hard to see a newbie coming, is it… ??
Thank you
Forum: Fixing WordPress
In reply to: How do I fixed Squished Post Title (increase line spacing)That worked perfectly. Thank you!
Forum: Fixing WordPress
In reply to: invalid rss feed having to do with <lastbuilddate>?Okay, this code appears to be in the header, but that is all the progress I have made.
Forum: Fixing WordPress
In reply to: 2 problems – Title won’t budge and page thumbnail duplicatesYeah, all fixed – I had to take it out of the post and just leave the custom field.
Thanks for all your help – I need to put you on speed dial!
Now maybe you can tell me why the date image on the about and contact page is missing the bottom half… cause i know you have nothing better to do than help me all day ??
https://www.naturalcuresexposed.com/contactThanks again!
PetreaForum: Fixing WordPress
In reply to: 2 problems – Title won’t budge and page thumbnail duplicatesRefresh works like magic (sometimes its the little things that hang you up!)
I tried doing a custom field as the above link showed and that didn’t work. Below is the source code for thumbnail.php (the link above shows that src= should be the image url, however i’m not sure how to change the code)
<!– Thumbnail from Custom Field, Post first image or default thumbnail–>
<div class=”thumbnail”>” rel=”bookmark”>
<?php
$PostContent = $post->post_content;
$ImgSearch = ‘|<img.*?src=[\'”](.*?)[\'”].*?>|i’;
preg_match_all( $ImgSearch, $PostContent, $PostImg );
$ImgNumber = count($PostImg[0]);if ( get_post_meta($post->ID, “Thumbnail”, true) )
{ ?>
<img src=”<?php echo get_post_meta($post->ID, “Thumbnail”, true); ?>” alt=”<?php the_title(); ?>” />
<?php }
elseif ( get_post_meta($post->ID, “thumbnail”, true) )
{ ?>
<img src=”<?php echo get_post_meta($post->ID, “thumbnail”, true); ?>” alt=”<?php the_title(); ?>” />
<?php }
elseif ( $ImgNumber > 0 )
{
for ( $i=0; $i < $ImgNumber ; $i++ )
{
echo $PostImg[0][$i];
};
}
else
{ ?>
<img src=”<?php bloginfo(‘stylesheet_directory’);?>/images/thumbnail.png” alt=”thumbnail”/>
<?php } ?></div>Forum: Fixing WordPress
In reply to: 2 problems – Title won’t budge and page thumbnail duplicatesHey Jkovis,
margin-top is there, I had it at 30 – I have put it all the way up to 100px just for grins and its sticking like glue.
I am only removing the image from the post body – its still in the gallery. When I take it out of the post body – it removes it from both places.
Forum: Fixing WordPress
In reply to: 2 problems – Title won’t budge and page thumbnail duplicateshmmm… not having any luck. That doesn’t move the title either. (I should have noticed that you use different comment marks for css.) ;-0
I had tried previously to just remove the image from the post, however that does not work – it removes both images. I just tried to insert the url to the image in the html tab, however that didn’t work either – no image. If you look at https://www.naturalcuresexposed.com/contact now, you will see the empty thumbnail box.
Forum: Fixing WordPress
In reply to: 2 problems – Title won’t budge and page thumbnail duplicatesThat didn’t budge it either.
I don’t want the image that is inserted into the post, however that seemed the only way to get it in either place – the other thing is that the custom image needs to be resized – how do I do that?
I’m using the wordpress editor that does not show line numbers ( by the by, how do you know what the line numbers is 218?)
Do you need me to copy and paste some code here?
I very much appreciate your help
Forum: Fixing WordPress
In reply to: 2 problems – Title won’t budge and page thumbnail duplicatesIts the title across the header image “natural cures and natural remedies”
Yes, the thumbnail box is already provided in the code. I inserted the image by going to the created page and selecting edit and then uploading and posting the image to the page. You can see the image entered into the box on the editing page with the visual and html tabs.
When you go to preview the page – it is inserted in both places.