Forum Replies Created

Viewing 10 posts - 1,571 through 1,580 (of 6,341 total)
  • Author
    Posts
  • in reply to: Hide top menu #11415

    Got it, you meant hide the top bar, not only top menu, right?

    Two methods to do that.

    1. Use CSS

    Hide the top bar on global site

    .site-header{display:none;}

    Only hide the top bar on pages and blog posts

    .single .site-header,
    .page .site-header{display:none;}

    2. Get rid of the top bar by hooks

    remove_action( 'dgwork_header', 'dgwork_before_navigation',0);
    remove_action( 'dgwork_header', 'dgwork_custom_logo',10);
    remove_action( 'dgwork_header', 'dgwork_primary_navigation',20);
    remove_action( 'dgwork_header', 'dgwork_top_buttons',30);
    remove_action( 'dgwork_header', 'dgwork_after_navigation',40);
    remove_action( 'dgwork_after_header','dgwork_page_header',10);

    Thanks

    in reply to: EDD Product Grid Setting #11414

    Hi

    Sorry for this issue, I checked it, it’s a bug in 1.1.4.

    Now you can edit hooks.php file in dgwork/inc/functions folder, find the following code

    add_action( 'wp_enqueue_scripts', 'dgwork_scripts',30);

    Change 30 to 10

    add_action( 'wp_enqueue_scripts', 'dgwork_scripts',10);

    Thanks

    in reply to: Refund #11413

    OK I will wait. If I confirm that Fancy Popup plugin doesn’t work fine with your theme and we can’t fix, I will ask you submit refund request via Envato.

    Thanks

    in reply to: Hide only Shop Cart #11405

    You can hide it by custom CSS:

    #product_cart{display:none;}
    

    Thanks

    in reply to: Category product – checkout not works on demo itself #11404

    Hi

    I have updated the theme yesterday, now you can get the latest version of DGWork theme from your themeforest download page, and reinstall it.

    Thanks

    in reply to: Hide top menu #11403

    Hi

    You can try the following custom CSS

    .single #site-navigation,
    .page #site-navigation{display:none;}

    If you want to remove the default menu from all the pages, you can put the following codes into your functions.php

    remove_action( 'dgwork_header', 'dgwork_primary_navigation',20);

    Thanks

    in reply to: Category product – checkout not works on demo itself #11398

    Thanks for your feedback! Yes, it’s a bug, but not very hard to fix, I will release the next version soon.

    If you are in a hurry, please post your WP login details via private reply, I will modify the theme files via Appearance > Edit.

    Thanks!

    in reply to: Discount Tab #11397

    Hi

    You should add some new discount codes via WP backend > Products > Discount codes.

    Thanks

    in reply to: HELP: Problem with Price in products (they change to $99) #11394
    in reply to: HELP: Problem with Price in products (they change to $99) #11392

    Hi

    I found this bug is caused by “EDD Related Downloads Carousel” plugin which you have installed. After I deactivate it, the bug is fixed.

Viewing 10 posts - 1,571 through 1,580 (of 6,341 total)