ModDish
Forum Replies Created
-
Forum: Plugins
In reply to: [Grid Products] Change permalinkyou would need to change the plugin file in the permalink section, then once changed, resave your permilinks.
Forum: Plugins
In reply to: [Grid Products] How to useyou need to add a featured image (right hand side) to your product.
Forum: Plugins
In reply to: [Grid Products] Custom template for product?you could edit the single template, then have a if else statement something like :
if (get_post_type( $post->ID ) == ‘grid_products’ ){
include ‘producttemplate.php’;
}else {
rest of single file
}Forum: Plugins
In reply to: [Grid Products] How Do I turn on CommentsComments are disabled by default for custom-post-types. This happens even if you have them enabled in the overall settings
To fix it, all you had to do was the following:
In SETTINGS > DISCUSSION uncheck the “Allow people to post comments on new articles” setting.
Click “Save Changes”
Now go back and re-check “Allow people to post comments on new articles”
Click “Save Changes”Forum: Plugins
In reply to: [Grid Products] How Do I turn on CommentsForum: Plugins
In reply to: [Grid Products] Get rid of Post By linethe code will be different in every theme. try to fine something in the line that wouldn’t be dynamic. “posted by” for instance.
If you don’t find it in the single file, it may be setup with a function, then look in functions.php
Forum: Plugins
In reply to: [Grid Products] Get rid of Post By linethat is part of your theme, check you single.php file.
Forum: Plugins
In reply to: [Grid Products] Product Page shows errorThanks. One of these days if I ever get some free time ill add some more features like pagination, sort options etc, but right now im so busy with clients work just can’t find the time to work on anything of mine. Kinda ties in with the saying of the shoemakers kids having no shoes lol
Forum: Plugins
In reply to: [Grid Products] Product Page shows errorlike the installation page?
http://wordpress.org/plugins/grid-products/installation/
its already there. would be great if you read the read me or install page
what would be a better spot?
Forum: Plugins
In reply to: [Grid Products] Category products paginate?you would need to add pagination to the plugin itself. would take a few hours to add but is pretty straight forward.
Forum: Plugins
In reply to: [Grid Products] Categories and Sub-categories not showing upthe easiest way to do this, is to create pages for your categories, on the front just add images that link to the category pages. then add the shortcode to them pages.
Forum: Plugins
In reply to: [Grid Products] List of sub-categoriescreate a page for the top level
add the 3 sub level shortoces with titles hidden.
then create a page for each sub level and add each shortcode.
Forum: Plugins
In reply to: [Grid Products] How to override category template?you could simply check the category id, then write some php ti load a certain template if cat id = the id.
Forum: Plugins
In reply to: [Grid Products] Changing image sizeafter you change the image size in the plugin, you need to reupload the images, that size is a thumbnail wordpress generates upon upload. since it is alreay uploaded and sized to the previous size, it will continue to use that size until you reupload
Forum: Plugins
In reply to: [Grid Products] How to shorten CSSanytime, glad I could help