monpelaud
Forum Replies Created
-
Thanks for your reply,
With the modification described above (ligne 257) WP Clock widget works fine with multi-blogs wordpress.It’s a path issue.
Currently WP Clock widget search flags images in:
http://monblog.com/wp-content/plugins/digital-and-analog-clock-widget/flags/fr.gif
with multi-blog wordpress the right path is:
http://my_blog.com/my_subdomain/wp-content/plugins/digital-and-analog-clock-widget/flags/fr.gifTo fixe this bug you should replace /wp-content/plugins/ by “.PLUGINDIR.” in /includes/Utility.php, ligne 257.
Best regards
Forum: Themes and Templates
In reply to: French language requirementJohn,
Have you download and install this french translation file ?
http://liseweb.fr/BLOG/wp-content/uploads/dkret34-fr_FR.zipRegards
Forum: Themes and Templates
In reply to: Dkret3 Theme: Link header image to blog home doesn't workIt’s just an information to Jörn, the theme author, for doing the correction in a next release of Dkret3.
Best regards
@frameitsam and lheintzman,
I have the same problem as you, in full screen the buttons are no longer available. Have you find a solution to fixe It ?
Thanks
Forum: Plugins
In reply to: [Recent Posts Slider] [Plugin: Recent Posts Slider] Images Not ShowingHi,
Which OS and which Web server do you use ?
To make it works try to replace (ligne 424 and ligne 431:
$rps_img_src_path = $upload_dir['baseurl'].$post_details[$p]['post_first_img']['0'];
by
$rps_img_src_path = $upload_dir['baseurl'].”/”.$post_details[$p]['post_first_img']['0'];Forum: Plugins
In reply to: [Recent Posts Slider] [Plugin: Recent Posts Slider] Images Not ShowingHi,
@othellobloke and @v00d00, are you using a web server on a Microsoft Windows Server ?Forum: Plugins
In reply to: [Recent Posts Slider] [Plugin: Recent Posts Slider] Images Not ShowingHi,
Same problem too !
Someone has the solution ?Best regards
Forum: Plugins
In reply to: [Really Easy Slider] [Plugin: Really Easy Slider] No posts selected !Sorry, I find It.
Forum: Plugins
In reply to: [Plugin:Upload Widget] need it as a plugin, not a widget…Hi,
Sorry but upload_widget is designed as a widget.
To convert it in a plugin requires a new design.Best regards
Forum: Themes and Templates
In reply to: Theme dkret 3 and WordPress 3.1.2Forum: Themes and Templates
In reply to: Theme dkret 3 and WordPress 3.1.2Hi,
The problem was due to the plugin.
My problem is solved.Forum: Themes and Templates
In reply to: Theme dkret 3 and WordPress 3.1.2Hi,
I have an other issue with javascript functions.
I can’t make the plugin ” WordPress plugin random post slider ” to work.
If I switch to twentyten theme the plugin works fine.
If I rename “wp-content\themes\dkret3\library\js” to “wp-content\themes\dkret3\library\js-old” the plugin works fine to.Best regards
he only way to change the root directory is to modify the source code.
In lines 84 and 86 replace WP_CONTENT_DIR by the path of the root directory you need.
For example change:function upload_widget_full_path( $instance ) { if ($instance['upload_path']) { $full_upload_path = WP_CONTENT_DIR.'/'.$instance['upload_path'].'/'; } else { $full_upload_path = WP_CONTENT_DIR.'/'; } return $full_upload_path; }by
function upload_widget_full_path( $instance ) { if ($instance['upload_path']) { $full_upload_path = '/yourrootdir/'.$instance['upload_path'].'/'; } else { $full_upload_path = '/yourrootdir/'; } return $full_upload_path; }‘yourrootdir’ is the common path for all instances of the plugin.
The other part of the upload path of each instance ($instance[‘upload_path’]) can be adjusted through the parameter “Upload Path:” of the plugin.Forum: Plugins
In reply to: [Upload Widget] [Plugin: Upload Widget] Upload folders?Sorry but it is not possible to upload a folder.
Forum: Themes and Templates
In reply to: Theme dkret 3 and WordPress 3.1.2Hi,
After I renamed “js” in “js-old” I clear the cache and only when I saw TinyMCE buttons again I renamed it in “js”.
Best regards