dew_h2o
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: Duplicate gravity form post for WPML multilingual postDid you ever find a solution for this? Thanks!
Forum: Plugins
In reply to: [qTranslate] [Plugin: qTranslate] Language selector active class disapprearedMe too…
with the code
<?php echo qtrans_generateLanguageSelectCode('text'); ?>I get
active=""instead ofclass="active".So I changed it to
<?php echo qtrans_generateLanguageSelectCode('both'); ?>and added these to my css.
#header .qtrans_flag_en, #header .qtrans_flag_fr {background: none;} #header .qtrans_flag_and_text {padding:0;}Hi Sylvia,
I found the problem. I have a temp wordpress installation in a folder: http://www.mydomain.com/blog/. In firebug I get http://www.mydomain.com/wp-includes/js/tinymce/utils/mctabs.js?ver=327 not found. Notice that blog/ is missing.
All other installations (in root directory) work perfectly.
Thanks for this plugin anyways. It is very necessary.
Cheers!
Forum: Fixing WordPress
In reply to: how to test for wp_nav_menuThat’s it…thank you g3legacy.
This is what I did:
<?php if(wp_nav_menu( array( 'theme_location' => 'primary', 'fallback_cb' => 'false') )) { echo wp_nav_menu( array( 'sort_column' => 'menu_order', 'container_class' => 'menu-header', 'theme_location' => 'primary' , 'echo' => '0' ) ); } else { // there's no custom menu created. } ?>
Viewing 4 replies - 1 through 4 (of 4 total)