Forum Replies Created
-
AuthorPosts
-
FocuxTheme Support
KeymasterHi
I checked it, I found some errors which are related SSL configuration, so I installed WordPress Https plugin to convert all resource link from http to https, now, you can find the copyright text field in DGWork options > General page now.
Also, I added the dgwork_top_button function to the functions.php of your child theme, I tested it, it works, you can try to add something in this function and you will see the changes in top button area, for example, echo ‘test’; in this function.
Thanks
January 21, 2017 at 8:38 am in reply to: Some posts (category pages) intermittently not showing #11131You must have valid license to access this content.January 20, 2017 at 3:09 pm in reply to: Some posts (category pages) intermittently not showing #11128You must have valid license to access this content.You must have valid license to access this content.FocuxTheme Support
KeymasterHi
Sorry that some customs issues are not included in the free support except small custom issues. So, here are solutions for the small custom issues that can help you to fix them soon, but for some customs issues, I can only give a general idea that you can follow my instruction to do it by yourself.
1. Doesn’t support this feature currently. You can use custom CSS to hide the menu for home page.
.home #primary-menu{display:none;}2. Doesn’t support this feature currently. You can use custom CSS to hide the cart icon for home page.
.home #site-icons a#product-cart{display:none;}3. You can copy the following function to the functions.php of your child theme folder:
function dgwork_top_buttons(){ global $dgwork_option; if ( class_exists( 'Easy_Digital_Downloads' )){ if(isset($dgwork_option['top_icons']) && $dgwork_option['top_icons']=='1'): echo'<div id="site-icons" class="dgw-grid dgw-col3">'; if(isset($dgwork_option['account_page']) && $dgwork_option['account_page']<>''): echo'<a href="'.esc_url(home_url('/')).'?page_id='.esc_attr($dgwork_option['account_page']).'"><i class="fa fa-user"></i></a>'; endif; if(isset($dgwork_option['checkout_page']) && $dgwork_option['checkout_page']<>'' && $dgwork_option['float_cart']=='0'): echo'<a href="'.esc_url(home_url('/')).'?page_id='.esc_attr($dgwork_option['checkout_page']).'" id="product_cart"><i class="fa fa-shopping-cart"></i></a>'; endif; if(isset($dgwork_option['product_search']) && $dgwork_option['product_search']=='1'): echo'<a href="javascript:void(0);" id="product_search"><i class="fa fa-search"></i></a>'; endif; echo'</div>'; endif; }Find this code:
<i class="fa fa-user"></i>
It’s fontawesome icon, you can replace it to your own icon font. For how to create icon font, you can use http://icomoon.io/app to convert svg icon to font. This issue is not included in the support.
4. Go to DGWork Options > General page, add your own footer text in “Copyright Text” field.
5. Which part of font is small? I can give a custom CSS to adjust it easily and soon.
6. Sorry for that, we will find a google attachment extension for our bbpress forum. Now, you can upload the screenshot to dropbox or any other server, then post a image link here.
7. You have to customize dgwork_page_header() function which is located in inc/functions/template_tags.php, copy the function to the functions.php of your child theme, and do it what you want. Anyway, I will add a new feature to display the memeber name to instead of the Account title in the next version soon.
Thanks!
January 20, 2017 at 2:22 pm in reply to: Testimonials settings and new pages don't appear automatically #11125You must have valid license to access this content.January 19, 2017 at 9:37 pm in reply to: Custom CSS? – Remove social media icons on product pages #11099FocuxTheme Support
KeymasterYes, of course, you can add the following custom CSS into style.css of your child theme or DGWork options > Custom Code > Custom CSS
.social_share{display:none;}Thanks!
You must have valid license to access this content.You must have valid license to access this content.January 19, 2017 at 9:22 pm in reply to: Some posts (category pages) intermittently not showing #11095You must have valid license to access this content. -
AuthorPosts
