Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter psychmaster

    (@psychmaster)

    Sorry about that, I know that the action is on wp_head and there is not an action wp_header. Regardless, it will not work the style needs to be fixed in the BadgeOs plugin. Furthermore, what exactly do you mean by download the plugin again to ensure that the plugin I am using has not been hacked? Why would you think the plugin has been hacked? Do you have a security vulnerability with the plugin? If so, why is there not a security release?

    Thread Starter psychmaster

    (@psychmaster)

    Actually, that does not work. I just thought it did because I modified the plugin directly and forgot. I know I can dequeue your styles, change it in my child theme and enqueue them again but since you need to fix it anyway, I will just wait until you do. It’s not a huge deal.

    Have a great day ??

    Thread Starter psychmaster

    (@psychmaster)

    Hello,

    Thank you for your reply. If I add that function to functions.php then the width set to auto overrides the column grid styles because it is also loaded after the theme and child theme files have loaded. The solution is to add the action to wp_head. Below you will find a working code example just in case you have other users who are experiencing the same problem.

    function fix_badgeOs_widget_styles() {
        ?>
        <style>
            .widget{
                float: initial;
                width: auto;
            }
        </style>
        <?php
    }
    add_action( 'wp_header', 'fix_badgeOs_widget_styles', 999 );

    Have a great day!

    I have a similar problem. I am trying to use the code from your reply to exclude a custom category:

    /**
    *
    * Exclude an entire category from ever appearing among Related Posts results
    *
    */
    function jetpackme_filter_exclude_category( $filters ) {
    $filters[] = array( ‘not’ =>
    array( ‘term’ => array( ‘taxonomy.ld_course_category.slug’ => ‘branded’ ) )
    );
    return $filters;
    }
    add_filter( ‘jetpack_relatedposts_filter_filters’, ‘jetpackme_filter_exclude_category’);

    Hi. I just updated this plugin today and now on my WooCommerce orders page there are two extra columns: “Fecha Horneada” and “Encargado”. How do I get rid of “Fecha Horneada” and “Encargado”?

    Sorry to hear you are having this problem. When I saw the link to the contact page, I was worried that you might get a lot of submissions with people trying to help or spam you even more.

    I am using NoCaptcha ReCaptcha but not the latest version because it broke the login page on one of the sites I manage. Perhaps you could roll back the version of the plugin to version 1.1.2 and that might fix the problem until you find a better captcha plugin.

    Also, here is an article that might help: https://barn2.co.uk/stop-contact-form-7-spam/

    I hope this helps. Have a great day!

    • This reply was modified 7 years, 3 months ago by psychmaster.

    Do you have access to your hosting account where the files for your site live? The only way to uninstall a plugin without being able to log in is to do it through your hosting account. If you do not have access to the hosting account you will need to contact the company or person who is hosting the site for you.

    If you do have access to the files on the server through a hosting account:

    1. Login to the hosting account
    2. Locate the plugins file on the server i.e. /wp-content/plugins/
    3. Locate the plugin you want to delete
    4. Delete the plugin

    Hope this helps ??

    Thread Starter psychmaster

    (@psychmaster)

    What does it take to get support for this issue? How about a response at all? I know the plugin is free but you are supposed to provide support to the users. I would rather pay for a plugin than get terrible support or no support at all for free!

Viewing 8 replies - 1 through 8 (of 8 total)