Simpas81
Forum Replies Created
-
Forum: Plugins
In reply to: [mqTranslate] Search does not recognize products for all languagesIf you are using woocommerce I suggest to avoid the WP Search field but to use the Woocommerce Search Widget.. that is working fine.
Forum: Plugins
In reply to: [WooCommerce qTML] TAB MANAGER ISSUE -> TAb title switch is not workingfor all people using mqTranslate for woocommerce and for the author, below the solution to add in functions.php:
/*
* Disable duplicated titles in product TAB manager
*/
function wc_sv_mqtranslate_tab_title( $tabs ) {if ( function_exists( ‘qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage’ ) ) {
foreach ( $tabs as $name => $tab ) {
$tabs[ $name ][‘title’] = qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage( $tab[‘title’] );
}
}return $tabs;
}
add_filter( ‘wc_tab_manager_product_tabs’, ‘wc_sv_mqtranslate_tab_title’ );Forum: Plugins
In reply to: [mqTranslate] migration from qtranslate to mqtranslate – descriptionI have the same issue for the Extention TAB MANAGER of woocommerce.
Anyone can help me?
Screenshot attached -> https://laboratorio35.com/wp-content/uploads/2014/10/tab_manager-issue.jpgThanks
S.Forum: Plugins
In reply to: [WooCommerce qTML] TAB MANAGER ISSUE -> TAb title switch is not workinghow much to solve issue @franticpsyx ?
Forum: Plugins
In reply to: [WooCommerce qTML] TAB MANAGER ISSUE -> TAb title switch is not workingI found a code that in the past solved the product title duplicated.
add_filter(‘woocommerce_cart_item_name’, ‘qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage’, 0);
Do you think that this kind of code with a small adjustment can solve my issue about Titles Duplicated in TAB MANAGER?
Please help to solve this my last ticket.
Thanks
S.Forum: Plugins
In reply to: [WooCommerce qTML] Redirect to wrong URLSOLVED
Forum: Plugins
In reply to: [WooCommerce qTML] Product Short Description in not editableSOLVED
Forum: Plugins
In reply to: [mqTranslate] Search does not recognize products for all languagesI found this code working for qTranslate:
remove_filter(‘get_search_form’, ‘qtrans_fixSearchForm’,0);
add_filter(‘get_search_form’, ‘qtrans_fixSearchForm_yop’, 10, 1);
function qtrans_fixSearchForm_yop($form) {
//$form = preg_replace(‘#action=”[^”]*”#’,’action=”‘.trailingslashit(qtrans_convertURL(get_home_url())).'”‘,$form);//qtranslate Slug compatibilidad, no duplicar en url idioma /es/es/ al buscar (search)
$form = preg_replace(‘#action=”[^”]*”#’,’action=”‘.trailingslashit(get_home_url()).'”‘,$form);return $form;
}Can I have the same code for mqTranslate?
Thanks
S.Thanks Tobias.
Forum: Plugins
In reply to: [mqTranslate] mqTranslate and Woocommerce – Short description not workingok thanks for help.
Forum: Plugins
In reply to: [mqTranslate] mqTranslate and Woocommerce – Short description not workingGreat @p2c
Woocommerce has other 2 issues:
1 – About product variation that is not recognized
2 – Tab manager -> https://laboratorio35.com/wp-content/uploads/2014/10/tab_manager-issue.jpgDid you find a solution also for these issues?
Thanks
S.Forum: Plugins
In reply to: [WooCommerce qTML] Product Short Description in not editablefound the solution, CAN YOU PLEASE add this inside your plugin->
/**
* Disable tinymce in product short description
* because of conflict with mqtranslate
* add this inside functions.php
* @return array
*/
function pdc_disable_tinymce_in_short_desc() {
$settings = array(
‘textarea_name’ => ‘excerpt’,
‘quicktags’ => array( ‘buttons’ => ’em,strong,link’ ),
‘tinymce’ => false,
‘editor_css’ => ‘<style>#wp-excerpt-editor-container .wp-editor-area{height:175px; width:100%;}</style>’
);
return $settings;
}
add_filter( ‘woocommerce_product_short_description_editor_settings’, ‘pdc_disable_tinymce_in_short_desc’, 10 );Forum: Plugins
In reply to: [WooCommerce qTML] Search IssueI know so I can pay for support service.
However this is not an imaginable setup but is an issue for all people using your plugin because that is the default search box of wordpress so it’s not related to my theme but seems that the plugin does not affect that area of wordpress.I look forward to your reply.
Regards,
S.Forum: Plugins
In reply to: [WooCommerce qTML] Redirect to wrong URLThis issue is related to multilanguage feature because for the default language the issue is not shown but only for additional languages.
i look forward to your reply.
regards,
SimoneForum: Plugins
In reply to: [WooCommerce qTML] Plugin disabled but some strings translated in WP-adminI have not installed qTranslate but mqTranslate.
The default language set in mqtranslate settings is English.
Before to activate your plugin that issue was not shown.So I suppose that your plugin when activated force something that when disabled is not restored automatically.
What do you suggest. I need that when I delete your plugin all strings in my admin works without any issue.
Thanks
s.