Forum Replies Created
-
AuthorPosts
-
FocuxTheme Support
KeymasterGot 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
FocuxTheme Support
KeymasterHi
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
FocuxTheme Support
KeymasterOK 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
FocuxTheme Support
KeymasterYou can hide it by custom CSS:
#product_cart{display:none;}Thanks
FocuxTheme Support
KeymasterHi
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
FocuxTheme Support
KeymasterHi
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
FocuxTheme Support
KeymasterThanks 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!
FocuxTheme Support
KeymasterHi
You should add some new discount codes via WP backend > Products > Discount codes.
Thanks
March 25, 2017 at 4:04 am in reply to: HELP: Problem with Price in products (they change to $99) #11394FocuxTheme Support
KeymasterI only found this one https://wordpress.org/plugins/easy-digital-downloads-related-downloads/ but it’s not slider.
March 25, 2017 at 1:57 am in reply to: HELP: Problem with Price in products (they change to $99) #11392FocuxTheme Support
KeymasterHi
I found this bug is caused by “EDD Related Downloads Carousel” plugin which you have installed. After I deactivate it, the bug is fixed.
-
AuthorPosts
