Marco Buttarini
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pinterest Embed Code – removed all the time in the editor!No news about this? Same problem to me
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] WordPress 3.9 RC1 and disappearing TinyMCESorry, it was fixed this night with acf 4.3.7
Great, acf rocks!
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] WordPress 3.9 RC1 and disappearing TinyMCESimilar problem to me, wp3.9 with acf, tinymce is not showing html button in added wysiwys.
Hoping for a fix
Hi, I have uploaded webjumbo version to repository, now it work
Thanks webjumbo for the fix
Hi, I have uploaded webjumbo version to repository, now it work
Thanks webjumbo for the fix
It looks a nosense….
Forum: Plugins
In reply to: qtranslate home link – yoothemeTry using items_wrap parameter to wp_nav_menu, in this way:
<?php wp_nav_menu( array('items_wrap' => '<ul id="%1$s" class="%2$s"><li><a href="'.get_bloginfo('home').'">Home</a></li>%3$s</ul>' ) ); ?>Same problem to me
fixed in this way:
1: change:
‘mods_’.get_current_theme();
to:
‘theme_mods_’.get_current_theme();2: Changed Theme Name to be the same of Theme Folder
same problem for me, did you find a solution?
Great,
wp_deregister_script( 'jquery' );
worked for meThanks
the fixed version (1.2.3) has still a problem for some kind of custom taxonomy.
I tryed using
add_action(‘admin_init’, ‘wptm_init’);
instead of
add_action(‘init’, ‘wptm_init’);and it work better. Maybe you can add this on future release
Really really thanks!!! It work, I was scared it was a wp bug!
ThanksForum: Fixing WordPress
In reply to: Automatic image url linking and size proposal in 2.9The solution proposed didn’t worked for me… any ideas??
Forum: Fixing WordPress
In reply to: Hitting somekind of limitI have the same problem, with a blog full of pages.
packet size is 16 MB and still give error. Is this rule so important? is there a way to fix this problem, or to remove this rule with a plugin?
Forum: Fixing WordPress
In reply to: can’t add tags in 2.8There’s a problem with wordpress 2.8 and simple tag plugin.
Original tag input in edit post is not hidden, so if you try to use it fail.I fixed it with a small modification of a file:
/simple-tags/2.7/inc/simple-tags.admin.phpat line 108:
replace this:
remove_meta_box(‘tagsdiv’, ‘post’, ‘side’);
with this:
remove_meta_box(‘tagsdiv-post_tag’, ‘post’, ‘side’);