ModDish
Forum Replies Created
-
Forum: Plugins
In reply to: [Grid Products] Please Post SuggestionsThanks RisingPhoenix7
will see what I can do 🙂
Forum: Plugins
In reply to: [Grid Products] Pages, posts, categories, and gridproductsthis should also work
http://wordpress.org/plugins/post-type-switcher/Forum: Plugins
In reply to: [Grid Products] How to get rid of such inscription?you sure you didn’t type that into the page you put the shortcode on?
Forum: Plugins
In reply to: [Grid Products] Pages, posts, categories, and gridproductsNo you cannot use pages , BUT I took a look around and you can simply convert the pages to the custom post type “products” using this plugin :
Forum: Plugins
In reply to: [Grid Products] use of View Productfrom the read me and instructions 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] use of View ProductPlease read the “readme” then follow the first instruction….click save on your permalinks.
Forum: Plugins
In reply to: [Grid Products] Change Price to £you would need to modify the php file for any price references.
Forum: Plugins
In reply to: [Grid Products] link removemodify the plugin file to remove the links.
EX:
$product_shortcode .= '<td><div class="product-title"><a href="' . get_permalink() . '">'. get_the_title().'</a></div>';'becomes
$product_shortcode .= '<td><div class="product-title">'. get_the_title().'</div>';there are a few spots you will need to edit to make this work. not sure why you would want to thou
Forum: Plugins
In reply to: [Grid Products] Change permalinkline 93 :
'rewrite' => array( 'slug' => 'product', 'with_front' => false ),Forum: Plugins
In reply to: [Grid Products] 3 single products in a row and coloured backgroundyou could add a css class to the individual items, then set them to be 30 to 33 % width and display:inline-block;
without seeing the site thats the best I could suggest
Forum: Plugins
In reply to: [Grid Products] 3 single products in a row and coloured backgroundnot sure what you mean in the first question
but for the background just adjust the table class in the plugins css file.
Forum: Plugins
In reply to: [Grid Products] Products posts not showing uphrmm cant edit
the first line in the php code should be :
<?php if (get_post_type( $post->ID ) != 'grid_products' ){ ?>Not
if (get_post_type( $post->ID ) != 'products' ){ ?>Forum: Plugins
In reply to: [Grid Products] Products posts not showing updata and authour is part of your themes single.php file.
you would need to add a php statment around them to remove them on product pages :
<?php if (get_post_type( $post->ID ) != 'products' ){ ?> code that shows the authour etc gere <?php } ?>for the image :
$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 } ?>you may need to play with the code a bit but that gives you the gist of it.
Forum: Plugins
In reply to: [Grid Products] Duplicate productsnot sure what you mean? please elaborate
Forum: Plugins
In reply to: [Grid Products] Is this plugin compatible with easy digital downloads?never used it, you would need to test it, and post back to let others know.