*

questions

  • *****
  • 319 posts
Hello community,

Is there any way to fix the widgets issue on Epsilon Theme? They are not properly displayed into the footer on the Post ad page.

Can the developers do something regarding this please?

Instead of using this <div class="footer-widgets"><?php if(osc_is_home_page()) {osc_show_widgets('footer');} ?></div>
which is not good for SEO in my opinion, can the developers create a fix and make them displayed properly on all the pages of the theme?

Off topic: the premium ads are also not displayed properly. Are displayed from the latest to the newest. Can someone fix this too? The array reverse function do not work properly too.

Thank you,

*

MB Themes

Re: Widgets are not properly shown on Post page of Epsilon Theme
« Reply #1 on: July 02, 2023, 07:03:43 PM »
Replace osc_is_home_page() with 1==1 and it will be visible on all pages
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

questions

  • *****
  • 319 posts
Re: Widgets are not properly shown on Post page of Epsilon Theme
« Reply #2 on: July 03, 2023, 09:03:34 AM »
You are right.

Can you include this in the following update please?

Thank you!

*

questions

  • *****
  • 319 posts
Re: Widgets are not properly shown on Post page of Epsilon Theme
« Reply #3 on: July 03, 2023, 09:06:33 AM »
Still having this gap on the post page.

Still looks bad....

*

questions

  • *****
  • 319 posts
Re: Widgets are not properly shown on Post page of Epsilon Theme
« Reply #4 on: July 03, 2023, 09:53:21 AM »
Having this issue only on the post page, it would be great, to exclude widgets only on the "POST PAGE". Can you help me acquire this please?

Would be also nice to have this in the following epsilon update.

Thank you,

*

questions

  • *****
  • 319 posts
Re: Widgets are not properly shown on Post page of Epsilon Theme
« Reply #5 on: July 03, 2023, 10:29:19 AM »
Replace osc_is_home_page() with 1==1 and it will be visible on all pages

So this is the default function, which already displays widgets over all the pages of epsilon.

<div class="footer-widgets"><?php osc_show_widgets('footer'); ?></div>

Can you help me let it as it is (displayed over all the pages, except being the POST AD page?)
Thank you,

*

questions

  • *****
  • 319 posts
Re: Widgets are not properly shown on Post page of Epsilon Theme
« Reply #6 on: July 03, 2023, 12:17:10 PM »
<div class="footer-widgets">
  <?php
  if (!osc_is_publish_page()) {
    osc_show_widgets('footer');
  }
  ?>
</div>

Seems this work fine. Is it ok?

*

MB Themes

Re: Widgets are not properly shown on Post page of Epsilon Theme
« Reply #7 on: July 04, 2023, 10:24:49 AM »
Looks good.
You may also add !osc_is_edit_page()
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

questions

  • *****
  • 319 posts
Re: Widgets are not properly shown on Post page of Epsilon Theme
« Reply #8 on: July 04, 2023, 01:17:36 PM »
Looks good.
You may also add !osc_is_edit_page()

Update:
<div class="footer-widgets"><?php if (!osc_is_publish_page() && !osc_is_login_page() && !osc_is_register_page() && !osc_is_recover_page() && !osc_is_edit_page()) { osc_show_widgets('footer'); } ?></div>

Is there any other page which one might I have missed?

Can you include this into the next epsilon update please?

Thank you,