Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #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,
    Orhan

    #1007584

    Hey 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,
    Mike

    #1007631

    Hello, 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.
    Orhan

    #1008167

    Hi,

    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,
    Ismael

    #1009911

    Hello 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/kud87l

    What are you going now?

    Thanks,
    Orhan

    #1010128

    Hi,
    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,
    Mike

    #1010665

    Hello, 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,
    Orhan

    #1010838

    Hi,

    Thanks for the update. Can we have access to the file server? We would like to test the script.

    Best regards,
    Ismael

    #1011037

    Hello Ismael,

    I am adding the FTP credential to this message.

    Thank you for your help in advance,
    Orhan

    #1011140

    Hi,

    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,
    Ismael

    #1011484

    Hello Ismael,

    Thank you!

    #1011495

    Hi,
    Glad Ismael could help, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    #1012136

    Hi Mike,

    Yes, you can close this case.

    Thank you again.
    Orhan

    #1012173

    Hi,

    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

    #1012175

    Hi,

    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

Viewing 15 posts - 1 through 15 (of 15 total)
  • You must be logged in to reply to this topic.