3pepe3
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate] Theme Localization with qTranslateyou welcome
Forum: Plugins
In reply to: [qTranslate] DeaktiviertENGLISH!!!!!!
Forum: Plugins
In reply to: [qTranslate] Theme Localization with qTranslateHave you define ‘WPLANG’ in your wp-config.php ?
Something like :
define('WPLANG', 'fr_FR');
get_locale or qtrans_getLanguage must be printed with an echo, print_r our var_dump.
Something like this :
<?php var_dump(get_locale(),qtrans_getLanguage()) ?>
Forum: Everything else WordPress
In reply to: Document managment ?I found https://www.ads-software.com/plugins/enhanced-media-library/
With this plugin I can manage all the files with different file extensions without leaving the native media manager.
I will keep testing this plugin but it seemas that I would rate him with 5 stars
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] FeaturesIn my case I use wordpress very often with 3 different environments: dev, staging and production.
I would love to have a cron that would update the files and posts from production to dev.
And going from dev to production with a manual action.Another great feature would be an option to delete the transient records on the targeted environment… Sometimes from one environment to another I have some bugs when the serialized object is to complex on the transient.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] FeaturesA while ago I was searching for this feature and I found :
https://www.ads-software.com/plugins/wp-re-importer/Forum: Plugins
In reply to: [OmniGallery by Colorlabs & Company] Facebook Session ExpirationClear cookies will do the trick if you use chrome… I was unable to connect in Facebook with the latest version of firefox and iceweasel (tested like 20 times in Debian7 and windows7)
So this plugin is ever going to work with the most used frameworks like gantry, genesis, pagelines or headways… Seems that we should find another gallery plugin…
Thanks @vyonte… Yesterday I was testing several version and also the version 1.9.8 is working.
I agree with you
Nextgen not working with Gantry Framework
Forum: Plugins
In reply to: [qTranslate] [Plugin: qTranslate] Content-Language meta is obsolete in HTML5in my case I just don’t like the output on the <head> made by qTranslate…
add_action('init', 'remove_header_info'); function remove_header_info() { remove_action('wp_head', 'qtrans_header'); }
Also you can use a metabox with the wysiwyg :
https://coderrr.com/how-to-add-a-wordpress-wysiwyg-editor-to-a-post-meta-box/
Forum: Plugins
In reply to: [qTranslate] qTranslate broken after update WP to 3.5 versionIf you use another plugin to use the visual editor on widgets then you should use something like this:
if (is_admin()) { switch (basename($_SERVER['SCRIPT_FILENAME'])) { case "post.php": case "post-new.php": case "comment.php": add_filter( 'wp_default_editor', create_function('', 'return "html";') ); default: return; } }
instead:
add_filter( 'wp_default_editor', create_function('', 'return "html";') );
Forum: Plugins
In reply to: [Widget Logic] Widgets won't expand in admin to display settings