[Resolved] EDD Products in Grid Form

Home Forums Support [Resolved] EDD Products in Grid Form

Home Forums Support EDD Products in Grid Form

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #211716
    Dhruv

    My website is built on Easy Digital Downloads and GeneratePress.

    I am facing some customisation issues.

    How can I set up easy digital download products in Grid Layout form.
    How can I display category or tag or archives of EDD products in Grid Layout.

    Also the blog addon (Mansory or multiple column) is not working for EDD (Archives/Cateogy/tag)

    Kindly help me.

    Regards

    #211730
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    How can I set up easy digital download products in Grid Layout form.
    How can I display category or tag or archives of EDD products in Grid Layout.

    These might be questions better suited for EDD – although I believe they have a shortcode that displays their products in a grid layout.

    Also the blog addon (Mansory or multiple column) is not working for EDD (Archives/Cateogy/tag)

    This depends on how they display their posts. I use EDD here, but I manually add my products and just use them for the add to cart buttons – that way I have more control.

    Can you link me to an archives/category/tag page using EDD on your site?

    #211733
    Dhruv

    Kindly check this link

    http://mindsphere.org/downloads/category/ncert-books/

    I want all products to be display in Grid layout uniformly in my website.

    Pls provide any code for getting this feature.

    #211827
    Tom
    Lead Developer
    Lead Developer

    Are you using the columns feature in the Blog add-on anywhere else on the site?

    #211878
    Dhruv

    Yes Sir

    I am using 2 columns in blog front page.

    (I have checked that blog addon disappears from customiser if home page is not latest posts.)

    #211900
    Tom
    Lead Developer
    Lead Developer

    Hmm, try something like this:

    add_filter( 'generate_blog_columns','generate_edd_columns' );
    function generate_edd_columns()
    {
    	if ( is_tax( 'download_category' ) )
    		return true;
    		
    	return $columns;
    }

    Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/

    #211918
    Dhruv

    Thank You ๐Ÿ™‚
    It is working.

    #211956
    Tom
    Lead Developer
    Lead Developer

    You’re welcome ๐Ÿ™‚

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.