Riversatile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't update my PluginsWhat do you can see on your WordPress dashboard ?
Forum: Fixing WordPress
In reply to: Featured images not showing properly on single posts pages.Yeah, your thumbnail size is now the same !
Forum: Fixing WordPress
In reply to: Featured images not showing properly on single posts pages.Actually, your home page template grabs “attachment-medium-thumbnail”
If you would like the same thumbnail size, you have to use :
the_post_thumbnail('medium');Forum: Fixing WordPress
In reply to: Featured images not showing properly on single posts pages.Hi,
As you can see, your post template not use the good thumbnail size.
You have just to change thumbnail size attribute in your single.php file (in ../wp-content/themes/[your-theme-folder]/)
Function Reference/the post thumbnail: http://codex.wordpress.org/Function_Reference/the_post_thumbnail#Thumbnail_Sizesand perhaps to adjust style with CSS accordingly.
Forum: Fixing WordPress
In reply to: Data lost on switching Text/Visual editThat’s right.
Always uses CSS to add extra styling element rather than a tag.Forum: Fixing WordPress
In reply to: Changing directoryThis could make sense, especially if you plan to change your website domain name in the future!
Forum: Fixing WordPress
In reply to: Can't update my PluginsHi Abazei,
I think the root cause of your issue is not the same than mine that I wrote by the past in this post.
Try to deactivate your plugins, then try to add/edit posts.
Cheers
Forum: Fixing WordPress
In reply to: Fails to load jQuery script in the FooterThis behavior was caused by Collapse-O-Matic plugin.
I don’t know why, but save options in the “Collapse-O-Matic” settings has solved the issue !
Forum: Fixing WordPress
In reply to: Fails to load jQuery script in the FooterWell… By disabling all my plugins, I got jQuery script in the Footer section !
This means I probably have an extension which forces loading jQuery in the header section.Forum: Plugins
In reply to: [WP-PostViews] Strange display for visit countYes, with French translation.
You’re right Lester Chan !
While looking good on the web, I found that post that says the translation file “fr_FR.mo” contained some errors, one with numbers format for thousand separator.
À propos de la traduction française de WordPress 3.9La traduction présentait des problèmes :
- L’adresse du lien « Remarque » du menu WordPress (en haut à gauche de l’administration) renvoyait vers « https://wordpress.org/support/forum/requests-and-feedback(enanglais) » — oui, avec « (en anglais) » dans l’adresse !
- Le mot « PrestaShop » apparaissait à la place de « WordPress » dans trois chaînes de l’outil de personnalisation des thèmes ! Explication : PrestaShop est mon employeur, j’écris les documentations du logiciel, et je tape donc ce mot à longueur de journée. Je suppose que le soir venu, mes doigts ont glissé…
- Et surtout, les grands chiffres (supérieurs à 999) sont affichés avec une esperluette (&) : 1&234, 357&156, etc.
Forum: Plugins
In reply to: [WP-PostViews] Strange display for visit countsorry, I had not seen this post has been already resolved.
Désolé, je n’avais pas vu que la solution était déjà postée.
http://wordpress.org/support/topic/strange-display-for-visit-countForum: Fixing WordPress
In reply to: Video pop-up from a text linkYou’re welcom !
Happy new year !;-)Forum: Fixing WordPress
In reply to: The same SQL query 99 times on my pages (only pages)Hi,
It seems to be the plugin “Widget Logic”
http://wordpress.org/plugins/widget-logic/Forum: Fixing WordPress
In reply to: Is there a way to store all running SQL queries in a fileHi,
Here is an update of the previous script above.
Changes :- Added the remote server/host IP address
- Added the requested URL (path)
/* ####################################### Store in a file SQL queries I run via my WordPress Dashboard v1.2 ####################################### */ add_action('admin_footer', 'my_admin_footer_function'); function my_admin_footer_function() { // Custom Time Zone date_default_timezone_set('Europe/Paris'); // Define the file name and location in the variable $log_file // Below, the path correspond to http://your-site/dashboard-queries.txt $log_file = ABSPATH. "dashboard-queries.txt"; // Store the Date/Time of the page load in the variable $Now $Now = date("Y-m-d H:i:s"); // Store the IP address of the remote server/host in the variable $Ip $Ip = $_SERVER['REMOTE_ADDR']; // Store the requested URL (path) in the variable $RequestedUrl $RequestedUrl = $_SERVER['REQUEST_URI']; // Build the stored informations in the variable $Qdata $Qdata = $Now . "," . $Ip . "," . $RequestedUrl . "," . get_num_queries(); // Save data of the variable $Qdata in the file $log_file file_put_contents($log_file, PHP_EOL . $Qdata , FILE_APPEND); }