monpelaud
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-DownloadManager] Translation issueHello,
Thank you for your very quick reply.
If I understand well, now to translate the pluging wp-DownloadManager I have to install the plugin Polyglot for an online translation. This means that is no more possible to have a translation on an intranet without internet connection.
No possibility of using the files .po and .mo stored on the web server itself?Best regards
Sorry a mistake of plugin!!
An upgrade from version 10.18 to 10.18.1 solves the problem.
Sorry for not making the upgrade before posting.Thanks for your help.
Hello,
Did you reproduce this dysfunction?
Is it a Subscribe2 bug or a problem only for my configuration?Thanks for your help.
Forum: Plugins
In reply to: [Participants Database] Add a link on private_id fieldHi,
That works perfectly.
Thanks for your help.Best regards
Forum: Plugins
In reply to: [Participants Database] Add a link on private_id fieldHi,
Ok, now the value of the variable $value is<a href="http://mysite.com/mywordpress/record/?pid=YFO04">YFO04</a>.
My issue is that the field private_id is not displayed as a link but as a string.
The string is displayed as is and not as a link.
How to display it as a link ?Many thanks
Forum: Plugins
In reply to: [Participants Database] Add a link on private_id fieldHi Roland,
I try to create a link to private_id field as you explain in this topic.
With the code below the variable $private_id is always empty !
Can you help me to find my mistake?`<?php while ( $this->have_records() ) : $this->the_record(); // each record is one row ?>
<?php
global $wpdb;
$private_id = $wpdb->get_var(‘SELECT p.private_id FROM wp_participants_database p WHERE p.id =’.$this->record->record_id);
?><tr>
<?php while( $this->have_fields() ) : $this->the_field(); // each field is one cell ?>
<?php
$url = get_permalink(2854).’?pid=’.$private_id;
if($this->field->name == ‘private_id’) {
$this->field->value = sprintf(‘<a href=”%s”>%s</a>’,$url,$this->field->value);
}
?>`Many thanks
Forum: Plugins
In reply to: [Participants Database] Date_recorded formatHi,
My WordPress date format is ‘d/m/Y’ and I have the same issue.
When I input 01/02/2013 (01 Feb 2013) in admin page I see 01/02/2013 in [pdb_record] page but whenever I “SAVE YOUR CHANGE” the date toggle between 01/02/2013 and 02/01/2013 and so on.In admin screen I can’t input 15/01/2013 or 01/15/2013.
Best Regards
Forum: Themes and Templates
In reply to: [dkret3] Edit 404 Page WidgetsHi Hangyandy,
Drag & drop again the widget in the sidebar for 404 page area and delete it again with “Delete” button, not with drag & drop.
Forum: Themes and Templates
In reply to: [dkret3] My header text disappearedWith Firebug I see this error:
Error: Permission denied to access property ‘toString’But I can not locate this error.
Forum: Themes and Templates
In reply to: [dkret3] Edit 404 Page WidgetsHi,
To remove a widget drag and drop of the widget out of the sidebar.Forum: Themes and Templates
In reply to: [dkret3] My header text disappearedHi,
In menu “Appearance/Header” have you checked the box “Header Text” ?The directory “ldap” and files “index.php, ldap_auth.php and readme.txt” must be directly under the directory wp-content/mu-pluging /:
The content of “wp-content/mu-plugings/” must be:
ldap
index.php
ldap_auth.php
readme.txtBest regards
Forum: Themes and Templates
In reply to: How to change the bullet ?@raby,
Many thanks it works.