Riversatile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problems uploading imagesHi,
Did you check disk space on your server ?
Here : http://stackoverflow.com/questions/11027121/page-templates-disappeared-with-wordpress-3-4
But I missunderstood that the guy told about “Custom Page template” and not about “Custom Post Template” !
I found the issue, here I saw 1 people that said to replace :
/* Template Name Posts: MyCustomTemplate */by
/* Template Name: MyCustomTemplate */But he was wrong !
I put back :/* Template Name Posts: MyCustomTemplate */And now it’s working !!!!!!!!!!
Thanks guys
@simon Wheatley: The issue in located in the Admin Dashboard, not on my theme templates.
Is my template headers will really help you ?Forum: Fixing WordPress
In reply to: Static home pageGo to http://www.your-web-site/wp-admin/options-reading.php
In Front page displays section, check the box “A static page”, then select one of your pages.Forum: Fixing WordPress
In reply to: WordPress backups: What do you use?Hi,
I don’t know VaultPress.
On my website, I use WordPress Database Backup Version 2.2.3
You can do backup on demand and schedule them (hourly/daily/weekly) for whatever databases, and select which tables you want include in the backup ! Additionaly, you can set an email address where to send backup(s) !!!
I’m french, so my WordPress is in french.
Perhaps this is the issue…fortunately, I can use custom fields 😉
The author of the plugin Simon wheatley has released an upgrade for WordPress 3.4, but it doesn’t solve this issue !
Forum: Fixing WordPress
In reply to: using to loop below widget areaWordPress was born especially to support dynamic content… You can do that with Widget, but before you have to create/define a new Widget area into your theme.
Follow these steps : Widgetizing Themes
This is a very smart and amazing feature in WordPress 😉
Forum: Fixing WordPress
In reply to: Header, Homepage is a Mess after 3.4 upgradeYou can add this code where you want in the function.php file. But paste it between two functions, not paste it into a function !
Download WordPress 3.3 here : http://wordpress.org/wordpress-3.3.zip
Forum: Fixing WordPress
In reply to: Header, Homepage is a Mess after 3.4 upgradeI saw “Superfish” in your code, do you have tested to update (if possible) this plugin ? If yes, and if it still doesn’t work. I suggest you to go back to WordPress 3.3
Otherwise, I know jquery library has been updated to 1.7.2 on WordPress 3.4, so perhaps that’s why it hangs now. So I suggest you to de-register Jquery 1.7.2 and register the old version Jquery 1.7.1 by adding these lines of code into your functions.php file :
//Making jQuery Google API function modify_jquery() { if (!is_admin()) { // comment out the next two lines to load the local copy of jQuery wp_deregister_script('jquery'); wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js', false, '1.7.1'); wp_enqueue_script('jquery'); } } add_action('init', 'modify_jquery');This will replace the source of the Jquery library with the release 1.7.1 which was implanted into WordPress 3.3
Regards
Forum: Fixing WordPress
In reply to: Google indexing uploads foldersHi,
On my website, as I don’t want Google index my images (.jpg etc…) and other files in wp-content, wp-admin and wp-includes folders, by default I block search engines by this way :
User-agent: Googlebot User-agent: MSNBot User-agent: Slurp User-agent: Teoma User-agent: bingbot Disallow: /wp-*Like that, the search engines Google, MSN, Bing, Yahoo will not index files at all in wp-content, wp-admin and wp-includes.
And here below is to block Google Image indexing :
User-agent: Mediapartners-Google Disallow:As soon as you put this in place, do not forget to ask Google to remove the indexed pages using the Webmaster Tools Google.
Regards
Forum: Fixing WordPress
In reply to: using to loop below widget areaHi,
Simply add an other widget “Recent Posts” at the bottom of your widget area, but specify to show only 1 post 😉
Is this what you want to do ?
But apparently, this solution doesn’t work for me… 🙁
I have to manually add the custom field “custom_post_template”I saw this post on the web :
http://stackoverflow.com/questions/11027121/page-templates-disappeared-with-wordpress-3-4Apparently from 3.4 the "Template Name" comment needs to look like this: /* Template Name: MyCustomTemplate */ Hope this helps somebody else.