Forum Replies Created

Viewing 10 posts - 351 through 360 (of 6,341 total)
  • Author
    Posts
  • in reply to: weird changes after the last update #25917

    I think it’s just a coincidence, because the theme doesn’t control the email setting.
    Maybe you can give a test, just change to the default theme, then download an item, and check if you still receive the email.
    You can also contact the Free download add-on support for this issue.

    Thanks

    in reply to: New theme update broke the homepage #25895

    Please try a CSS hack

    .edd_downloads_list.two-columns .dgwork-grid-item.audio .dgwork-preview .preview_thumnail,
    .dgwork-product-grid.two-columns .dgwork-grid-item.audio .dgwork-preview .preview_thumnail{
    	max-height: 220px;
    }
    .dgwork-product-grid .type-download,
    .edd_downloads_list .type-download{
       min-height: 330px;
    }

    Also, I remember you have customized edd_templates/shortcode-download.php file, so if the CSS hack doesn’t work, please send me this file via johnwu[at]themevan.com

    in reply to: WPBakery Builder Enabled on mobile #25877
    You must have valid license to access this content.
    in reply to: Left margin still not working with mobile [version 1.19] #25875
    You must have valid license to access this content.
    in reply to: WPBakery Builder Enabled on mobile #25839
    You must have valid license to access this content.
    in reply to: EDD Wishlists not working #25837

    Yes, because that php function or shortcode is included in the EDD, not included the theme.
    So the buy button is automatically displayed unless customizing EDD function.

    in reply to: Multilanguage switcher #25836
    You must have valid license to access this content.
    in reply to: Theme update #25784

    You can see the changelogs here https://dgwork.co/wp-content/themes/dgwork/changelog.txt

    We will think to add the changelogs to the dashboard in the future.

    in reply to: can not connected woocomerce #25782
    in reply to: EDD Wishlists not working #25780

    The wishlist plugin depends on [purchase_link] shortcode or edd_get_purchase_link() function, so I have to add [purchase_link] to the grid, then it will automatically output both of the buy button and wishlist button at the same time.

    We have tried to use the following codes to hide the add cart button:

    function hide_purchase_form($args){
    	return '';
    }
    add_filter('edd_purchase_download_form', 'hide_purchase_form', 2);
    

    But with this method, maybe it will hide all buy button from the global site, that’s why we haven’t hidden the buy button.

    So we need to test it with all other add-ons, make sure there’s no confliction issue, then we will add a new option to show or hide the buy button in the later version.

    Thanks

Viewing 10 posts - 351 through 360 (of 6,341 total)