Forum Replies Created

Viewing 10 posts - 371 through 380 (of 6,341 total)
  • Author
    Posts
  • in reply to: Grid display issue #25530

    Now I’m thinking to make it fast…

    in reply to: Grid display issue #25528

    I think the delay is caused by the javascript of the player loading.

    in reply to: Another small grid issue #25526

    If so, you can try to change 1em to 1.5em

    in reply to: Fatured image size #25524

    Hi

    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

    in reply to: Login issue #25522

    You could ask W3 Total Cache or EDD support.

    in reply to: Another small grid issue #25481

    It 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;
    }
    in reply to: EDD Wishlists not working #25479

    The 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.

in reply to: Grid display issue #25477

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.

in reply to: Grid display issue #25475

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;
}
in reply to: Grid display issue #25473

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;
}
Viewing 10 posts - 371 through 380 (of 6,341 total)