wonderliza
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Yoast Conflicting with WPBakery Page BuilderHello
I do have the same problem with
Yoast Version 14.1
BPBakery Version 6.1
Wordpress 5.0.9If i deactivate Yaost, WPBakery works fine
I tried to deactivate only SEO analysis and Readability analysis but it did not solve the problem.
I wanted to finish my website by using Yoast SEO, for my company, and get the premium version, but if it creates a conflict with WPBakery… :-/Do you have some input that might help?
Thanks- This reply was modified 4 years, 5 months ago by wonderliza. Reason: notify me
Hi !
I found the solution by myself: I had to remove all capitals, both in the custom type and the WPUF, and it worked!Forum: Themes and Templates
In reply to: [Theme: Grid theme responsive] Display problem submenuhi !
This theme does not seem to support sub menus.
Ce thème ne semble pas supporter les sous menusHere is some code to add on style.css to hide / show the menu :
Voici un bout de code pour afficher et cacher le sous menu (à rajouter sans style.css) :#menu_container ul ul { display:none; visibility:hidden; } #menu_container ul li:hover ul { display: block; visibility:visible;}
It won’t make miracles because you still have to deal with the width of each menu item and so on..
Ca ne fera pas des miracles, car il faut encore gérer les soucis de largeurs etc… mais c’est un début !Elise
Forum: Plugins
In reply to: [ML Adverts] all adverts show same dates in admin viewHi
I confirm I have the same problem ! That is a problem for keeping the list of all adds up to date from a admin point of viewForum: Plugins
In reply to: [Edit Flow] Unfollow a post for a groupWell I had no answer so it did it the dirty way !
function efx_auto_subscribe_usergroup( $new_status, $old_status, $post ) { global $edit_flow; global $wpdb; if ( '1-brouillon' == $new_status ) { //unfollow wp_delete_object_term_relationships( $post->ID, 'following_users'); //wp_delete_object_term_relationships( $post->ID, 'ef_usergroup'); $wpdb->query("DELETE FROM wp_term_relationships WHERE object_id = '" . $post->ID. "' AND term_taxonomy_id = 467 "); $wpdb->query("DELETE FROM wp_term_relationships WHERE object_id = '" . $post->ID. "' AND term_taxonomy_id = 516 "); $wpdb->query("DELETE FROM wp_term_relationships WHERE object_id = '" . $post->ID. "' AND term_taxonomy_id = 530 "); // follow for redaction $usergroup_ids_to_follow = array( 460 ); $edit_flow->notifications->follow_post_usergroups( $post->ID, $usergroup_ids_to_follow, true ); $edit_flow->notifications->follow_post_user( $post->ID, $post->post_author, true ); } if ( '2-relecture' == $new_status ) { //unfollow wp_delete_object_term_relationships( $post->ID, 'following_users'); // wp_delete_object_term_relationships( $post->ID, 'ef_usergroup'); $wpdb->query("DELETE FROM wp_term_relationships WHERE object_id = '" . $post->ID. "' AND term_taxonomy_id = 467 "); $wpdb->query("DELETE FROM wp_term_relationships WHERE object_id = '" . $post->ID. "' AND term_taxonomy_id = 516 "); $wpdb->query("DELETE FROM wp_term_relationships WHERE object_id = '" . $post->ID. "' AND term_taxonomy_id = 530 "); //follow for relecteurs $usergroup_ids_to_follow = array( 487 ); $edit_flow->notifications->follow_post_usergroups( $post->ID, $usergroup_ids_to_follow, true ); // follow for redaction $usergroup_ids_to_follow = array( 460 ); $edit_flow->notifications->follow_post_usergroups( $post->ID, $usergroup_ids_to_follow, true ); $edit_flow->notifications->follow_post_user( $post->ID, $post->post_author, true ); } // Return true to send the email notification return true; } add_filter( 'ef_notification_status_change', 'efx_auto_subscribe_usergroup', 10, 3 );
Seems to work, but i’m really not a fan of manually delete records on the table ??
Forum: Reviews
In reply to: [Custom Status] @wonderliza“Edit Flow” ??
Forum: Fixing WordPress
In reply to: strange behaviour with UL and LIwell i thought it would be a know issue. do you think that a pluggin could generate this kind of bug ?
the theme was changed only by changing the style.php / css files
i could give you the link to the front office : https://intheloop.fr but the problem is on the backoffice side, on de post editor, so i’m not sure that this url will help you in any way…
Forum: Fixing WordPress
In reply to: strange behaviour with UL and LIi meant the behavior is new ??
Forum: Fixing WordPress
In reply to: strange behaviour with UL and LIhi
not it’s not pasted it’s just entered with the keyboard
and there is many plugins and i changed a lot the theme. the site is on production, for now 1 year, but this is quite new.Forum: Fixing WordPress
In reply to: Visual tab problem under Mac after installation of wordpress 3.4.1i made some tests connecting to a VPN to amsterdam (i live in france)
here are the results :
– at work : it’s ok
– at home normal connection : broken
– at home with VPN : it’s okWTF ? so strange !!
Forum: Fixing WordPress
In reply to: Visual tab problem under Mac after installation of wordpress 3.4.1hello, has anyone an idea ?
thanksForum: Fixing WordPress
In reply to: Visual tab problem under Mac after installation of wordpress 3.4.1hello,
i finaly decided to activate the firebug console, and there seems to be a problem with Tiny MCE (and not the advanced version plugin, just the wordpress folder located in /wp-includes/js/tinymce), when i click on the “visual” tab.Except that i deleted the wp-admin and wp-content forlders, replacing them by fresh folders from wordpress 3.4.1 install. So i don’t understand why there is still a bug after all that.
here are the errors i get :
[10:20:35,445] SyntaxError: syntax error @ https://intheloop.fr/wp-includes/js/tinymce/tiny_mce.js?ver=349-20805:2
[10:20:35,446] ReferenceError: tinyMCE is not defined @ https://intheloop.fr/wp-admin/post.php?post=5772&action=edit:1263
everytime i click on a tab, visual of HTML.
Forum: Fixing WordPress
In reply to: Visual tab problem under Mac after installation of wordpress 3.4.1well i tryed any way by adding
define(‘WP_MEMORY_LIMIT’, ‘128M’);
but the bug is still the same anyway