Forum Replies Created

Viewing 12 replies - 31 through 42 (of 42 total)
  • Thread Starter wizcomhosting

    (@wizcomhosting)

    There are no PHP errors

    I have deleted all htaccess files.
    I have refreshed permalinks

    I have restored from 2 week old backups of database and wp-content folders

    I have reinstalled WordPress and still any request redirects

    Thread Starter wizcomhosting

    (@wizcomhosting)

    That is not the case. The only thing that has changed is I installed and uninstalled your plugin.

    There is nothing else causing redirects in the installation. Any request to a admin page not one of the core pages; posts, pages, setting etc is redirecting back to the login page.

    Where can I find a log of the files you have changed?

    Forum: Reviews
    In reply to: [WPS Hide Login] Neutral
    Thread Starter wizcomhosting

    (@wizcomhosting)

    As an update:

    I installed the plugin, it has rendered much of my admin inaccessible. The plugin authors do not reply to support requests.

    I have, in order, deleted the plugin, deleted the htaccess files, reinstalled the database, reinstalled the wp-content folder, reinstalled wordpress, deleting browser caches and using incognito windows at every stage and still this plugin has control of my WordPress installation.

    I will now need to completely wipe the hosting directories and reinstall everything.

    To my mind this is the perfect definition of malware

    Thread Starter wizcomhosting

    (@wizcomhosting)

    I insist that you reply to my support request. You have broken my WordPress Installation. I have reinstalled the content directory, reinstalled the database, deleted all htaccss files and still my admin is broken.

    I insist that you tell me what you have done. At the moment your plugin has the status of malware.

    Thread Starter wizcomhosting

    (@wizcomhosting)

    Incidentally I uninstalled it because every menu item that isn’t bog standard wordpress, Contact Form 7, ACF options page etc redirected to 404

    Thread Starter wizcomhosting

    (@wizcomhosting)

    Thanks for the reply Nathan.

    It would be good to control the role access to the plugin.

    For anyone who needs this now, simply add ‘manage_options’ to the editor role, ‘manage_options’ is the ‘role control’ for the SSA Admin panels.

    Its unfortunate that the Settings menu is available to them too but I can at least hide that with CSS.

    I think this is a bit unfair. Yes, I agree the documentation needs some work but it wasn’t rocket science to implement.

    You’ll only get this Notice if Debug is set to on, which it shouldn’t be on a live site.

    Thread Starter wizcomhosting

    (@wizcomhosting)

    Obvious; add classes to the elements class:foobar in the element code on the form, bearing in mind that the order of things is important and this goes after the name and before the keyword ‘placeholder’

    like this: [text* your-name class:foobar placeholder “Your name”]

    Thread Starter wizcomhosting

    (@wizcomhosting)

    Doing my favourite : I found the answer because it was quicker than waiting for someone to hold my newbie hand.

    A more general guide to customising Woocommerce within your own theme would be nice, but I’ll share my findings.

    1. You need all these CSS files;

    //Woocommerce styles
    wp_enqueue_style( 'woocommerce', get_template_directory_uri().'/css/woocommerce.css' );
      wp_enqueue_style( 'woocommerce-layout', get_template_directory_uri().'/css/woocommerce-layout.css' );
      wp_enqueue_style( 'woocommerce', get_template_directory_uri().'/css/woocommerce-smallscreen.css' ); 

    (if you use SASS then make these files the output of your woocommerce sass files – find them in plugins>woocommerce>assets>css). Then you can edit direct.

    2. You need this in your woo commerce functions;

    // disable woocommerce styles
    add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' );
    
    function add_woocommerce_support() {
      add_theme_support( 'woocommerce' );
      add_theme_support( 'wc-product-gallery-zoom' );
      add_theme_support( 'wc-product-gallery-lightbox' );
    }
    
    add_action( 'after_setup_theme', 'add_woocommerce_support' );

    This takes you, essentially to square one and the old rules to modify templates then apply so you can start from a broadly working installation.

    Then the order must be being overridden in your theme because, believe me, it works.

    To move to settings;

    Change line 36 of cf7-Invisible-recaptcha.php

    from add_menu_page(

    to add_options_page(

    if you want it in the Contact menu of CF7 then use

    add_submenu_page(
    		'wpcf7',

    (I would also humbly suggest changing the name of your plugin file to; cf7-invisible-recaptcha.php )

Viewing 12 replies - 31 through 42 (of 42 total)