mgsisk / webcomic

Comic publishing power for the web. Turn your WordPress-powered site into a comic publishing platform with Webcomic.
http://wordpress.org/plugins/webcomic
GNU General Public License v2.0
110 stars 29 forks source link

Elementor and Comic on Front page #299

Closed tigandrea5 closed 6 years ago

tigandrea5 commented 6 years ago

I am currently using the GeneratePress theme and using Elementor to help me customize the them. I had comic press on there which works great with this theme but I am having issues with the comic appears on the front home page and I do not know how to remove this.

I included an image and used sock images while I was working on the layout.

issue pic 1

picture pic 2

mgsisk commented 6 years ago

Apologies for the late response @tigandrea5; if you're still working through this, can you provide a link to your site?

kav-p commented 6 years ago

Hello Mike! While waiting for OP to get back to you, I am encountering the same problem. Here is a link to my web site: http://www.kav-p.com

mgsisk commented 6 years ago

Thanks @kav-p! I think I see what's going on now. What you'll want to do is copy the /wp-content/plugins/webcomic/php/-/integrate/loop_start.php file into a webcomic directory inside your active theme (so you should end up with a /wp-content/themes/illustratr/webcomic/loop_start.php file). Inside that file, line 35 should look like this:

<?php if ( is_front_page() ) : ?>

and you'll want to change it to this:

<?php if ( false ) : ?>

This will prevent comics from showing up on the homepage when using Webcomic 4's integrate option.

kav-p commented 6 years ago

Hello Michael,

Thank you so much for the swift response. This has worked brilliantly!

Really looking forward to Webcomic 5, by the way! Any release date in mind?

Regards, Kav

On Fri, 26 Jan 2018 at 09:21 Michael Sisk notifications@github.com wrote:

Thanks @kav-p https://github.com/kav-p! I think I see what's going on now. What you'll want to do is copy the /wp-content/plugins/webcomic/php/-/integrate/loop_start.php file into a webcomic directory inside your active theme (so you should end up with a /wp-content/themes/illustratr/webcomic/loop_start.php file). Inside that file, line 35 should look like this:

<?php if ( is_front_page() ) : ?>

and you'll want to change it to this:

<?php if ( false ) : ?>

This will prevent comics from showing up on the homepage when using Webcomic 4's integrate option.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/mgsisk/webcomic/issues/299#issuecomment-360655692, or mute the thread https://github.com/notifications/unsubscribe-auth/AiInKQvW6UFxuOBaa0DLfKkKjvq_eHhyks5tOSiWgaJpZM4REgEw .

kav-p commented 6 years ago

Actually, I have one more issue I wonder if you could have a look at:

Looking at the first comic here http://kav-p.com/emvok/1-the-uglee-beginning/, there is the appropriate description and transcript, but clicking to go to the next comic, the description and transcript do not change with the comic. Is there something I'm overlooking?

On Fri, 26 Jan 2018 at 13:59 Kav P artsyturnip@gmail.com wrote:

Hello Michael,

Thank you so much for the swift response. This has worked brilliantly!

Really looking forward to Webcomic 5, by the way! Any release date in mind?

Regards, Kav

On Fri, 26 Jan 2018 at 09:21 Michael Sisk notifications@github.com wrote:

Thanks @kav-p https://github.com/kav-p! I think I see what's going on now. What you'll want to do is copy the /wp-content/plugins/webcomic/php/-/integrate/loop_start.php file into a webcomic directory inside your active theme (so you should end up with a /wp-content/themes/illustratr/webcomic/loop_start.php file). Inside that file, line 35 should look like this:

<?php if ( is_front_page() ) : ?>

and you'll want to change it to this:

<?php if ( false ) : ?>

This will prevent comics from showing up on the homepage when using Webcomic 4's integrate option.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/mgsisk/webcomic/issues/299#issuecomment-360655692, or mute the thread https://github.com/notifications/unsubscribe-auth/AiInKQvW6UFxuOBaa0DLfKkKjvq_eHhyks5tOSiWgaJpZM4REgEw .

mgsisk commented 6 years ago

Thanks! With luck, Webcomic 5 will show up in the WordPress plugin directory yet today. If you’re feeling brave you can download it from GotHub right now, though; the src directory is the actual plugin (just rename it to webcomic and throw it in your plugins directory).

The other problem your having may be related to dynamic comic navigation. Turning that off on the Settings > Webcomic page should do the trick.