Jump to content

Akai

+ Customer verified
  • Posts

    459
  • Joined

  • Last visited

  • Days Won

    20

Posts posted by Akai

  1. hai, 

    i have problem with yoast seo Optimize SEO Data

    i will get this error every time i optimize seo data 

    Oops, something has gone wrong and we couldn't complete the optimization of your SEO data. Please click the button again to re-start the process.

    anyone has same issue ?

     

  2. 19 hours ago, dmg9394 said:

    I would LOVE this to work on v2.3.1!!! If it is not possible on the latest version, I would have to downgrade but I don't know where I can get my hands on the previous versions.

    the only reason this mod can't use on dooplay 2.3.1 is poster function on episode editor already remove by @emeza so i can't get the poster on episode home module. 

    thanks 

  3. On 11/14/2017 at 4:44 PM, moviesdir said:

    Open /wp-content/themes/dooplay/inc/doo_links.php

    Find:

    
    $fico = DOO_GICO.$doma;


    Add After:

    
    $domn = ($type == __d('Torrent')) ? 'Torrent' : doo_compose_domainname($murl);

     

     

    Find:

    
    $out .= "<td><img src='{$fico}'> <a href='{$link}' target='_blank'>{$ltxt}</a></td>";

    Replace with:

    
    $out .= "<td><img src='{$fico}'> <a href='{$link}' target='_blank'>{$domn}</a></td>";

     

    Your post links will look like this:

    NK5Q5SI.png

     

    lHJZlz6.png

    work like carm

    can we change text tab download torrent watch online ?

    i like to change High quality, medium quality, low quality 

  4. 2 hours ago, nikola453 said:

    Hi,

    I recently buy theme Dooplay 2.2.5 and now my question is how can i import "Posts" from my old theme to the new theme wp function "Movies".

    If i go trough the Wordpress Import Plugin i will get the posts into the "Posts" and not into "Movies" section.

    Is any way i can migrate my old "Posts" -movies into the new "Movies" options from my new theme Dooplay 2.2.5.

    Thanks!

    i dont think you can do that.. because it imposible

  5. On 1/16/2019 at 1:01 PM, ignacio.rumante said:

    I followed all the steps, put the fix to apply the smaller images but they are still big


    Dooplay v. 2.2.5

    you need this.. search this css 

    On 12/25/2018 at 10:33 AM, Akai said:

    usually if image to big you need to this css 

    
    .module .content .items .episodes {
        width: 33.33%;
    }

    33.33% -- > to ---> "calc(100%/5)"

     

  6. Skype ME : AkaiTSB

    have you using the latest version dooplay ? 

    Search in : dooplay/assets/css/front.style.css    ** NOT RECOMMENDED USING CUSTOM CSS , its will damage on mobile view

    .module .content.full_width_layout article.episodes {
        width: calc(100%/4);
    }

    and change to 

    .module .content.full_width_layout article.episodes {
        width: calc(100%/6);
    }

     

  7. hi there. as promise i show how to do homepages episode like movie design. 

    something like this 

    6g2eRNf.png

     

    Before Your Start PLEASE MAKE YOUR Dooplay Folder BACKUP

    Working Fine With Dooplay 2.2.3

     

    1. search this php file \dooplay\inc\parts\item_ep.php  REPLACE all code with this

    <?php
    /*
    * -------------------------------------------------------------------------------------
    * @author: Doothemes
    * @author URI: https://doothemes.com/
    * @aopyright: (c) 2018 Doothemes. All rights reserved
    * -------------------------------------------------------------------------------------
    *
    * @since 2.1.3
    *
    */
    
    $postmeta  = doo_postmeta_episodes($post->ID);
    $thumb_id  = get_post_thumbnail_id();
    $thumb_url = wp_get_attachment_image_src($thumb_id,'dt_poster_a', true);
    // End PHP
    ?>
    <article class="item se <?php echo get_post_type(); ?>" id="post-<?php the_id(); ?>">
    	<div class="poster">
    		<a href="<?php the_permalink() ?>">
    			<img src="<?php doo_compose_image('dt_poster', $post->ID, 'w185'); ?>" alt="<?php the_title(); ?>">
    			<span class="episodev2">EPS<i><?php echo doo_isset($postmeta,'episodio'); ?></i></span>
    			<div class="mepo"><?php if($mostrar = get_the_term_list( $post->ID, 'dtquality')) {  ?><span class="quality"><?php echo strip_tags($mostrar); ?></span><?php } ?></div>
    			<span class="serie"><?php echo doo_isset($postmeta,'serie'); ?></span>
    		</a>
    	</div>
    	<div class="data">
    		<h3><?php echo doo_isset($postmeta,'episode_name'); ?></h3>
    		<span><?php doo_date_compose(doo_isset($postmeta,'air_date')); ?></span>
    	</div>
    </article>

    Its done with PHP Code 

     

     

    For CSS. i suggest use 'custom CSS' on dooplay option

    Go "dooplay Option" --> 'Customize" --> "Custom CSS" 

    just insert this css 

    .module .content .items .episodes .poster {
        width: 100%;
        height: 100%;
        float: left;
        position: relative;
        overflow: hidden;
        margin: 0;
        padding-top: 140%;
    }
    
    .module .content .items .episodes .poster img {
        width: 100%;
        height: auto;
        margin-top: -140%;
        position: absolute;
    }
    
    .episodev2 {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 40px;
        padding-top: 8px;
        text-align: center;
        height: 40px;
        border-radius: 50%;
        background: #8224e3;
        color: #fff;
        font-size: 12px;
        text-transform: uppercase;
        line-height: 1em;
        text-shadow: 0 0 2px rgba(0,0,0,0.3);
    }
    
    .episodev2 i {
    	display: block;
        font-weight: 700;
        font-size: 16px;
        font-style: normal;
        margin-top: 3px;
    }

    DONE!! 

    If u facing big images poster you need to edit this on dooplay/assets/css/front.style.css    ** NOT RECOMMENDED USING CUSTOM CSS , its will damage on mobile view

    find this 

    .module .content .items .episodes {
        width: 33.33%;
    }

    Replace with 

    .module .content .items .episodes {
        width: calc(100%/6);
    }

    and please clear cache and hard refresh 

    if any problem please let me know. maybe i forgot another setting

  8. On 11/14/2017 at 4:44 PM, moviesdir said:

    Open /wp-content/themes/dooplay/inc/doo_init.php

    Find:

    
    $permalink	= get_permalink( $p->ID );


    Add After:

    
    $domain = str_ireplace('www.', '', parse_url(dt_post_meta( $p->ID, 'links_url' ), PHP_URL_HOST));

     

     

    Find:

    
    echo '<td><img src="'. DOO_GICO. saca_dominio($url). '"> <a href="'. $permalink. '" target="_blank">'. $type. '</a></td>';

    Replace with:

    
    echo '<td><img src="'. DOO_GICO. saca_dominio($url). '"> <a href="'. $permalink. '" target="_blank">'. $domain. '</a></td>';

     

    Your post links will look like this:

    NK5Q5SI.png

     

    lHJZlz6.png

    Still work with dooplay 2.2.3 ??

×
×
  • Create New...