ModDish
Forum Replies Created
-
Forum: Plugins
In reply to: [Grid Products] Aligning Products with Long Namesnot really an easy fix…look at any stores, and this is how they will look…checkout opencart demo, or any other “store” using a grid view.
you could switch to list view.
Forum: Plugins
In reply to: [Grid Products] Orderhrmm…you would need to modify the plugin
look for :
‘order’ => ‘ASC’,
‘orderby’ => ‘menu_order ID’,and change it to something like :
‘order’ => ‘ASC’,
‘orderby’ => ‘title’,lines 152 and 160
Forum: Plugins
In reply to: [Grid Products] v1.1 missing filesresolved in 1.2 🙂
Forum: Plugins
In reply to: [Grid Products] remove read more button and linking to specific pagePerfect Vogelpesto! thanks 🙂
Forum: Plugins
In reply to: [Grid Products] update crashingHave fixed the upload so this is no longer an issue…thanks Jason for the fix 🙂
Forum: Plugins
In reply to: [Grid Products] How to use maxdes in listviewin list view the plugin is using the wordpress excerpt
add to theme function file :
function new_excerpt_length($length) { return 20; } add_filter('excerpt_length', 'new_excerpt_length');change 20 to number of words.
Forum: Plugins
In reply to: [Grid Products] Thumbnail images for the category pageyou need to upload the image after the plugin is installed. The plugin is built to create its own thumbnails, but since your selecting a image that was uploaded before the plugin was installed, no thumbnail was created so its using the full size image.
Forum: Plugins
In reply to: [Grid Products] How can I get rid of the $ in the pricefind :
$product_shortcode .= ‘<p><b>Price $’.$price.'</b></p>’;replace with
$product_shortcode .= ‘<p><b>Price ‘.$price.'</b></p>’;lines : 226 and 235
Forum: Plugins
In reply to: [Grid Products] pop up imagenot sure what you mean?
Forum: Plugins
In reply to: [Grid Products] Warning: Include Metaboxes.phpremoved them spaces from the download, so no need to worry about it anymore 🙂
Forum: Plugins
In reply to: [Grid Products] update crashingShould be good to go now, download v1.2 🙂
Forum: Plugins
In reply to: [Grid Products] update crashinghrmm strange.. the update must not have went to the server correctly.
ill see what I can do now.
Thanks
EvanForum: Plugins
In reply to: [Grid Products] remove read more button and linking to specific pageyou could just comment it out of the main plugin page
Forum: Plugins
In reply to: [Grid Products] Can I add the price to the grid?plugin sent via email, let me know 🙂
Forum: Plugins
In reply to: [Grid Products] Can I add the price to the grid?evanmugford AT eastlink Dot ca