masok88
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Display most recent post on index pageThanks, from what I gather what that guy is looking for is something different to what I’m looking for though.
I’m almost looking for a redirect which points to the most recent post ie; view the post entry as it would appear on the single.php template. A redirect is one thing but is there a way to make it point to the most recent post?
good idea +1!
anyone?
Forum: Fixing WordPress
In reply to: How to produce a ‘Blogroll’ per postOk, thanks.
How then would I drop the call for the custom field then into the blogroll? This is the call
<?php wp_list_bookmarks('title_li=&categorize=0&category=2'); ?>
If the regular call to output the id is..
<?php $values = get_post_custom_values("list-id"); echo $values[0]; ?>
I tried a few different ways but none seemed to work, any advice?
Forum: Fixing WordPress
In reply to: How to produce a ‘Blogroll’ per postI would be willing if only I possessed the knowledge. The way I see it the way custom fields are structured aren’t practical ways of display hyperlinks and their titles, in fact I would say Custom fields aren’t a way to go but something only faintly in the right direction, am I wrong?
I tried calling the blogroll in a loop on my ‘single.php’ page.. which works, but I then tried to display a particular category linking the id with a custom field to the post. But I’m not sure if you can call a custom field within a call like that for the blogroll.. is that even possible?
Forum: Fixing WordPress
In reply to: Want to hand write a form, PHP post function problemsYou sir, are a legend! Thank you!
Forum: Fixing WordPress
In reply to: Want to hand write a form, PHP post function problemsHey,
The correct address for the script is..
https://www.honestorchard.com/wp-content/themes/theme/assets/inc/contact.inc.php
likewise the prettyforms variable comes from a javascript file found at..
https://www.honestorchard.com/wp-content/themes/theme/assets/js/beautiful-forms.js
the problem seems to be is that the php isn’t being read? or even loaded as wordpress I think if it doesn’t register a page will load up the default page (what is displayed on the home page in my case) or a 404 page in its stead.
So I’ve zipped and uploaded the php and js file if this is any help?
https://www.honestorchard.com/_assets/Archive.zip
Hope this helps.
Forum: Fixing WordPress
In reply to: Want to hand write a form, PHP post function problemsHey,
The link to the page is..
https://www.honestorchard.com/#contact
I’m using a seperate script which is being loaded with the post function. It’s this which doesn’t seem to be working.
Forum: Plugins
In reply to: Audio PlayerHi,
I’m producing a portfolio through wordpress. I’ve got a few audio files to put up which I’m displaying with audio player.It’s displaying on the page but when I press play it’s giving me a ‘File Not Found’ message on the player.
Here’s a link to one of the audio files..
[audio src="https://www.mariehorner.com/assets/aud/Track06.mp3" /]
Which I insert into the post using..
[audio:https://www.mariehorner.com/assets/aud/Track06.mp3%5D
And you can view the end result here..
https://www.mariehorner.com/radio-producer/
Any thoughts? I don’t have the foggiest re; what’s going on, the link is good but the flash player isn’t getting it for some reason. ‘File Not Found’ and all that
Cheers,
Keith
Forum: Fixing WordPress
In reply to: Unique index pageupdate –
I’m now using a custom page which I’ve discovered.
However I’m using a loop on this page, for some reason the loop I’ve created is looping the page ‘Home’ (The Page Name) rather than my posts. Any advice?
Also, is there anyway I can limit the posts to display the 4 most recent posts? Would a regular php while loop work?
Thanks!
Keith
Forum: Fixing WordPress
In reply to: Unique index pageHi,
I saw the mentioned article but what I’m wanting to do is have a unique index page featuring a number of unique divs and layout. Not a static page. I know how to do this with EE but it’s driving me barmy trying to figure it out in WP. Any advice? I don’t want a static page but a unique page.
Forum: Fixing WordPress
In reply to: Safari not rendering CSSHi,
Just realised what I’d done. The theme description at the start of the style.css file I’d create went before..
‘@charset “UTF-8”;
/* CSS Document */’Which should be at the top of a css document. This wasn’t the case and clearly Safari picked up on this. Schoolboy error, thanks for the quick response!