How to remove Powered by Dokan by Wedevs?

This topic contains 4 reply and 3 voices, and was last updated by Nayem 8 years, 8 months ago
Viewing 4 Posts - 1 through 4 (of 4 total)
Author Posts
July 23, 2015 at 12:27 am 56677
Nayem I'd like to remove the Powered by Dokan by weDevs. Could you show me how to do that? I saw in a past thread that you removed it from someone else's site but I'd like to know how to remove it myself. Thanks
July 24, 2015 at 11:48 pm 56851
Thanh Thanh

I also like to know how too..
Thanks

July 26, 2015 at 11:48 am 58854
Nayem Nayem

Please open Dokan theme/footer.php file. In line number 49 you will get this line- printf( __( 'Powered by <a href="%s" target="_blank">Dokan</a> from <a href="%s" target="_blank">weDevs</a>', 'dokan' ), esc_url( 'http://wedevs.com/theme/dokan/?utm_source=dokan&utm_medium=theme_footer&utm_campaign=product' ), esc_url( 'http://wedevs.com/?utm_source=dokan&utm_medium=theme_footer&utm_campaign=product' ) );

You can comment out this line.

July 29, 2015 at 2:53 am 61415
Scott Scott

thank you Nayem, that worked well. If you could you let me know how to remove the Archives and Meta Fields from the right sidebar on the homepage and also after selecting a Product category from the homepage, the same Archives and Meta Fields are displaying on the left sidebar on the Product page. How do I remove the Archives and Meta Fields completely from the site?

July 29, 2015 at 11:43 am 63802
Nayem Nayem

Hello Scott,

If you are using Dokan theme then please open Dokan theme/sidebar-product-single.php file. In this file you have to remove those code to hide archive,meta from single product page-

<aside id="search" class="widget widget_search">
                <?php get_search_form(); ?>
            </aside>

            <aside id="archives" class="widget">
                <h1 class="widget-title"><?php _e( 'Archives', 'dokan' ); ?></h1>
                <ul>
                    <?php wp_get_archives( array('type' => 'monthly') ); ?>
                </ul>
            </aside>

            <aside id="meta" class="widget">
                <h1 class="widget-title"><?php _e( 'Meta', 'dokan' ); ?></h1>
                <ul>
                    <?php wp_register(); ?>
                    <li><?php wp_loginout(); ?></li>
                    <?php wp_meta(); ?>
                </ul>
</aside>
Viewing 4 Posts - 1 through 4 (of 4 total)