Photomaker Slider - remove arrows, only have one image

Discussion in 'Photomaker WordPress Theme' started by atlasprowriter, Jul 12, 2017.

  1. atlasprowriter

    atlasprowriter Member

    Joined:
    Sep 19, 2012
    Messages:
    92
    Likes Received:
    3
    Hi. I'd like to only have one image on my home page. No slider. No other images ... but I may want to add images to the slider later? Is there a simple way to do/undo this? Thanks!
     
  2. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49
    Hello,

    You can remove other images of the slider from the theme options panel.
     
  3. atlasprowriter

    atlasprowriter Member

    Joined:
    Sep 19, 2012
    Messages:
    92
    Likes Received:
    3
    This is a default second slider that comes with the theme. It's not in the Theme Options panel, so you can't remove it from there.

    I would also like to totally remove the arrows as well. I just want the image there. No indication of sliding whatsoever.
     
  4. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49
    Hello,

    It would be better for us to understand your query with the help of some edited screenshots.
    Please share some screenshots of the concerned areas of your site.

    So that we can deliver you an exact and appropriate solution to you,

    And to remove arrows from the slider, just paste the code given below in Custom CSS section.
    (Dashboard->Inkthemes->Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .tf_next {
        display: none;
    }
    
    .tf_prev {
        display: none;
    }
    And to remove slider description:

    Code:
    div#tf_content_wrapper {
        display: none;
    }
    Thanks & Regards!
    Akbar
    InkThemes.com

    PS: You can create your screenshots using screenpresso (http://www.screenpresso.com).
     
  5. atlasprowriter

    atlasprowriter Member

    Joined:
    Sep 19, 2012
    Messages:
    92
    Likes Received:
    3
    Thanks. I was able to remove the arrows and the text using that code.

    Now I just want to stop the image from scrolling. You can go to the site and, even without the arrows, if you scroll, the image flips. I'd like that to stop. I can't access the other image, and I would like to stop the scrolling altogether. Thanks. I've attached two images. One I want, as well as the other it scrolls to.

    What I want:
    What I want..png

    What I don't want:
    What I don't want..png
     
  6. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49
    Hi,

    Greeting from InkThemes,

    We need WordPress admin credentials to figure out the issue.
    Kindly send the below-mentioned credential details at [email protected] along with the thread link.

    WordPress Website URL: -
    WordPress Username: -
    WordPress Password: -

    We will try to fix your issue.

    Regards,
    Akbar
    InkThemes.com
     
  7. atlasprowriter

    atlasprowriter Member

    Joined:
    Sep 19, 2012
    Messages:
    92
    Likes Received:
    3
    Email sent. Thanks.
     
  8. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49
    Hi,

    We have successfully received your website credentials and forwarded to the concerned department.

    We will get back to you with a positive response ASAP.

    Warm Regards!
    Akbar
    InkThemes.com
     
  9. familys

    familys New Member

    Joined:
    Jul 13, 2017
    Messages:
    13
    Likes Received:
    1
    Hi
    Please could you let me know how to remove the arrows on my slider? (Parent Guide theme) The above code does not work for mine.
    Thank you
     
    smith likes this.
  10. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49
    Hello,

    To remove arrows of the slider, just paste the code given below in Custom CSS section.
    (Dashboard->Inkthemes->Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .flexslider .flex-direction-nav .flex-prev {
        display: none;
    }
    
    .flexslider .flex-direction-nav .flex-next {
        display: none;
    }
    Hope this helps...!

    Thanks & Regards!
    Akbar
    InkThemes.com
     
  11. familys

    familys New Member

    Joined:
    Jul 13, 2017
    Messages:
    13
    Likes Received:
    1
    Thank you - that worked perfectly.
     
  12. akbar92

    akbar92 Support Staff Staff Member

    Joined:
    Jun 3, 2017
    Messages:
    2,318
    Likes Received:
    49
    Sounds great...
     

Share This Page