Forum Replies Created

Viewing 15 posts - 1,621 through 1,635 (of 2,964 total)
  • Author
    Posts
  • in reply to: Widgets not showing #4112
    Steve
    Keymaster

    @hozefasmile– A /piklist/ folder inside themes is currently not working correctly in the current version of Piklist. If you make a plugin it will work fine.

    We are putting the finishing touches on the next version of Piklist which will support themes and child themes.

    in reply to: metabox select for font awesome #4111
    Steve
    Keymaster

    @jcrist– Nice! Love the Font Awesome class names.

    in reply to: Adding tax meta field on new tax form #4110
    Steve
    Keymaster

    @poxtron– Piklist doesn’t support fields for NEW Terms anymore. We had this in, but due to the limited space on this page we pulled out the feature because fields looked broken. We plan on putting it back in, in the future.

    in reply to: How to remove TinyMCE buttons in the editor field? #4096
    Steve
    Keymaster

    You may need to go old school to get this done. Remember, Piklist does everything the WordPress way, so standard WP hooks, filters and functions work just fine. This Codex page may help >

    in reply to: Adding a repeatable div #4094
    Steve
    Keymaster

    I’m still not clear. Happy to chat on Skype if you like. Email me at [email protected] to schedule a time.

    in reply to: Adding a repeatable div #4092
    Steve
    Keymaster

    @giec– Sorry, but I’m still a bit confused. What is creating the meta-box, “My Metabox”? Is this created by the select field?

    in reply to: Piklist conflict with ACF Flexible Content #4090
    Steve
    Keymaster

    @ndmurph04– I sent you an email with instructions and latest beta. Thanks for contributing to Piklist!

    in reply to: WordPress 4.2.3 and shortcodes? #4089
    Steve
    Keymaster

    Closing ticket.

    in reply to: WordPress 4.2.3 and shortcodes? #4087
    Steve
    Keymaster

    @cseifert– Welcome to the Piklist Community!

    The current version of Piklist at WordPress.org doesn’t use shortcodes so you are fine to upgrade.

    in reply to: Adding a repeatable div #4085
    Steve
    Keymaster

    The image link is broken. Please repost.

    in reply to: Adding a repeatable div #4083
    Steve
    Keymaster

    This code will add a repeatable textarea where the user can add code. Then pull this field, and loop through it to display:

    piklist('field', array(
      'type' => 'textarea'
      ,'field' => 'my_divs'
      ,'label' => __('Add your code')
      ,'add_more' => true
    )
    

    There is no need for an “Add” button.

    in reply to: Reorder the thumbnails images in the list of post #4081
    Steve
    Keymaster

    @bicho44– Glad you love the feature, and we appreciate the feedback. If we can think of a way to handle this well, then we might do it. So, people want the ID first… some want it last. It gets a little crazy. 😉

    in reply to: Adding a repeatable div #4079
    Steve
    Keymaster

    Do you want these divs to appear on the front end or in the admin area?

    in reply to: Adding a repeatable div #4072
    Steve
    Keymaster

    Your code for custom-div-div_one.php is incorrect. You can’t wrap a div within php tags. just change it to this:

    <div class="infoBox one"></div>

    in reply to: Number field do not support step attribute? #4069
    Steve
    Keymaster

    The number fields is an HTML5 field, not a Piklist field. Piklist just makes it easy for you to implement. It looks like you need to set the min attribute as well:

    piklist (
      'field',
      array(
        'type' => 'number',
        'scope' => 'post_meta',
        'field' => 'precio_barco',
        'label' => __('Precio', 'imgd'),
        'value' => '',
        'attributes' => array(
            'class' => 'text',
            'step' => '0.01',
            'min' => '0.00'
        )
      )
    );
    
Viewing 15 posts - 1,621 through 1,635 (of 2,964 total)