ModDish
Forum Replies Created
-
Forum: Plugins
In reply to: [Grid Products] Number of products to displayyou could add a attribute to the shortcode named limit
ex : limit=”3″ then if limit exists add the LIMIT 3 to the sql call.
Forum: Plugins
In reply to: [Grid Products] Product Page shows errorfist thing in the readme file
Extract the zip file and upload the contents to the wp-content/plugins/ directory of your WordPress installation and then activate the plugin from plugins page.
The plugin registers a new custom post type, so you’ll want to update your permalinks. No need to change your permalink structure, just go to “Settings->Permalinks” and click “Save Changes” without making any modifications.
Forum: Plugins
In reply to: [Grid Products] Products do not appearwhat shortcode did you use?
Forum: Plugins
In reply to: [Grid Products] Does the plugin have built in caching system?the amount of data you mention is a drop in the bucket for a mysql server.
Forum: Plugins
In reply to: [Grid Products] Change Button Color or remove view product buttonJust edit the plugins stylesheet
Forum: Plugins
In reply to: [Grid Products] Background not behind the product grid ?link is broken
Forum: Plugins
In reply to: [Grid Products] Category show on pageYou would need to creat a page for each category , add the shortcode to each with the cat=”” and then create a page and link to them all.
Forum: Plugins
In reply to: [Grid Products] Display price in the product pagein your single.php theme file
<?php
if (get_post_type( $post->ID ) == ‘products’ ){
$price=’$’.get_post_meta( get_the_ID(), ‘_grid_product_price’, true );
echo $price;
}
?>Forum: Plugins
In reply to: [Grid Products] I want to remove Category Name*Closed*
Forum: Plugins
In reply to: [Grid Products] Error "Warning: array_values() expects parameter 1…"thats not an error in grid products its an error in “inventory”
Forum: Plugins
In reply to: [Grid Products] I want to remove Category Nameadd hidetitle=”yes” to the shortcode
Forum: Plugins
In reply to: [Grid Products] Text Styling Being Strippednp glad that solved the issue 🙂
Forum: Plugins
In reply to: [Grid Products] Grid View Showing bullets (UL) in front of picturesits not a bullet, your theme is adding a background image to all li’s that are contained in ul’s anywhere on your page.
Forum: Plugins
In reply to: [Grid Products] Grid View Showing bullets (UL) in front of pictureshere is the problem in your themes css file
ul li {
background-image:url(../images/bull.gif);
}Forum: Plugins
In reply to: [Grid Products] Show large loop into multiple pages?you would need to modify the plugin code to enable pagination in the query.