Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter erik1990

    (@erik1990)

    I found the solution, the xlanguage plugin was the problem.

    can you post a link of your website?

    Forum: Plugins
    In reply to: Plugin for projects ?
    Thread Starter erik1990

    (@erik1990)

    Thnx for your reply, but that isn’t what I’m looking for. I’m going to discuss it with the client and maybe we’ll find an alternative

    Forum: Plugins
    In reply to: Slideshow plugin wordpress?
    Thread Starter erik1990

    (@erik1990)

    No that’s not what I meant, I mean the SLIDESHOW, not the shadowbox ?? If you look good, you’ll see images scrolling to the left.

    Oké I take back what I said about the cycle plugin, that it sucks. I recognized that it’s not quite smart to put the cycle plugin manually. So what I did was activate the cycle plugin. But I don’t know what’s with you guys, but do you also have problems with giving styles to the slideshow? Well, I’ve got the solution.

    The wp-cycle plugin adds styles in the index.php, as you all know the styles in the index.php overrides the stylesheet styles. So what you have to do: Go to the wp-cycle folder in the plugins folder of your wordpress blog and open wp-cycle.php. Now scroll to the bottom of that file and delete

    margin: 0; padding: 0;
    overflow: hidden;

    between the style tags. Now, if you have also problems that the cycle plugin somethimes stops and you have to refresh the page to get it work again, then you have to delete the following code also in wp-cycle.php:

    pause: 1,
    fit: 1

    You can find them above the style tags (in my opinion that’s the problem), between the script tags. Ow, after you delete them, don’t forget to delete the last comma before the }); (I guess that would be the comma behind speed:).

    Hello,

    I had the same problem as you guys, did you all add wp-cycle to your page by php code? Because you have to add ONLY this code:
    <?php wp_cycle(); ?>
    If you did it like this:

    <div id="slideshow>
      <?php wp_cycle(); ?>
    </div>

    Then that’s the problem. Because the wp-cycle plugin adds the div around the images by itself. So if you put the div around the wp-cycle plugin by yourself, your source will look like this:

    <div id="slideshow>
      <div id="slideshow>
        <?php wp_cycle(); ?>
      </div>
    </div>

    And ofcourse that will not work. So just put the <?php wp_cycle(); ?> and nothing else, that was my problem, I recognized it by reading my source code.

    But the wp-cycle plugin really, I mean really sucks. It works half of the time and I’m getting a bit sick of it. So I just put the cycle plugin with the effects by myself manually ?? Too bad I can’t change anything in the CMS system then, but at least it works better now.

Viewing 6 replies - 1 through 6 (of 6 total)