Electric Studio
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why Does WordPress Automatic Upgrade takes 17 minutes?Have a look at this, might help: https://www.nerdgrind.com/wordpress-automatic-upgrade-plugin-failed-or-not-working/
Forum: Fixing WordPress
In reply to: htaccess with 301 redirect of index.php pagesYes, thank you, this works. Found this solution on the htaccess forum
Forum: Fixing WordPress
In reply to: htaccess with 301 redirect of index.php pagesI’ll give it a go, thank you, but if you should come across a solution, i’d appreciate it.
To solve this kind of problem, open up your .htaccess and add this line at the end of the file.
AddType application/xml .xsl
Save and upload.
To solve this kind of problem, open up your .htaccess and add this line at the end of the file.
AddType application/xml .xsl
Save and upload.
Forum: Fixing WordPress
In reply to: WordPress 2.8 Plugin Update ProblemI get this to, but I don’t have the WP Greet Box plug installed… Anyone any ideas?
Forum: Developing with WordPress
In reply to: Get Tags specific to CategoryOK, this is what i have done, much more basic than i thought:
<ul> <?php global $post; $myposts = get_posts('numberposts=-1&offset=0&category=13&order=DESC'); foreach($myposts as $post) : ?> <li> <?php if(get_post_meta($post->ID, 'Event Name', true)): ?><?php echo get_post_meta($post->ID, 'Event Name', true); ?><br /><?php endif; ?> <?php if(get_post_meta($post->ID, 'Event Location', true)): ?><?php echo get_post_meta($post->ID, 'Event Location', true); ?><br /><?php endif; ?> <?php if(get_post_meta($post->ID, 'Event Date Day', true)): ?><?php echo get_post_meta($post->ID, 'Event Date Day', true); ?><br /><?php endif; ?> <?php if(get_post_meta($post->ID, 'Event Date Month', true)): ?><?php echo get_post_meta($post->ID, 'Event Date Month', true); ?><br /><?php endif; ?> <?php if(get_post_meta($post->ID, 'Event Date Year', true)): ?><?php echo get_post_meta($post->ID, 'Event Date Year', true); ?><br /><?php endif; ?> <?php if(get_post_meta($post->ID, 'Event Time', true)): ?><?php echo get_post_meta($post->ID, 'Event Time', true); ?><br /><?php endif; ?> </li> <?php endforeach; ?> </ul>
Hopefully this will help someone.
Forum: Developing with WordPress
In reply to: Get Tags specific to CategoryBump, exactly what I’m looking for too. I want to grab the Meta data from multiple posts in one category, then loop it out nicely at the bottom of a page/in a sidebar etc.
Any friendlies out there?
Forum: Fixing WordPress
In reply to: Keep topmenu active when viewing postThis has now been sorted in 2.7, Hussah!
Forum: Requests and Feedback
In reply to: WordPress 2.7 Upgrade suggestionHear hear
Forum: Your WordPress
In reply to: Sanity check before go-live please@elfin and codeispoetry, thank you for your feedback. I will change this to use EM rather than pixels. Good feedback ??
Forum: Your WordPress
In reply to: Sanity check before go-live please@ moshu; Ha ha, yes, the Hello world post will go. I’m just waiting for the client to provide the first news/blog articles.
@ elfin; How do you mean?
Forum: Fixing WordPress
In reply to: 2 Sidebars, one for posts and one for pagesI have managed to sort this out, the result is on a temporary URL, https://www.es01.co.uk and is working sweet.
I figured out how to use a set of 4 different sidebars, then calling them by using 4 different templates. WordPress is pretty nifty huh?!
Thank you for all your suggestions.
Forum: Your WordPress
In reply to: Second WP SiteHi again jrodgers
That was exactly what I was looking for! Great stuff, been seaching for an answer to this for days now ?? Much appriciated.
Forum: Your WordPress
In reply to: Second WP SiteHi Jrodgers
Great site! Just wondering how you did the Latest news page? I’ve been trying to ficure out how to use WordPress like thet, or like a normal CMS if you will. Any tips or pointers would be greatly appriciated.