Anraiki
Forum Replies Created
-
How odd. It seems the issue has resolved itself. If it reoccurs, I will try to document a repro to the bug and reply to this topic.
Thank you.
Until further notice.
Forum: Plugins
In reply to: [Kommiku] [Plugin: Kommiku] Adding ad bars on top and bottomWithin the skin folder “_Kommiku”
Forum: Plugins
In reply to: [Kommiku] [Plugin: Kommiku] What The Matter with this??It means that the folder you are dumping to may not exist.
Forum: Plugins
In reply to: [Kommiku] [Plugin: Kommiku] No Options showing in wp-adminWhat labels? Do you mean the settings or the plug-in’s menu?
Forum: Plugins
In reply to: [Kommiku] [Plugin: Kommiku] Rating and View Counter SystemI am removing this feature due to design issues that’s proposed by Google. You can replace these with Facebook’s like and Google’s +1.
Forum: Plugins
In reply to: [Kommiku] [Plugin: Kommiku] chapter dumping errorI been trying to. I am debating on the release of The Tosho, it’s going to be a while, and if it doesn’t go well for me, then, I will open source it to work on other ideas and projects.
Forum: Plugins
In reply to: [Kommiku] [Plugin: Kommiku] chapter dumping errorI will try! School just started again and I now have bigger plans since I just finished some of the core parts of The Tosho. You have my email too!
Also, I was able to copy Fool’s Reader too ??
Forum: Plugins
In reply to: [Plugin: Kommiku] Navigation problemsIt’s a small bug in the reader file that may be misreading the one_comic feature or issue.
Around line 73 in reader.php, remove this:
if($kommiku['one_comic'])
Forum: Plugins
In reply to: [Kommiku] [Plugin: Kommiku]Reader image resizing and zooming optionAre you testing this in production or on a sandbox? email me your files and I will see if I can get it set up properly.
Forum: Plugins
In reply to: [Kommiku] [Plugin: Kommiku]Reader image resizing and zooming optionCopy and Delete line 160 which is:
$wrapper = '<img id="theBigImage" src="'.$imagePath.'"'.$class.'/>';
Replace Line 163 with the one at line 160
$wrapper = '<img src="'.$theimage.'" />';
Also make sure you style the class in the style.css
.constraintImage { width: 950px; }
Forum: Plugins
In reply to: [Kommiku] [Plugin: Kommiku]Reader image resizing and zooming optionYou forgot to add $imageWidth in the global vars.
Should be like this:
global $nextPage, $nextLink, $series, $chapter, $page, $imageWidth;
in the function img()
So right on it:
function img($echo = true,$class = NULL,$title = NULL) { global $nextPage, $nextLink, $series, $chapter, $page, $imageWidth;
Thanks guy, I must have overlooked this. I will look into this and if anything use ktuluxx fix :]
Forum: Plugins
In reply to: [Kommiku] [Plugin: Kommiku]Reader image resizing and zooming optionHi, I have this available at thetosho.com. The code is as follow:
You will need a button to expand the image in case they want to zoom in. Also, I have made the conditions as follow, if the image’s width is bigger than 950, then the zoom button will appear with the word “Expand Image”.
<?php global $imageWidth; if($imageWidth > 950) {?><li id="expand" >Expand Image</li><?php } ?>
This, I put in body_page.php
In the header, I have javascript function that when the button is clicked it will expand or shrink:
var expanded; jQuery('#expand').click(function() { if(expanded == true) { $j("#theBigImage").addClass('constraintImage'); expanded = false; $j("#expand").removeClass('iconResize').addClass('iconExpand');; } else { $j("#theBigImage").removeClass('constraintImage'); expanded = true; $j("#expand").removeClass('iconExpand').addClass('iconResize');; } });
The last part will be setting a global var in the function img() in reader.php
It should be near around $wrapper
if($width > 950) { $class = 'class="constraintImage"'; $imageWidth = $width; } $wrapper = '<img id="theBigImage" src="'.$imagePath.'"'.$class.'/>';
Don’t foget to have $imageWidth as a global var
Forum: Plugins
In reply to: [Kommiku] [Plugin: Kommiku] chapter dumping errorThanks Raj, Saw it and I like the way he used to view the Comics/Manga.
Forum: Plugins
In reply to: default permalinks for kommiku pagesThe tables for Kommiku are not being created properly. This may be a bug that I have to find or look into it.