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
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.
Hi, thats what I used too..Problem is, im getting the preview to show..Do you know how to take it out??
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.
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.
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
If you're looking for better support i'd honestly just recommend you try animescrape. Unlike wp-anime, they actually care
^ 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.
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/
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.
Hey Tennouji I use standard [wpa_anime_latest_episode] but, it does not show thumbnails.. is it possible to show thumbnails with another code?
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.