Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #513089

    I have a client who would like to know whether it is possible to do the following. As I was unable to find the answers in the forum, I wonder if you may be able to help please:

    1. In a full page slideshow, once a person clicks on the arrow to take them to the next slide, the slideshow automatically stops. Is there any way it can be set up so that it would restart again?

    2. Blog feed formatting – please see http://theepicureanarchitect.com/ (scroll down below heading “This is what it’s all about”)
    – Is there a way to reduce space between columns in a Blogfeed Grid,
    – How can blog post headings be centred in the feed (I’ve only managed to centre the excerpt text)
    – How can number of comments be removed from below the heading and just date be kept?

    Many many thanks
    Ivana

    #513485

    Hey Ivana!

    Thank you for using Enfold.

    1.) This is possible but you have to modify the js > shortcodes.js file. Look for this code around 4627:

    // public method: shows next image
    		next : function(e)
    		{
    			e.preventDefault();
    			this._stopSlideshow();
    			this._navigate( 'next' );
    		},
    
    		// public method: shows previous image
    		previous : function(e)
    		{
    			e.preventDefault();
    			this._stopSlideshow();
    			this._navigate( 'prev' );
    		},

    .. replace it with:

    // public method: shows next image
    		next : function(e)
    		{
    			e.preventDefault();
    			this._stopSlideshow();
    			this._navigate( 'next' );
    			this.play();
    		},
    
    		// public method: shows previous image
    		previous : function(e)
    		{
    			e.preventDefault();
    			this._stopSlideshow();
    			this._navigate( 'prev' );
    			this.play();
    		},

    2.) Add this in the Quick CSS field:

    .avia-content-slider .slide-entry {
        width: 24%;
        margin-left: 1%;
    }
    
    .slide-meta-comments, .slide-meta-comments + * {
        display: none !important;
    }

    Regards,
    Ismael

    #513507

    Ismael, you are wonderful. Thank you. I have done as suggested and it is all working.

    I greatly appreciate your help.

    Ivana

    #513576

    Hi Ivana,

    Glad we could help :-)

    Cheers!
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Formatting blog feed’ is closed to new replies.