Derek Padula
Forum Replies Created
-
Mike replied to me about the problem and has fixed it in the latest update to the plug-in.
I sent a small donation to his PayPal to say thank you for continuing to support this plug-in. Anyone reading this may want to do the same.
Thanks for the update on the PHP deprecation. I reached out to Mike by email to see if he’s aware of the problem and interested in resolving it.
It’s called Webcomic Matcher. When Webcomic is activated, it’s located in the WordPress sidebar dashboard under Tools.
The best way I’ve been able to get it to work is to select a comic collection and choose Title and Title for the two dropdowns. This works well because I make my image titles the same as my page titles. It will then show a list of pages that you’ve created that are missing images, and it will also show the orphaned images that are not yet associated with pages. Then you check the boxes for the ones you want to match up. Then click to associate them.
So until this is fixed, you can upload your images, create your pages, re-enable Webcomic, and match them up.
In my limited testing, you can also upload images while Webcomic is activated by using the ‘Media > Add New’ feature in the WordPress sidebar and selecting the list view button. It’s located underneath the “Media Library” heading near the top of the screen.
Once your image is uploaded, you will see an “Uploaded to” header in the list view’s image details. Click “Attach” there and you can attach each particular image to any existing comic page.
—–
Lucky posted about this in Github:
https://github.com/mgsisk/webcomic/issues/375
Hope Mike will see either of these soon.
- This reply was modified 4 years, 2 months ago by Derek Padula. Reason: Added a link to Github
Forum: Plugins
In reply to: [Webcomic] filters.php outdated [ fixed it for now]Yes, I experienced the same error and applied the same fix. It’s a necessary fix in order to activate Webcomic. Have to replace the curly braces with brackets:
{ } > [ ]
- This reply was modified 4 years, 2 months ago by Derek Padula.
Forum: Plugins
In reply to: [Quick Contact Form] Undefined Array Key WarningsYes, I did have debug mode turned on. It was for other issues. Then I saw these warnings and thought I’d let you know.
Turning off debugging turned off the warnings.
Forum: Plugins
In reply to: [Webcomic] Latest Update Stops Comics from LoadingThanks, it’s working now!
I updated Yoast SEO at the same time I updated webcomic. Both were minor 0.0.1 updates, so I didn’t think it would cause an issue. I tried disabling Yoast to see if it would resolve the comics not appearing, but it did not. So I was led to the conclusion that it was webcomic. At least you were able to find a creative solution.
Thank you!
Forum: Plugins
In reply to: [Webcomic] Only the latest post loads, no matter what post is selectedClosing as resolved.
Forum: Plugins
In reply to: [Webcomic] Only the latest post loads, no matter what post is selectedYep. Works like a charm. Thanks, Mike!
Forum: Plugins
In reply to: [Webcomic] Only the latest post loads, no matter what post is selectedEverything looks good except for one thing. When you click the comic itself it reloads the page you’re on instead of advancing. It is supposed to advance to the next comic. “20-1” should advance to “20-2,” and so on. That’s how it worked before.
Either way, I’ll give your plugin 5-stars for the great customer support. Thank you!
Forum: Plugins
In reply to: [Webcomic] Only the latest post loads, no matter what post is selectedYou were right about the php tags. That’s fixed now. Strange that it didn’t show up as a problem until this latest update.
I added you as an admin.
The comics are under the Read Manga section.
Thanks for taking a look.
Forum: Plugins
In reply to: [Webcomic] Only the latest post loads, no matter what post is selectedHere is the html and php in place for the child theme. When you visit the pages linked above, you can see that “$collection = get_webcomic_collection();” appears at the top of the page when it shouldn’t.
<div id=”blog_post_content”>
<?php the_content(); ?>
$collection = get_webcomic_collection();
<?php
$webcomics = !is_paged() ? new WP_Query( array(
‘posts_per_page’ => 1,
‘post_type’ => get_webcomic_collections()
) ) : false;
?><?php if ( $webcomics and $webcomics->have_posts() ) : ?>
<?php while ( $webcomics->have_posts() ) : $webcomics->the_post(); ?>
<div id=”webcomic” class=”post-webcomic” data-webcomic-shortcuts data-webcomic-gestures data-webcomic-container>
<!– this part is taken from webcomic/webcomic.php –>
<nav class=”webcomics above”>
<?php first_webcomic_link(); ?>
<?php previous_webcomic_link(); ?>
<?php random_webcomic_link(); ?>
<?php next_webcomic_link(); ?>
<?php last_webcomic_link(); ?>
</nav><!– .webcomics.above –>
<div class=”webcomic-image”>
<?php the_webcomic(); ?>
</div><!– .webcomic-image –>
<nav class=”webcomics below”>
<?php first_webcomic_link(); ?>
<?php previous_webcomic_link(); ?>
<?php random_webcomic_link(); ?>
<?php next_webcomic_link(); ?>
<?php last_webcomic_link(); ?>
</nav><!– .webcomics.below –>
<!– end webcomic/webcomic.php –>
</div><!– .post-webcomic –>
<?php endwhile; $webcomics->rewind_posts(); ?>
<?php endif; ?></div>