1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

WP-Anime plugin

Discussion in 'WordPress' started by juandesign, Jun 18, 2014.

  1. #1
    Does any of you used the WP-Anime..I just purchased the plugin but it seems that the supports doesnt want to help which is really sucks..

    Does anyone here have experienced on WP-Anime??

    Cheers
     
    juandesign, Jun 18, 2014 IP
  2. Tennouji

    Tennouji Active Member

    Messages:
    26
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    56
    #2
    I have been using the WP Anime/Manga plugins for some time now. I think I can help a little with templating and the basics, but not on decryption of the core script since it's against the ToS as far as I know. Just drop me a message.
     
    Tennouji, Aug 26, 2014 IP
  3. juandesign

    juandesign Active Member

    Messages:
    116
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    50
    #3
    Hi, thats what I used too..Problem is, im getting the preview to show..Do you know how to take it out??
     
    juandesign, Aug 26, 2014 IP
  4. Tennouji

    Tennouji Active Member

    Messages:
    26
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    56
    #4
    If you're talking about disabling the Anime Preview Page when going to episode links, just do this:

    Go to Admin Dashboard > WP Anime > Configuration , then uncheck the "Display anime combo box on anime player page" box.

    [​IMG]
     
    Tennouji, Aug 26, 2014 IP
  5. juandesign

    juandesign Active Member

    Messages:
    116
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    50
    #5
    Thanks..Will try
     
    juandesign, Aug 26, 2014 IP
  6. Tennouji

    Tennouji Active Member

    Messages:
    26
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    56
    #6
    Or if you're talking about the hover pop-up, you can just uncheck the "Enable inline anime detail pop-up" on the same Configuration page.
     
    Tennouji, Aug 26, 2014 IP
  7. juandesign

    juandesign Active Member

    Messages:
    116
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    50
    #7
    No, just the preview videos..Cause after one ep is done on the next day/s the preview videos for the next episode show up which wont show the full video for the latest anime
     
    juandesign, Aug 27, 2014 IP
  8. AnimeRetreat

    AnimeRetreat Greenhorn

    Messages:
    3
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #8
    If you're looking for better support i'd honestly just recommend you try animescrape. Unlike wp-anime, they actually care
     
    AnimeRetreat, Nov 10, 2014 IP
  9. masinerija

    masinerija Active Member

    Messages:
    166
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    58
    #9
    ^ True. After WP-anime stopped working my working was going down as 3 of my websites were going down.
    A friend suggested animescrape and i've been using them for quite some times.
    They have a great plugin, cheap service and awesome support.
    Bumps up for 'em.
     
    masinerija, Nov 11, 2014 IP
  10. Zarata

    Zarata Member

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    31
    #10
    I have the same problem, can anyone help me? or give me the documentation? I want to display episodes and series thumbnails on the homepage like it's on this sites:
    http://www.lovelyanime.com/
    http://eyeonanime.com/
     
    Zarata, Jan 6, 2016 IP
  11. Tennouji

    Tennouji Active Member

    Messages:
    26
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    56
    #11
    It depends on what template are you using on your homepage, but the general idea is make your own elements inside the foreach() statement, then call the thumbnail url inside the image src.
     
    Tennouji, Jan 6, 2016 IP
  12. Zarata

    Zarata Member

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    31
    #12
    Hey Tennouji
    I use standard [wpa_anime_latest_episode] but, it does not show thumbnails.. is it possible to show thumbnails with another code?
     
    Zarata, Jan 7, 2016 IP
  13. Tennouji

    Tennouji Active Member

    Messages:
    26
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    56
    #13
    The latest-episode template should be able to generate the anime title's thumbnails. The code for displaying them should be something like this:
    
    <ul>
        <?php foreach($tpl_dat['col']['lst'] as $val){ ?>
    
            <li>
    
                <a href="<?php echo $val['anm_eps']['url']; ?>"> // The URL. This one's enclosing the whole thumbnail and details of a single entry.
                    <img class="cvr" src="<?php echo wpa_url_tbn($val['anm']['cvr'], 50, 0); ?>" alt="<?php echo $val['anm']['nme']; ?>"/> // You can change the image thumbnail size, this one's 50px
                    <?php echo $val['anm']['nme']; ?> // Anime Title/Name
                    <?php echo $val['anm_eps']['ttl']; ?> // Episode Title
                    <?php echo 'Episode '.$val['anm_eps']['slg']; ?> // Episode Slug/Number
                    <?php echo $val['anm_eps']['dte_add']; ?> // Date Added
                </a>
    
            </li>
    
        <?php } ?>
    </ul>
    
    Code (markup):
    That code is just a part of the page and a sample. Just edit the code structure, add some class on elements for CSS design to match your preferences.
     
    Tennouji, Jan 7, 2016 IP