• Resolved Hypocrites

    (@cretanfood)


    A message to the developers, for those of us that have bought the pro version, please build a white label plug even at $9 a year support or similar, we need to get rid of the branded mess that displays in our admin section. We know who you are no need for marketing to our employees that access the backend. Please consider it! The alternative is to make the mods outside the space and everyone loses.

    FYI for POR supporters build a support platform, its bad business to air dirty laundry in a public forum!

    Thank you!

    A PRO LIC. owner and supporter (I still believe you got the best GC plugin on the market)

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author pimwick

    (@pimwick)

    Thank you for the feedback! We have talked about making this an option and it will be in a future release. For now, you can find the PW Gift Cards menu under “WooCommerce” and if you would like to remove the Pimwick Plugins menu entry just follow these steps:

    1. Download the functions.php from your FTP server at /wp-content/themes/<your theme>/functions.php
    2. Keep a backup of functions.php in case there are problems.
    3. Edit functions.php and scroll to the very end and add this code.

    Note: if the last line is “?>” then put this code *above* that line. Otherwise, this code goes at the very end of the file:

    function remove_pimwick_plugins_menu( $columns ) {
        remove_menu_page( 'pimwick' );
    }
    add_action( 'admin_menu', 'remove_pimwick_plugins_menu', 99, 1 );

    4. Save the functions.php file and re-upload it to your server.

    If you have any problems, replace functions.php with your backup file.

    We are also in the process of redesigning our website so we will have a support forums there as well.

    Hope this helps, let me know if you have any other questions!

    Thread Starter Hypocrites

    (@cretanfood)

    The code you posted, only removed the Title from the Admin sidebar, not the annoying top and bottom bars that the Pro version has in the Plug’s Admin section.

    I don’t need your company advertisements in the PRO version, that is why you have the FREE version, please give me a solution to remove them. If I modify the plugin, then on the next update you offer I’ll have to start all over again!

    Thank you!

    Thread Starter Hypocrites

    (@cretanfood)

    Here is a link to my references

    https://pasteboard.co/I7vzUDa.png

    Plugin Author pimwick

    (@pimwick)

    Follow these instructions to hide the header and footer on the gift card admin page:

    1. Download the functions.php from your FTP server at /wp-content/themes/<your theme>/functions.php
    2. Keep a backup of functions.php in case there are problems.
    3. Edit functions.php and scroll to the very end and add this code.

    Note: if the last line is “?>” then put this code *above* that line. Otherwise, this code goes at the very end of the file:

    function remove_pimwick_header_footer() {
    ?>
    <style>
    .pwgc-title-container, .pwgc-footer {
    display: none !important;
    }
    </style>
    <?php
    }
    add_action( ‘admin_head’, ‘remove_pimwick_header_footer’ );

    4. Save the functions.php file and re-upload it to your server.

    If you have any problems, replace functions.php with your backup file.

    Let me know if you have any questions!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘White Label Plug’ is closed to new replies.