dubyah
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What did I do wrong?thats true… but if you look at his code, I reckon my answer will still fix it!
Forum: Fixing WordPress
In reply to: Rss link in “links” categoryPointers to a theme that has the links with RSS feeds would do the job, I can de-construct it from there
Forum: Fixing WordPress
In reply to: What did I do wrong?the last “?” should be the other side of the closing >!
<?php
if (is_home()){
echo (‘hello world’);
}
else {
echo (‘Google code here’);
}
>?should be
<?php
if (is_home()){
echo (‘hello world’);
}
else {
echo (‘Google code here’);
}
?>Forum: Fixing WordPress
In reply to: New PostHave a look at this posting issue here. If that doesn’t solve it then please post some more details, error messages a link to your site.
Forum: Fixing WordPress
In reply to: Editing the About page?Go into your admin pages, click on: manage / pages / about
click edit
then on right hand side under discussion, uncheck the tickbox for allow comments.
Forum: Fixing WordPress
In reply to: Rss link in “links” categoryI’m struggling with the same issue, I want to put an RSS button next to any link where I add an RSS feed (under advanced) in my blogroll.
I’ve read everything I can find on the get_links and its like, templates and managing links via bookmar-template etc… NOWT.
The nearest entry I can find anywhere is this:
“RSS URI – URI of the RSS feed associated with the Link, which will be displayed next to the Link itself (if your Template allows it). Example: https://example.com/feed/”
yes, thats exactly what I’d like to do… anyone? It seems odd that its something you can add but not use!
Forum: Installing WordPress
In reply to: Can’t publish post and can’t edit postsgot it… eventually… you need to follow these instructions from this thread
bleh, just turn off mod_security for the wp-admin area:
IF YOU DO NOT HAVE an .htaccess in your wp-admin/ directory:
create a text file on your desktop:
put the following inside it:
<IfModule mod_security.c>
SecFilterInheritance Off
</IfModule>save the file.
Upload the file to your wp-admin directory.
Rename the uploaded file to .htaccess (with the .)
IF YOU DO HAVE an .htaccess in your wp-admin/ directory:
Edit it:
<IfModule mod_security.c>
SecFilterInheritance Off
</IfModule>save the new .htaccess
Forum: Installing WordPress
In reply to: Can’t publish post and can’t edit postsme 3 on funandjames.com. anyone found anything more out?
I’ll keep looking and post here. If/when I find a solution.
(I’ve upgraded to 2.2.2 – same prob)
Forum: Fixing WordPress
In reply to: Cannot display youtube video in wordpress 2I’m sure ages ago I found out you could do something like [youtube=https://blablabla] but maybe I dreamt it… as I cant find it again now!
Forum: Themes and Templates
In reply to: Template Idea – Plausible?easy ?? multiple loops is the way forward. https://codex.www.ads-software.com/The_Loop
Forum: Everything else WordPress
In reply to: Passing Form Variables Between PagesI think its due to wp-blog-header as I found here, it passes them but then they get deleted. see here (although no solution yet)
Forum: Fixing WordPress
In reply to: access $_POST[data] in custom page template.I’m having the same issue, I’ve determined that wp-blog-header.php is responsible by placing an echo $_POST[] above and below it… why this deleting my variable I can’t fathom
anyone? Please!
Forum: Plugins
In reply to: Integrating Simple PHP Gallery (WP 1.5)In case anyone else has this single row issue add the following to your wordpress theme style.css:
div.imgwrapper{
float:left;
margin:10px;
}
p#credit{
clear:both;
}and a good guide to installing SPG into wordpress here: https://www.quirm.net/show.php?contentid=11
Forum: Plugins
In reply to: Integrating Simple PHP Gallery (WP 1.5)The one thing I’ve not mastered… getting more than one column of images! Any pointers?
Forum: Plugins
In reply to: Integrating Simple PHP Gallery (WP 1.5)Got simple PHP gallery, working and theme’d on an ISP with Safe Mode enabled.
If anyone else is struggling with this scenario, drop me an email.