runspect
Forum Replies Created
-
Thanks for your answers. 😉
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Howto know if it is cachingNo, disk basic.
My rules in .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# Default WordPress Directives
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>If I remove that rules, the index page works, but not another pages.
Forum: Fixing WordPress
In reply to: Strange “Ghost” comment on Pages, Not in comment boxTry to change in filters.php line 138
if (current_user_can(‘edit_post’)) {
to
if (current_user_can(‘edit_posts’)) {
Best Regards.
Forum: Fixing WordPress
In reply to: Comments on page problemsIn filters.php line 138 change:
if (current_user_can(‘edit_post’)) {
to
if (current_user_can(‘edit_posts’)) {
Best Regards.
Forum: Fixing WordPress
In reply to: Comments on page problemsI’ve found the problem. It was in my theme.
I’ve changed the function:
if current_user_can(‘edit_post’, $post_ID )
(Before version 2.9 it worked fine, now it breaks the link & comments of the pages)
to:
if current_user_can(‘edit_posts’)
Now it works right.
Forum: Fixing WordPress
In reply to: Comments on page problemsAlso I cannot edit pages, for example, the <?php edit_post_link(“Edit”); ?>
links to http://domain.name/wp-admin/post.php?action=edit&post=
remark that the page_id does not exist.
Forum: Fixing WordPress
In reply to: Both at the same time: My Sidebar & WidgetsThanks.
Forum: Fixing WordPress
In reply to: Comments in 2.7: Odd an EvenI need a simple way to do it.
The even & odd classes are still obscure.
🙁
Forum: Everything else WordPress
In reply to: Spanish translation of WordPress 1.5 hereSÃ, es verdad, es cosa de la plantilla (theme) utilizado. He abierto los archivos de mi tema con un editor de texto, y después de traducir las palabras ahora me funciona correctamente.
Forum: Installing WordPress
In reply to: Memory read errorFinally, I’ve solved the problem. It was a problem in my server configuration.
Thanks.