Nouniz
Forum Replies Created
-
Forum: Plugins
In reply to: [File Manager] Security bug !!! users see the complete url with OPEN fileis it fixed ?
Forum: Plugins
In reply to: [Invoices for WooCommerce] suggestion update (jquery problem)Hi,
I have a warning from “Enable jQuery Migrate Helper” plugin concerning jQuery :
jQuery Migrate Helper — Warnings encountered
/wp-content/plugins/woocommerce-pdf-invoices/assets/js/settings.js: jQuery.fn.load() is deprecated
Can you tell us when you will update your plugin please ?
Best regards
Forum: Plugins
In reply to: [Disqus Comment System] Bootstrap / Disqus bugI deactivated disqus plugin until I have a solution
Forum: Plugins
In reply to: [Sublanguage] translations not foundHi,
I have de the problem and this solution doesn’t work for me.
When I have permalink structure like mydomain/%postname%/, it doesn’t work. When I change my structure to mydomain/?p=123 it works.
I am on WordPress multisite version 4.8.2
What can I do ?
Forum: Plugins
In reply to: [qTranslate X] How can I use Qtranslate X with wp_editor function ?Hi,
thank you very much, it works very well ! You’re right, the same id was the problem.
This is now resolved.
Now it work, I removed this code in header.php :
if( substr_count( $_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip' ) ) ob_start('ob_gzhandler'); else ob_start();
Hi,
thanks for your answers.
Unfortunately, theme was coded by a former employee of my company. I can modify the theme but I don’t known what to do and what is badly coded.
I tried these settigns. It doesn’t work.
In this page :
https://www.sokallis.com/formationspage title : Formation en développement personnel
custum title with All in SEO : Formation développement personnel BéziersMy settings :
Use Original Title : disabled
Rewrite Titles : enabled
force rewrites : enabledForum: Plugins
In reply to: [qTranslate X] How can I use Qtranslate X with wp_editor function ?Hi,
I read Multilingual Fields and Integration notes
I tried to put some class like :
- multilanguage-input
- qtranxs-translatable
Moreover, I added multilanguage-input class in settings but It doesn’t want to work.
Please help. Have you an exemple of how add translatable editor in back office ?
Sorry for my bad english..
My code in functions.php :
function add_childtheme_metabox_customposttype() { add_meta_box( 'info_plus', __( 'More informations', WP_THEME_TEXTDOMAIN ), 'show_info_plus', 'activities', 'normal', 'high' ); } add_action( 'add_meta_boxes', 'add_childtheme_metabox_customposttype' ); function show_info_plus() { global $post; $info_plus = get_post_meta( $post->ID, 'info_plus', true ); wp_editor( __($info_plus,WP_THEME_TEXTDOMAIN), 'info_plus', array( 'textarea_rows'=>10, 'media_buttons'=>false, 'class' => 'wp-editor-area multilanguage-input qtranxs-translatable') ); } function save_childtheme_metabox_customposttype( $post_id, $post ) { if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return $post->ID; } //info_plus if( !isset($_POST["info_plus"]) || empty($_POST["info_plus"]) ) { delete_post_meta( $post->ID, 'info_plus' ); } else { if( get_post_meta( $post->ID, 'info_plus', true ) ) { update_post_meta( $post->ID, 'info_plus', $_POST["info_plus"] ); }else { add_post_meta( $post->ID, 'info_plus', $_POST["info_plus"] ); } } } add_action( 'save_post', 'save_childtheme_metabox_customposttype', 1, 2 );
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Item description cutTank you for your answers.
Can’t we add description parameter to print_wp_cart_button_for_product function and show this on paypal order and on buyer and seller emails ?
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Item description cutI use print_wp_cart_button_for_product function and it doesn’t allow to add description.
This description is made when user choose a lot of options (he build his product), so description can change and I need this description in buyer and seller email after purchase
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Item description cutExample :
My product name is :
Votre combinaison personnalisée par H. DXXXXXXX – VesteNéoprène Lisse Sandwichépaisseur 5.0mmCouleur CamoBuste : X-Tend Noir 5.0mmDos : X-Tend Noir 5.0mmFlancs + intérieur bras : Lisse Chicle 5.0mmExtérieur bras + extérieur cagoule : Lisse Chicle 5.0mmRenforts d’armement : RhombusRenforts d’armement : MelcoRenforts de coude : SupratexMarquage personnalisé : Flanc droitMarquage personnalisé : Flanc gaucheMarquage personnalisé : Cuisse droiteMarquage personnalisé : Cuisse gauche
When it’s sent to paypal, plugin cut it.
In paypal, I see only :
Votre combinaison personnalisée par H. DXXXXXXX – VesteNéoprène Lisse Sandwichépaisseur 5.0mmCouleur CamoBuste : X-Tend Noi
Forum: Plugins
In reply to: [MaxGalleria] property bugs with video gallery (lightbox_video_size_key)Hello,
Yes I have WP_DEBUG set to true. Thank you