Forum Replies Created

Viewing 15 replies - 1 through 15 (of 162 total)
  • Thread Starter ModDish

    (@moddish)

    Perfect, thanks ??

    Plugin Contributor ModDish

    (@moddish)

    installation 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.

    Plugin Contributor ModDish

    (@moddish)

    I 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….

    Plugin Contributor ModDish

    (@moddish)

    should be fine, just haven’t had the time to update the stats on wordpress

    Plugin Contributor ModDish

    (@moddish)

    Hard to diagnose the site, without seeing the site ?? could be a million things.

    Plugin Contributor ModDish

    (@moddish)

    this 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.

    Plugin Contributor ModDish

    (@moddish)

    sounds like you disabled the plugin?

    EDIT:

    /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.

    Plugin Contributor ModDish

    (@moddish)

    your theme needs to support shortcodes in widgets

    add

    // Enable shortcodes in widgets
    add_filter('widget_text', 'do_shortcode');

    to your themese function file.

    Plugin Contributor ModDish

    (@moddish)

    Thats not what the plugin is designed for ….

    Plugin Contributor ModDish

    (@moddish)

    there 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');
    Plugin Contributor ModDish

    (@moddish)

    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 )

    Plugin Contributor ModDish

    (@moddish)

    just add a class

    ul.products img {

    }

    to your style sheet, and but a border or whatever style you want on it

    Plugin Contributor ModDish

    (@moddish)

    link to your site?

    Plugin Contributor ModDish

    (@moddish)

    Install 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.
    hidetitle

    Used 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″

Viewing 15 replies - 1 through 15 (of 162 total)