Riversatile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Image permalink 404I understand now. I thought the issue could be in the attachment.php file.
I will not be able to help you more, sorry.Forum: Fixing WordPress
In reply to: Problem adding Adsense ads.Simple !
Place the Google Adsense code into the single.php file (all post pages). But not on index.php file which is home page.Forum: Fixing WordPress
In reply to: Single Posts, no header and then repeating with header half way downYes, and you should see for a ‘loop’ issue due to a syntax error near from the post title in your single.php file.
But if you do not change anything in your PHP files, this is certainly a plugin issue.
Forum: Fixing WordPress
In reply to: Image permalink 404I’m not sure :
<?php die('image');should be there in an attachment.php file !
And it miss ?> at the end.Did you try to make a copy of your attachment.php file and to remove it from your theme folder ?
Forum: Fixing WordPress
In reply to: Image permalink 404OK.
Can you paste the content of your attachment.php file in a paste bin ?
http://wordpress.pastebin.ca/Forum: Fixing WordPress
In reply to: question: how can i hide plugins?Hi,
You can use Admin Menu Editor
or do it manuelly using your function.php file :
In your function.php file (in yout theme folder), you can use the if is_admin statement to do not display plugins page for other users.The WordPress function is_plugin_page() return TRUE if the page http://www.your-website.com/wp-admin/plugins.php is called, so :
Do a IF statement for is_plugin_page()
then DO a IF statement for is_admin
if ( ! is_admin() ) {
echo “You are not ADMIN, you’re redirected to http://www.your-website.com/wp-admin/”;
}
else {
echo “You are ADMIN, stay on plugins page”;
}
end if;
else {
return;
}
end if;If this could help you…
Forum: Fixing WordPress
In reply to: WP's getting dates wrongHi,
Did you check date managing with your server host ?
Forum: Fixing WordPress
In reply to: Image permalink 404Hi,
Do you have a image.php file in your theme ?
Forum: Fixing WordPress
In reply to: suddenly domain stopped working! I want backup.Connect to your database server and export your database to make a backup.
Forum: Fixing WordPress
In reply to: Fatal error, i cant access my site or dashboard at all :(Hi,
Very easy…
I suggest you to read How to deactivate all plugins when not able to access the administrative menus?Cheers
Forum: Fixing WordPress
In reply to: Not working archive templateHi,
What’s the file name of your archive template ?
Forum: Fixing WordPress
In reply to: meta fields are missingOK.
Try to open an existing page… Can you see the Custom fields that was created at the page creation ?
Forum: Fixing WordPress
In reply to: Theme No Longer Propagates- Everything out of place!It seems CSS load correctly now…
Forum: Fixing WordPress
In reply to: Changing links messed up admin login redirectionHi,
Change the urls back. See Changing_The_Site_URL for details of how to do this.
Forum: Fixing WordPress
In reply to: Images not displaying on the siteI don’t understand if you talk about the backend or frontend side of WordPress…
If you can see these featured images in your WordPress Media gallery, and you can not see them in your blog posts (in the website), check if your theme’s PHP templates contain the_post_thumbnail function.