ModDish
Forum Replies Created
-
Forum: Plugins
In reply to: [Grid Products] How to override category template?not sure i understand what you want, can you try to explain in more detail?
Forum: Plugins
In reply to: [Grid Products] Pages, posts, categories, and gridproductsunder products, create your product categories
add your products and assign them to the categories
make a page
insert the shortcode of your choice into the page.
Forum: Plugins
In reply to: [Grid Products] Pages, posts, categories, and gridproductsyou need to add “products” not posts.
look under the media tab in the admin menu.
Forum: Plugins
In reply to: [Grid Products] featured image not showinglink to site for example?
Forum: Plugins
In reply to: [Grid Products] How to set up 4 products in line! as its on the screenshot?adjust the plugin stylesheet for the width will fit 4 per line in your particular template
Forum: Plugins
In reply to: [Grid Products] Having products in alphabetical orderForum: Plugins
In reply to: [Grid Products] Number of products to displayyou need to code that into the plugins php file…its not a built in feature.
Forum: Plugins
In reply to: [Grid Products] CPT not woking with Grid product pluinsnot sure what your trying to do, please elaborate ? did you read the readme file included with grid products?
Forum: Plugins
In reply to: [Grid Products] Background not behind the product grid ?can’t see where you have the plugin working.
Forum: Plugins
In reply to: [Grid Products] Grid Product on Full widthmodify the style sheet
Forum: Plugins
In reply to: [Grid Products] How can I get rid of the $ in the priceok….your screen is bigger than mine…congratulations
ctrl -> f
$product_shortcode .= ‘<p><b>Price $’.$price.'</b></p>’;seems simple enough to me.
Forum: Plugins
In reply to: [Grid Products] Products do not appearany errors in your console?
Forum: Plugins
In reply to: [Grid Products] Sorting products in categoriesyou would need to modify the sql call to use a different orderby field
Forum: Plugins
In reply to: [Grid Products] How to shorten CSSyour problem is in your themes css :
ul, ol {
margin: 0 20px 20px 0;
padding-left: 40px;
}padding left
in the plugin style sheet change this :
ul.products {
float:left;
width:100%;
margin:0 0 20px 0 ;
-moz-border-radius: 15px 15px 15px 15px;
border-radius: 15px 15px 15px 15px;
}to this :
ul.products {
float:left;
width:100%;
margin:0 0 20px 0 ;
-moz-border-radius: 15px 15px 15px 15px;
border-radius: 15px 15px 15px 15px;
padding-left: 0px;
}Forum: Plugins
In reply to: [Grid Products] Custom template for product?