• HI. I would like to have like 2 or 3 different processes displayed on a page but with different content based on the category or category ID.
    How am I to get this done ?

    Appreciate your feedback.

    Thanks.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author CoolHappy

    (@narinder-singh)

    Hi,

    The current version does not support category based processes.

    You have to update small snippet of code in order to add category based processes.

    hi Coolhappy,

    I have 2 categories of processes. I want to add one to a page and another on to another page. how could I do it or it is also not ready in this version?

    If not in this version, when we are able to add processes based on categories. this is an important feature otherwise with this plugin, users can only add ONE default category.

    Please help.

    Regards,
    Silva

    Plugin Author CoolHappy

    (@narinder-singh)

    Hi Silva,

    We will release category based process feature in next update.

    Thanks!

    Hello,
    I have the same problem ??
    cool plugin, but using category in shortcode would be very useful

    Dear Author, you know a date of next update?

    Anonymous User 14808221

    (@anonymized-14808221)

    To have a ShortCode attribute process_category, where you can pass the Slug of your Process Category, so you can create WorkFlows that output only those Processes under that specific Term, you can edit process_shortcode.php line 25 and add (below it) a new $attribute:

    $attribute = shortcode_atts(array(
                   'type'=>'',
    			   'animation'=>'',
                   'show-posts'=>'',
                   'steps-in-row'=>6,
                   'process_category'=>'',
                ), $atts);

    Then on line 55 change the $args to this:

    $args = array(
            'post_type' => 'process_posts',
            'post_status'=>array('publish'),
            'orderby'=>'meta_value_num',
            'order'=>'ASC',
            'meta_key'=>'pp_post_order',
            'tax_query' => array(
                              array(
                                 'taxonomy' => 'process-categories',
                                 'field'    => 'slug',
                                 'terms'    => $atts['process_category'],
                               ),
                            ),
              );

    Now you can insert the shortcode as this:
    [cool-process type="with-number" process_category="some" steps-in-row="2" show-posts="3"]

    This will display only those processes in term some of taxonomy process-categories

    Small hack that works great.

    • This reply was modified 7 years, 7 months ago by Anonymous User 14808221.
    Plugin Author CoolHappy

    (@narinder-singh)

    Hi All,

    I have added categories based process feature in this update.

    Please upgrade your installed plugin version with our plugin latest version 1.0.3

    Please let me know if you are still facing any problem.

    Thanks!
    CoolHappy

    Now works pretty fine, but i found one problem. When I upload image as circle. I have automatic parallax.
    Is possible to turn off?

    • This reply was modified 7 years, 7 months ago by michalmarton.
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How can I add 2 or more Process Steps on one page based on Category ID ?’ is closed to new replies.