Forum Replies Created

Viewing 10 posts - 1,691 through 1,700 (of 6,341 total)
  • Author
    Posts
  • in reply to: Home Page Design #11132

    Hi

    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

    in reply to: Some posts (category pages) intermittently not showing #11131
    You must have valid license to access this content.
    in reply to: Some posts (category pages) intermittently not showing #11128
    You must have valid license to access this content.
    in reply to: add a button and flipover to the page #11127
    You must have valid license to access this content.
    in reply to: Home Page Design #11126

    Hi

    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!

    You must have valid license to access this content.
    in reply to: Custom CSS? – Remove social media icons on product pages #11099

    Yes, 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!

    in reply to: add a button and flipover to the page #11098
    You must have valid license to access this content.
    in reply to: open menu #11096
    You must have valid license to access this content.
    in reply to: Some posts (category pages) intermittently not showing #11095
    You must have valid license to access this content.
Viewing 10 posts - 1,691 through 1,700 (of 6,341 total)