Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Stefan Boonstra

    (@stefanboonstra)

    Hi,

    Did you write ‘!slideshow_deploy!’ there yourself, or did it appear?

    If it appeared you should go to your slideshow settings and set ‘Avoid content filter’ to ‘No’.

    If you did write it there yourself and you wrote it in a post or a page, you could simply use the shortcode provided on the slideshow settings page to show the slideshow in your post or page. If it’s hard HTML/PHP you wrote it in, you should use the piece of PHP code the slideshow settings page provides.

    Thread Starter LichTim

    (@lichtim)

    Now I got it to work, but I also discovered that I had to remove the title and subtitle because they were in the way of the slideshow and made it look messed up. So I deleted them with :
    #featured,
    .featured-title,
    .featured-subtitle {
    display:none;
    }

    , but now the whole white box disappeared. How can I replace the middle space where the white box was, with a slideshow?.

    //www.bestgame-ever.com

    Is it anyway to change the theme code maybe because now I can’t add anything via shortcode since I removed the white space.

    Plugin Author Stefan Boonstra

    (@stefanboonstra)

    You’re not only settings the title and the subtitle to not display, but you’re also setting #featured invisible. Do it like so, and it will work:

    #featured .featured-title,
    #featured .featured-subtitle {
    display:none;
    }

    But why don’t you just delete the title and description from your page or theme?

    To display the slideshow instead of the #featured box, you should go into your theme and replace the #featured box with the slideshow’s PHP function.

    Thread Starter LichTim

    (@lichtim)

    Yeah, I could edit the theme but the problem is that I have no idea of how to make a child-theme. :/ Only if I could just make the white part disappear some other way…

    Also really a big thanks for helping me out man. 🙂

    Plugin Author Stefan Boonstra

    (@stefanboonstra)

    There’s a lot of info on child themes, if you’d like to learn about them: http://codex.wordpress.org/Child_Themes

    Otherwise you’d have to edit your theme, look for the featured element and replace or delete it.

    You could also try to set the featured element to ‘display: none’ and the slideshow container to ‘display: block’, perhaps that that would work.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How do I make the slider appear on my website?’ is closed to new replies.