C S
Forum Replies Created
-
Forum: Plugins
In reply to: [Qtranslate Slug] A small bug with big influenceStefan, you made my day. Your code fixes a problem that mad me search for 4 days…
We noticed a strange behaviour in a blog and could absolutely not explain what was happening behind the scenes. I just noticed that –obviously– IDs were mixed up heavily by wordpress.
To be sure, we added code that would show me the ID not only in the URL but also
– in the <TITLE>
– in my page’s content (next to the article date, which did not match for the shown headline/text)
– in a sidebar widgetIn these 4 places, I found 4 different IDs :-/
I assumed that the fault was in qTranslate itself, but after testing more intensive I could spot “qTranslate-slug” was causing the error.And with your code, everything works fine again. Thanks a lot!
Carlos, you really should update your function ??
Forum: Plugins
In reply to: [qTranslate] [Plugin: qTranslate] Different menu's on each languageDo you know PHP?
First, I would add a class to my <body> naming the selected language, e.g.
<body class="en">
or
<body class="de">
Then you can use CSS to remove selected menu items. Just like this:
.en li#menu-item-215 { display: none; }
.de li#menu-item-216 { display: none; }How to add a class lang?
No problem, if you use the parameter option of qTranslate.<?php $language = $_GET['lang']; ?> <body class="<?php echo $language; ?>">
Use Firebug to find out the IDs of your menu items.
Forum: Plugins
In reply to: [qTranslate] How to remove Tooltips on flags?try to remove
title="'.$q_config['language_name'][$language].'"
from line 87and
title="'.$q_config['language_name'][$language].'"
from line 119in file ‘qtranslate_widget.php’
(but be sure to keep the';
at the end of these lines)Forum: Plugins
In reply to: [Media Library Assistant] conflict with Plugin qTranslateDavid, thanks for your quick reply.
Everything you write is correct; it’s exactly what I found out.
I was wrong to assume my problem came from qTranslate and MLA.
Sorry for that!Christian
Forum: Plugins
In reply to: [Media Library Assistant] conflict with Plugin qTranslateBy now, i am not sure anymore if the combination MLA and qTranslate is the problem…
It might be qTranslate an EG Attachments.
Forum: Plugins
In reply to: [qTranslate] conflict with Plugin Media Library AssistentHmmmm; now it seems that qTranslate doesnot interfere with MLA but with EG Attachments…
Any help is appreciated.
Forum: Plugins
In reply to: [EG-Attachments] the same attachment in differents articles/pagesI think it’s not.
I read this was a limit of the wordpress database.Forum: Plugins
In reply to: [qTranslate] conflict with Plugin Media Library AssistentI have a strong suspicion that this conflict is caused by the mark
<!--
which both of the plugin use to divide different blocks of information…
Forum: Plugins
In reply to: [Media Library Assistant] conflict with Plugin qTranslateI have a strong suspicion that this conflict is caused by the mark
<!--
which both of the plugin use to divide different blocks of information…
My suggestion is for the layout of contents of the tab “Backup”:
“Enable Scheduled Backups” yes/no with checkbox is okay.
The words “which will be emailed to the address below” should be removed.
The layout of the interval setting is okay.
But…… the following options should be grouped by radio buttons, not by checkboxes. So it is clear that only one of them can be activated:
(o) send backups by E-Mail to admin –> SHOW admin’s mailaddress, read-only. Give NO input field!
(o) send backups by E-Mail –> [input field for custom address]
(o) keep backup files on server –> [input field for number]Having done this, the hint “Please note that this setting only applies if “Send Backups by Email” is not selected.” can be removed.
That’s much easier to understand, I bet.Forum: Fixing WordPress
In reply to: Permalinks are not working, Shortlinks workRaymond, I can see you got your shortlinks working…
How did you reach it?Forum: Plugins
In reply to: [PDW Media File Browser] PDW Media File Browser Plugin ProblemI think I got it.
In line 71 (index.php) we have to set the path to
'wp-content/blogs.dir/10/'
… and then in line 76 we have to add a ‘/’, so it will be
'$pdwUploadPath = '/' . str_replace'
Having done this, we see the PDW File Browser; we can’t use it yet, due to an error 403, access denied. But that’s a CHOWN thing for our admin ??
Forum: Plugins
In reply to: [PDW Media File Browser] PDW Media File Browser Plugin ProblemIn my case, I’d expect the path for PDW to be
‘wp-content/blogs.dir/10/’
but it does not work – although adie($pdwUploadPath);
in line 72 gives
‘/webs/htdocs/projekte/wordpress/wp-content/blogs.dir/10/’This seems to be the right linux-path on our server.
However, PDW does not work.We are using WordPress 3.4.1 and PHP 5.3.10
Forum: Plugins
In reply to: [PDW Media File Browser] PDW Media File Browser Plugin Problemhi… we are using wordpress’ multisite feature (WP 3.4.1) and have set up ca. 10 blogs in one installation. now we would like to give PDW a try. but, unfortunately, we get the message
Upload folder doesn’t exist or $uploadpath in config.php is set wrong!According to the hint above, I have tried to change line 71 of ‘index.php’ to different values, but without success…
by default, the blogs put down their files not in
‘wp-content/uploads/’
but in
‘wp-content/blogs.dir/XXXX’ where XXXX is the ID of the blog.
the index.php/line 17 does not accept this/these paths(s)#Can anyone help me?