Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Front-end form won't scroll on Chrome or Firefox. #7346
    Rob Hust
    Member

    I fixed the issue with CSS – janky workaround, but let’s me move on.

    #cv-view {
    overflow-y: scroll !important;
    }

    in reply to: Front-end form won't scroll on Chrome or Firefox. #7328
    Rob Hust
    Member

    I killed the modal script, as well as the template that was loading it. Still no joy. I loaded the form from Piklist Demo in place of mine… same issue.

    in reply to: Select fields with taxonomy in meta-box not saving. #7247
    Rob Hust
    Member

    You are a fantastic help. I appreciate the time you took to sleuth this out. The post type and taxonomies are working flawlessly – I’ll share a link when it’s deployed.

    I’ve known about Piklist for quite a while, but since my coding skills are lackluster at best, I’ve eschewed it for more GUI focused alternatives – yes, all the usual suspects. The good ones are barely adequate, and train you to accept / deploy mediocre solutions. My dissatisfaction (and far too many annual subscription fees for “developer” licenses) pushed me to finally take the plunge and dive into Piklist. No easy task to be sure, the documentation often has more hints than answers ( typical of a project where the documentation lies in comments in the code itself – where they are not readily accessible or searchable). That is my only real critique, and it will fade in time as my understanding grows.

    You and the community around you have created a fantastic tool. While initially frustrating, it’s becoming more fun and interesting to use as my understanding grows, and with each project. While other’s in the community may argue against you deploying more GUI focussed solutions (and I get it that, now that I’ve climbed the steep side of the learning curve) I respectfully disagree with them. I think with Piklist at the core, your “Toolbox”, and “Fields and Forms” solutions could further enhance the WordPress ecosphere. Unlike your competitors, you have a much more agile and powerful framework. You’ve benefitted from your philosophy of adhering to WordPress standards, while giving us bee-line shortcuts to productivity.

    I offer a heart felt “Thank You” to you and your crew.

    in reply to: Select fields with taxonomy in meta-box not saving. #7196
    Rob Hust
    Member

    I cleaned up the taxonomy definitions, still no joy…

      add_filter('piklist_taxonomies', 'recipe_taxonomies');
      function recipe_taxonomies($taxonomies)
      {
        $taxonomies[] = array(
          'post_type' => 'gw-recipe'
          ,'name' => 'cuisine'
          ,'configuration' => array(
            'hierarchical' => true
            ,'labels' => piklist('taxonomy_labels', 'Cuisine')
            ,'page_icon' => piklist('url', 'piklist') . '/parts/img/piklist-page-icon-32.png'
            ,'show_ui' => true
            ,'query_var' => true
            ,'rewrite' => array(
              'slug' => 'cuisine'
            )
            ,'show_admin_column' => true
            ,'list_table_filter' => true
            ,'meta_box_filter' => true
            ,'comments' => true
          )
        );
    
        $taxonomies[] = array(
          'post_type' => 'gw-recipe'
          ,'name' => 'course'
          ,'configuration' => array(
            'hierarchical' => true
            ,'labels' => piklist('taxonomy_labels', 'Course')
            ,'page_icon' => piklist('url', 'piklist') . '/parts/img/piklist-page-icon-32.png'
            ,'show_ui' => true
            ,'query_var' => true
            ,'rewrite' => array(
              'slug' => 'course'
            )
            ,'show_admin_column' => true
            ,'list_table_filter' => true
            ,'meta_box_filter' => true
            ,'comments' => true
          )
        );
    
        $taxonomies[] = array(
          'post_type' => 'gw-recipe'
          ,'name' => 'tools'
          ,'configuration' => array(
            'hierarchical' => true
            ,'labels' => piklist('taxonomy_labels', 'Tools')
            ,'page_icon' => piklist('url', 'piklist') . '/parts/img/piklist-page-icon-32.png'
            ,'show_ui' => true
            ,'query_var' => true
            ,'rewrite' => array(
              'slug' => 'tools'
            )
            ,'show_admin_column' => true
            ,'list_table_filter' => true
            ,'meta_box_filter' => true
            ,'comments' => true
          )
        );
    
        return $taxonomies;
      }
    
Viewing 4 posts - 1 through 4 (of 4 total)