Archived topic
EDD Products in Grid Form
7 replies · Started by Dhruv on July 21, 2016
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
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?
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.
Are you using the columns feature in the Blog add-on anywhere else on the site?
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.)
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/
Thank You :)
It is working.
You're welcome :)
