Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter stratsocaster

    (@stratsocaster)

    Hello, if you enable wp_debug you should see exactly what the problem is.
    You should get a message like the one I wrote above which will say to you exactly in which file and line the problem is, so you can go on and edit it.
    In my case, I was calling a function that did not exist in the parent theme anymore.
    Hope this helps.

    Thread Starter stratsocaster

    (@stratsocaster)

    Problem resolved. Seems that fruitful_ret_options() function does not exist in the new update, so I just replaced the code in my child theme with the new one and everything went back to normal.
    Thank you

    Thread Starter stratsocaster

    (@stratsocaster)

    Hello and thank you for the quick reply.
    It is giving me the following error:

    Fatal error: Call to undefined function fruitful_ret_options()

    Is there something changed in the original code that I should change also on the child theme?

    Thread Starter stratsocaster

    (@stratsocaster)

    This is my CSS. It works on a single linked image, but not on the galleries. Even if i put it inside the gallery’s custom CSS it does nothing.

    .wp-caption {
      display: block;
      max-width: 96%;
      padding: 3px;
      position: relative;
      text-align: center;
    }
    .wp-caption-text {
      background: none repeat scroll 0 0 rgba(0, 0, 0, 0.7);
      top: -5px;
      color: #FFFFFF;
      display: block;
      filter: alpha(opacity=0);
      font-family: Open Sans, Helvetica, Arial, sans-serif;
      font-size: 13px;
      left: 8px;
      margin: 0;
      max-width: 100%;
      opacity: 0;
      padding: 5px 10px !important;
      position: absolute;
      right: 8px;
    }
    .wp-caption a:hover ~ .wp-caption-text {
      filter: alpha(opacity=100);
      opacity: 1;
      -webkit-transition: opacity 500ms ease-in-out;
      -moz-transition: opacity 500ms ease-in-out;
      -ms-transition: opacity 500ms ease-in-out;
      -o-transition: opacity 500ms ease-in-out;
      transition: opacity 500ms ease-in-out;
    }
Viewing 4 replies - 1 through 4 (of 4 total)