-
AuthorPosts
-
September 9, 2018 at 10:15 am #1007547
Hello Kriesi,
I am using a plugin named WP Content Crawler on an Enfold theme which installed on orgatics.com. There is an issue when I try to use that plugin. Some fields are disappearing suddenly, and the form is losing its functionality. Here is a video on http://www.youtube.com/watch?v=H10SoggMJ8E that shows the issue.
I contacted the author of the plugin, and we did some tests before I reached you. I deactivated all plugins one by one and checked if the issue persists; the issue was still there. Then I changed the theme to a standard WP theme, and the problem was gone.
What can be wrong with it?
Thanks,
OrhanSeptember 9, 2018 at 1:27 pm #1007584Hey erkuto,
Thank you for the login, I tested using Chrome on Windows, and found many error in the plugin before saving, these are due to the fields with in the plugin not having unique values.
Yet even after saving Chrome forgives the errors and allows you to move between the tabs, perhaps the Safari browser is not for giving of the errors.
Have you tried to fill out the form before trying to save it? Does it still lock up? Please try using Chrome to see it it works for you.
Please see the screen cast in Private Content area.Best regards,
MikeSeptember 9, 2018 at 5:23 pm #1007631Hello, Mike!
Thank you for your quick answer.
It is not looking that you activated the Enfold again. Did you activate the Enfold Child theme and tried “add site” with the plugin? If you do that, you will not see some fields from the top of the form.
The plugin may have some problems, however, I wonder that why some fields went off when activate the Enfold theme.
Thank you for your help in advance.
OrhanSeptember 11, 2018 at 4:58 am #1008167Hi,
We would like to help you with the issue but we are not familiar with the plugin’s code. If possible, please contact the plugin author for additional help and forward the info to us once they find the conflict.
Best regards,
IsmaelSeptember 14, 2018 at 5:16 pm #1009911Hello Ismael,
I contacted the plugin’s author and he took a look at it.
He said: The reason for not appearing of the tab elements is the theme’s style=”display: none;” code.When the theme is
Activated: https://prnt.sc/kud83f
Deactivated: https://prnt.sc/kud87lWhat are you going now?
Thanks,
OrhanSeptember 15, 2018 at 2:45 pm #1010128Hi,
Thanks for sharing that info, based on that I wrote a jQuery script that will load in the “admin_head” of the site and will remove the inline-style for those ID’s
I tested in my browser and I seemed to work, so I then created a function to add it to your child theme functions.php, but it would not save, so please try adding this function via ftp:function remove_wcc_inline_syle(){ ?> <script> jQuery(window).load(function(){ jQuery(".wcc-settings-meta-box #tab-main.hidden").removeAttr("style"); jQuery(".wcc-settings-meta-box #tab-category.hidden").removeAttr("style"); jQuery(".wcc-settings-meta-box #tab-post.hidden").removeAttr("style"); jQuery(".wcc-settings-meta-box #tab-templates.hidden").removeAttr("style"); jQuery(".wcc-settings-meta-box #tab-notes.hidden").removeAttr("style"); jQuery(".wcc-settings-meta-box #tab-import-export-settings.hidden").removeAttr("style"); }); </script> <?php } add_action('admin_head', 'remove_wcc_inline_syle');
and then reload your site and test.
Best regards,
MikeSeptember 17, 2018 at 10:42 am #1010665Hello, Mike!
Thank you for your answer. I did add the code you sent me to the functions.php of the child theme. Unfortunately, the form is still disappearing when I try to add a site with the plugin.
Please take a look at the video on http://www.youtube.com/watch?v=80i6sAUXQQc
What now?
Thanks,
OrhanSeptember 17, 2018 at 4:47 pm #1010838Hi,
Thanks for the update. Can we have access to the file server? We would like to test the script.
Best regards,
IsmaelSeptember 17, 2018 at 11:36 pm #1011037Hello Ismael,
I am adding the FTP credential to this message.
Thank you for your help in advance,
OrhanSeptember 18, 2018 at 8:41 am #1011140Hi,
Thank you for the info.
We modified the script in the functions.php file. The script removes the inline css as @mike said.
function ava_remove_wcc_inline_syle(){ ?> <script> (function($) { $(window).on('wcc-remove-style', function() { $(".wcc-settings-meta-box #tab-main").removeAttr("style"); $(".wcc-settings-meta-box #tab-category").removeAttr("style"); $(".wcc-settings-meta-box #tab-post").removeAttr("style"); $(".wcc-settings-meta-box #tab-templates").removeAttr("style"); $(".wcc-settings-meta-box #tab-notes").removeAttr("style"); $(".wcc-settings-meta-box #tab-import-export-settings").removeAttr("style"); }); var int = setInterval(function() { console.log('tick'); $(window).trigger('wcc-remove-style'); }, 1000); $(window).on('load', function() { clearInterval(int); }); })(jQuery); </script> <?php } add_action('admin_head', 'ava_remove_wcc_inline_syle');
Best regards,
IsmaelSeptember 18, 2018 at 8:01 pm #1011484Hello Ismael,
Thank you!
September 18, 2018 at 8:41 pm #1011495Hi,
Glad Ismael could help, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeSeptember 20, 2018 at 6:05 am #1012136Hi Mike,
Yes, you can close this case.
Thank you again.
OrhanSeptember 20, 2018 at 8:56 am #1012173Hi,
Great! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelSeptember 20, 2018 at 8:57 am #1012175Hi,
Great! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.