Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author David Aguilera

    (@davilera)

    Hi! Apparently, the issue can only be fixed if we edit the source code of your theme. Could you email me (customers AT neliosoftware DOT com) a copy of it, so that I can tell you what you should change?

    On the other hand, just a quick question: how is the blur effect implemented?

    Thread Starter icy11

    (@icy11)

    Hi David,

    Thanks for your response!

    What specific theme source file do you need?
    Ohh. I’m sorry about that, I forgot that you need to login to view the page. Do you also need temporary access to the site?

    Thanks!

    Plugin Author David Aguilera

    (@davilera)

    Hi! The thing is… I don’t know which file has to be edited! That’s why I need a zip with the whole theme (if possible).

    On the other hand, don’t worry about the blur… But, still, I’m curious: how is it implemented? Are you using a JS plugin? CSS effects?

    Thread Starter icy11

    (@icy11)

    Hi David,

    I see. I’ll send you the files right away.

    About the blur effect, our other dev did that and I’m not sure how he did it. I’ll ask him. ??

    Thanks! ??

    Plugin Author David Aguilera

    (@davilera)

    icy11 and I have been discussing a solution via e-mail. This is what fixed the issue.

    You need to edit the file content.php. In particular, around line 49 you’ll see the following piece of code:

    else
    {
      if( !empty($NV_previewimgurl) && $NV_displayblogimage == 'display' )
      {
        echo do_shortcode('[imageeffect type="'.$NV_imageeffect.'" ... url="'.$NV_previewimgurl.'" ]');
      }
    }

    Add the following two lines:

    else
    {
      if ( function_exists( 'uses_nelioefi' ) && uses_nelioefi( get_the_ID() ) )
        $NV_previewimgurl = nelioefi_get_thumbnail_src( get_the_ID() );
      if( !empty($NV_previewimgurl) && $NV_displayblogimage == 'display' )
      {
        echo do_shortcode('[imageeffect type="'.$NV_imageeffect.'" ... url="'.$NV_previewimgurl.'" ]');
      }
    }

    This change should do the trick!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Not showing on Dynamix Theme’ is closed to new replies.