Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • We had the same question and noticed no-one has provided any answers for this popular question. We did some research and got it all working, here’s the info for others –

    1.Where can I find the Mail Chimp action url?
    Check this link ( step 1 – 10) -> LINK

    Put that action url in the admin section and then you will have to change the id of email field as well, we did this directly in code as UI had no option to provide it and we removed the name field as well.

    Here’s what we have in templates/yith-newsletter-popup.php

    <ul class="newsletterfields">
                                    <li class="newsletterbottom">
                                        <input type="text" name="EMAIL" id="mce-EMAIL" class="email-field text-field" placeholder="<?php echo get_option('yith_newsletter_popup_email_label') ?>" />
                                    </li>
                                </ul>

    After that MailChimp will be integrated and things should work fine.
    HTH,
    Mick

    Hi,
    We stumbled across the exact same issue and here’s a hack to get it working until the author adds the support to the core plugin.

    In my case, I just wanted the admin to be only one able to manage (edit/delete etc) the post_type and so here’s the fix –

    Open custom-post-type-ui.php and around Line 122 (v0.7.2), add the following to ‘register_post_type’ function i.e.

    'capabilities' => array(
    				    'edit_post'          => 'update_core',
    				    'read_post'          => 'update_core',
    				    'delete_post'        => 'update_core',
    				    'edit_posts'         => 'update_core',
    				    'edit_others_posts'  => 'update_core',
    				    'publish_posts'      => 'update_core',
    				    'read_private_posts' => 'update_core'
    				),

    Source – LINK

    HTH,
    Mick

    Thread Starter micks800

    (@micks800)

    We were able to do this by using the “lightbox colorbox” plugin and by adding rel=”lightbox[text]” to the plugin php where the >a> link is placed….

    Thanks,
    Mick

Viewing 3 replies - 1 through 3 (of 3 total)