ModDish
Forum Replies Created
-
Perfect, thanks ??
Forum: Plugins
In reply to: [Grid Products] 404 Page Not Found on Productsinstallation page:
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] 404 Page Not Found on ProductsI don’t normally reply to problems that are based on the fact that you never followed the install instructions.
“go to Settings->Permalinks, and on that page click ‘Save Changes’. Once I’d done that, all the pages started resolving properly.”
which is clearly stated….
Forum: Plugins
In reply to: [Grid Products] Support Pluginshould be fine, just haven’t had the time to update the stats on wordpress
Forum: Plugins
In reply to: [Grid Products] Products Command is goneHard to diagnose the site, without seeing the site ?? could be a million things.
Forum: Plugins
In reply to: [Grid Products] Thumbnail product imagesthis is your themes single.php files featured image, nothing to do with the plugin. you will need to create an alternate single file for products to customize the individual view.
Forum: Plugins
In reply to: [Grid Products] Products Command is gonesounds like you disabled the plugin?
Forum: Plugins
In reply to: [Gravity Forms No CAPTCHA reCAPTCHA] Responsive / No fixed WidthEDIT:
/plugins/gravity-forms-no-captcha-recaptcha/public/class-gf-no-captcha-recaptcha-public.php
change:
// Public sees CAPTCHA field return '<div class="ginput_container"><div class="g-recaptcha" data-sitekey="' . $site_key . '" data-theme="' . $theme . '"></div></div>';
To:
// Public sees CAPTCHA field return '<div class="ginput_container"><div class="g-recaptcha" data-sitekey="' . $site_key . '" data-theme="' . $theme . '" style="transform:scale(0.67);transform-origin:0 0"></div></div>';
you may need to play with the
style=”transform:scale(0.67)for your site.
Forum: Plugins
In reply to: [Grid Products] Using Shortcode in Widgetyour theme needs to support shortcodes in widgets
add
// Enable shortcodes in widgets add_filter('widget_text', 'do_shortcode');
to your themese function file.
Forum: Reviews
In reply to: [Grid Products] Not working with WPe-commerceThats not what the plugin is designed for ….
Forum: Plugins
In reply to: [Grid Products] Search productsthere must be something in your theme preventing search, as the code to add them to the search is already in the plugin.
try adding this to your themes function file
function filter_search($query) { if ($query->is_search) { $query->set('post_type', array('post', 'grid_products')); }; return $query; }; add_filter('pre_get_posts', 'filter_search');
Forum: Plugins
In reply to: [Grid Products] How To Create Boxes Around Product Thumbs?OR
in the plugin file do a fine and replace for
productmoreholder
replace with
productmoreholder btn
Then in the style sheet
.productmoretag a {
float: right;
-moz-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
background: none repeat scroll 0 0 #002e69;
display: block;
padding: 3px 5px;
font-size: 10pt;
color: #fff;
text-decoration: none;
}replace with
.productmoretag a {
float: right;
-moz-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
// background: none repeat scroll 0 0 #002e69;
display: block;
padding: 3px 5px;
font-size: 10pt;
color: #fff;
text-decoration: none;
}AND
.productmoretag a:hover {
background: none repeat scroll 0 0 #6e95b6;
text-decoration: none;
color: #fff;
text-decoration: none;
}WITH
.productmoretag a:hover {
//background: none repeat scroll 0 0 #6e95b6;
text-decoration: none;
color: #fff;
text-decoration: none;
}this will let your theme handle the buttons ( red button yellow hover )
Forum: Plugins
In reply to: [Grid Products] How To Create Boxes Around Product Thumbs?just add a class
ul.products img {
}
to your style sheet, and but a border or whatever style you want on it
Forum: Plugins
In reply to: [Grid Products] How To Create Boxes Around Product Thumbs?link to your site?
Forum: Plugins
In reply to: [Grid Products] Can't find short codeInstall tab of plugin:
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.
Possible Shortcode [product]
Shortcode options :
cat
Used to display only produces in a certain category. If not set ALL products from any category will be shown.
Usage : cat=”category-slug”
id
You can insert a single Product
Usage : id=”1234″ – where 1234 is the post ID.
Note: the cat & the id attributes are mutually exclusive. Don’t use both in the same shortcode.
hidetitleUsed in conjunction with the “cat” shortcode to hide the category title incase you would like to use something else instead of the category name.
Usage : hidetitle=”yes”
featured
Will set the background of the container to a default light grey.
Usage : featured=”yes”
view
The default view is a grid view, if you would prefer to use “list” view set this attribute to equal list
Usage : view=”list”
buttontext
The default button text is “Read More” if you would like to change the text use this attribute
Usage : buttontext=”your text here”
des
Used to disable the product excerpt in the default grid view.
Usage : des=”no”
maxdes
Used to set the number of words used in the excerpt in the default grid view. (default – 20) must be a number.
Usage : maxdes=”50″