ModDish
Forum Replies Created
-
Forum: Plugins
In reply to: [Grid Products] How to add a photo to productsounds like you have featured image unchecked in the settings on the top dropdown in the wordpress admin.
Forum: Plugins
In reply to: [Grid Products] Text Styling Being Strippedare you talking about the product summery? if so WordPress strips the excerpts , not the plugin, you would need to disable that in WordPress or add in something like “advanced excerpts” or another plugin that disabled that WordPress feature.
Forum: Plugins
In reply to: [Grid Products] Product inventory with filteryou need to modify the css and plugin code to suit your needs.
as for the shortcode, its explained in the txt doc that is included and also the settings menu.
Forum: Plugins
In reply to: [Grid Products] Example of full short-codeThe world is your playground lol ?? you can do whatever you like with the code to make it function as you wish. you would need to modify the short code to support the buttons and the switch code, the other you would need to add sort to the sql quury etc. If I ever get a free minute I may circle back to add some more things in but right now and for the foreseeable future im flat out with work.
Forum: Plugins
In reply to: [Grid Products] Products Aren't AppearingI would need to see a link.
Forum: Plugins
In reply to: [Grid Products] Grid View Showing bullets (UL) in front of pictureswould need a link to the site to diagnose any further.
Forum: Plugins
In reply to: [Grid Products] Grid View Showing bullets (UL) in front of picturestry list-style-type: none !important;
sounds like another general style in your theme is overriding the plugin css
Forum: Plugins
In reply to: [Grid Products] 4 products in grid listadjust the width in the css, or increase the container in your theme.
Forum: Plugins
In reply to: [Grid Products] permalink not correct once publishedas per the instructions, you need to updated permalinks after install ?? just adding the answer here in case anyone else has the issue.
Forum: Plugins
In reply to: [Grid Products] category Filterwhy not just create a page template, with buttons on the top for each hidden dive,
in the hidden divs place the shortcode in the theme using word presses “DO shorcode” Function, then have the buttons show hide the category based on button pressed.
Forum: Plugins
In reply to: [Grid Products] category Filteryou need to be a bit more specific.
Forum: Plugins
In reply to: [Grid Products] Thumbnails Not Consistent Sizeanytime ?? if you get a chance please rate the plugin
Thanks!
Forum: Plugins
In reply to: [Grid Products] Thumbnails Not Consistent Sizewidth=”740″ seems to work on your page, but you have some other issues going on that are not related to the plugin that are causing the small images. width=”740″ should make the image about the size of the entire content area, but on your site, it only makes them about 200px wide. maybe a javascript auto resize problem or a css rule applieing to anything with the img tag.
Forum: Plugins
In reply to: [Grid Products] Thumbnails Not Consistent Sizeseems you have some table issues on your page, that are causing the side with the images to be small, and the images adjusting to fit the space.
edit the plugin file, find :
$product_shortcode .= '<tr><td align="center"><a href="' . get_permalink() . '"><img src="'.$theimage[0].'" alt="" /></a></td>';
and add a hardcoded size
$product_shortcode .= '<tr><td align="center"><a href="' . get_permalink() . '"><img src="'.$theimage[0].'" alt="" width="240" /></a></td>';
adjust the 240 to the size you want.
for the grid view, the images are all the same size, seems the picutes you are uploading are different shapes and zooms which would effect how large they appear in the thumbnail.
Forum: Plugins
In reply to: [Grid Products] How to remove Date and Time?thats not part of the plugin, your themes single.php file is adding the date.
add something like this around the date to hide it on product pages
<?php if (get_post_type( $post->ID ) != 'grid_products' ){ ?> date code here <?php } ?>
if you want to show something on a product page ( like the featured image ) do the opposite featured image example :
<?php if (get_post_type( $post->ID ) == 'grid_products' ){ $theimage=wp_get_attachment_image_src( get_post_thumbnail_id($post->ID) , 'product-image'); ?> <img class="alignright size-thumbnail wp-image-181" style="margin-left: 10px; margin-right: 10px;" alt="" src="<?php echo $theimage[0]; ?>"> <?php } ?>