Forum Replies Created
-
AuthorPosts
-
FocuxTheme Support
KeymasterNow I’m thinking to make it fast…
FocuxTheme Support
KeymasterI think the delay is caused by the javascript of the player loading.
FocuxTheme Support
KeymasterIf so, you can try to change 1em to 1.5em
FocuxTheme Support
KeymasterHi
Just try to improve the function as this:
if( function_exists( 'dgwork_thumbnail_size' ) ) { function dgwork_thumbnail_size(){ if( dgwork_device( 'phone' ) ){ return 'medium'; // for phone }elseif( dgwork_device( 'tablets' ) ){ return 'medium'; // for tablets }else{ if( is_single() ){ return 'large'; // for desktop single post }else{ return 'main_page_grid_size'; } } } }
You’d better check the mobile version with your real mobile phone, not the responsive window or simulator. Because the program can only detect the real device. I believe the file name of the featured image is different from the desktop version.
Thanks
FocuxTheme Support
KeymasterYou could ask W3 Total Cache or EDD support.
FocuxTheme Support
KeymasterIt is a conflict issue with WPBakery page builder, you can fix it by the following CSS, and when you update the theme next time, you can delete these CSS codes.
.dgwork-product-grid .type-download:last-child{ margin-bottom: 1em; }
FocuxTheme Support
KeymasterThe best way is move your custom codes to the new shortcode-download.php
Of course, you can add the following codes to your changed template:'.do_shortcode('[purchase_link price="'.$show_price.'" text="'.$button_text.'"]').'
Before the last close div tag.
Also, I will check and fix the responsive issue for the [downloads] grid in the next version soon, just estimate that the new version of DGWork will be released tomorrow.
For the black background issue, I found that’s because the player wasn’t loaded, maybe you can try to remove the black background with the following CSS
.dgwork-preview{ background: transparent; }
I reproduced the blue banner issue, I will fix this issue in the next version of ThemeVan Toolkit plugin, now you can add the following custom CSS to Appearance > Customize > Additional CSS before you update ThemeVan Toolkit.
.vc_row[data-vc-stretch-content]{ margin-left : calc( -100vw / 2 + 100% / 2 ) !important; margin-right : calc( -100vw / 2 + 100% / 2 ); width: 100vw; max-width: 100vw; }