Riversatile
Forum Replies Created
-
Have you tried to leave the same options but to save the settings for make them refreshed ?
Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected '}'Hi,
Can you paste the code from your function.php here ?
If code is to important, use the pastebin (http://pastebin.com/)This seems to be a problem with the thumbnail image.
it is as if your thumbnail format had disappeared and the images are displayed at 100%.Check in this direction on your WordPress dashboard in ‘Settings’ and ‘Media’
Forum: Fixing WordPress
In reply to: Hoe to put Jquery in Header.php – PLatform ProHi,
You do not need to add jQuery to your Header.php manually.
Like me if you want to make your WordPress theme compliant with jquery on all page (home, single, page, archives, category, tag…) do this :
1) Open the file functions.php from your theme folder.
2) Go to the link below and Copy/Paste all the code into functions.php theme file :
http://pastebin.com/rkNbB3UL3) Save and overwrite the functions.php file on WordPress theme folder
This will register dynamicaly the official jQuery Library into the Header section for all URL where WordPress generates the page request, whatever the URL on your website.
You should see this in the source code of your website pages :
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js?ver=1.8.3"></script>The advantage of do this, is that you can decide by yourself to use the latest jQuery Library version, or not.
Forum: Fixing WordPress
In reply to: Forbidden ErrorI forgot something important… If your site has been hacked.
Still with your FTP browser, check the Date/Time of the last modification of each files first in your Theme folder ! Then in the root WWW, wp-admin, wp-includes folders.
The hacker has perhaps used SQL injection to change your files hosted on your FTP server ! Folder permissions as well !
See with Filezilla.What’s your website URL ?
Forum: Fixing WordPress
In reply to: Images not showingYou’re welcome.
Forum: Fixing WordPress
In reply to: Forbidden ErrorOK, so there is no rules to block some files/folders.
But if there is nothing between BEGIN WordPress and END WordPress, it miss something important for WordPress…
Try by adding this :
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressThen save the file, and upload it to overwrite it.
Then test again.Forum: Fixing WordPress
In reply to: DHi,
You have to change the sidebar name that is called.
Forum: Fixing WordPress
In reply to: Can't remove Pages frfom the header !!Hi,
In your WordPress dashboard, if you go to “Appearance” and “Menu”, you should see that a custom menu exists.
Otherwise, go to the Widgets section and looking for an active widget that displays all these pages in the Header.
Forum: Fixing WordPress
In reply to: Forbidden ErrorHi,
First, with your FTP browser (for example : Filezilla), download the file called HTACCESS that is in the WWW root folder. of your website.
If something seems to be strange into the file, paste the code here.Forum: Fixing WordPress
In reply to: Images not showingHi,
First, check using your FTP browser (for example : Filzilla) if your “upload” folder has the necessary permissions.
Try 755, but for some reason, some servers cause a failure when uploading. If you change to 755 and all is well, keep it, otherwise you may need 777.
Forum: Themes and Templates
In reply to: Theme with TWO SEPARATE navigation bars?What’s your current theme name ?
Is it a WordPress theme you get here http://wordpress.org/extend/plugins/ ?Forum: Themes and Templates
In reply to: Theme with TWO SEPARATE navigation bars?You can do this yourself using widgets.
But for that, you have to create additional widget places in your theme template files.For example, you want a page menu at the top :
Put this kind of code in the Header (not in the <HEAD>…</HEAD>) of your PHP template :
<div id="page-menu"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("page-menu") ) : ?> <div class="boxcontent"> This widget is not configured </div> <?php endif; ?> </div>Then, in your Function.php file, put this code accordingly to the dynamic_sidebar name (here it’s “page-menu”) :
if ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => 'page-menu', 'before_widget' => '<div class="boxcontent">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ));Finally, go to your Wordperss widget dashboard, you should see the dynamic side bar called “page-menu” ! Then you can put eveything you want (predefined widget, text/html widget, etc…).
That’s is !
Here is the CODEX source for “register_sidebar” function :
http://codex.wordpress.org/Function_Reference/register_sidebarForum: Fixing WordPress
In reply to: How to 404 Redirect Deleted Tag Pages?Do you have TAG.PHP and CATEGORY.PHP files in your Theme folder ?
Forum: Fixing WordPress
In reply to: How to 404 Redirect Deleted Tag Pages?Sure, if google don’t give the tag page URLs for tag that don’t exist, 404 error will not occurs for any user.