mikem1986
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Using the search function…Im sure i just have to change something in functions.php or search.php but im not sure what
Forum: Fixing WordPress
In reply to: ThumbnailsIm sure i just have to change something in functions.php or search.php but im not sure what
Forum: Fixing WordPress
In reply to: Why isnt my site working?Still isnt sorted
Im thinking of giving up lol
Forum: Fixing WordPress
In reply to: Why isnt my site working?sorry for the late reply
If you click on the first link where it says comment on “band” it auto scrolls down to the comment box, also when you click share this “band name” it brings up the social bookmarking icons.
Now on the second link which is a page and not a post despite there being the same code the comment this and share this link arent working?
Hope you can help!
Forum: Fixing WordPress
In reply to: Why isnt my site working?apologies…do you know whats wrong with my site samboll?
Forum: Fixing WordPress
In reply to: Help with fontshttps://new.myfonts.com/WhatTheFont/
Try that
Forum: Fixing WordPress
In reply to: I probably wont get a reply but what the heck…Thanks Dave
Ill give it a whirl and see what i come up with
Forum: Fixing WordPress
In reply to: Query post to show one post per author ?I would like to do something similar to this but only have 1 of each category on the page…
Forum: Fixing WordPress
In reply to: Is there a way of doing this?anyone?
How come nobody answers threads anymore? Isnt this a support forum?
I dont want to sound harsh but ive had about 10 support questions with not one even with a reply?!
Grrr
Forum: Fixing WordPress
In reply to: Can’t Insert Photos into Posts!!you click the little box image at the top and upload it and then click “insert into post”
Forum: Requests and Feedback
In reply to: User Generated Content: Front-End MenuI want this too!
Forum: Plugins
In reply to: Is there a way to include value section of custom fields in a search?anyone?
Forum: Plugins
In reply to: All In One SEO Upgrade ErrorI upgraded and found the donation button not working but everything else seemed fine
Forum: Fixing WordPress
In reply to: Adding Custom FieldsSorted it
<p class=”itemlinks”>date: <?php $key=”date”; echo stripslashes(get_post_meta($post->ID, $key, true)); ?> </p>
<p class=”itemlinks”>Venue: <?php $key=”venue”; echo stripslashes(get_post_meta($post->ID, $key, true)); ?> </p>
<p class=”itemlinks”>city: <?php $key=”city”; echo stripslashes(get_post_meta($post->ID, $key, true)); ?> </p>
Forum: Fixing WordPress
In reply to: Adding Custom Fieldsive tried using
<?php the_meta();??>
but this brings in all my custom fields so it adds the images and thumbnails when i only want venue, city and date
Ive also tried echoing with
<p class=”itemlinks”>Venue: <? echo get_post_meta($post_id, ‘venue’, true); ?>
<p class=”itemlinks”>Date: <? echo get_post_meta($post_id, ‘date:’, true); ?>
<p class=”itemlinks”>City: <? echo get_post_meta($post_id, ‘city’, true); ?>this then just doesnt show the information?
where am i going wrong?