Title: iltdevunit's Replies - page 2 | WordPress.org

---

# iltdevunit

  [  ](https://wordpress.org/support/users/iltdevunit/)

 *   [Profile](https://wordpress.org/support/users/iltdevunit/)
 *   [Topics Started](https://wordpress.org/support/users/iltdevunit/topics/)
 *   [Replies Created](https://wordpress.org/support/users/iltdevunit/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/iltdevunit/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/iltdevunit/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/iltdevunit/engagements/)
 *   [Favorites](https://wordpress.org/support/users/iltdevunit/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 16 through 30 (of 100 total)

[←](https://wordpress.org/support/users/iltdevunit/replies/?output_format=md) [1](https://wordpress.org/support/users/iltdevunit/replies/?output_format=md)
2 [3](https://wordpress.org/support/users/iltdevunit/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/iltdevunit/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/iltdevunit/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/iltdevunit/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/iltdevunit/replies/page/3/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Media Category Management] Warning: call_user_func() expects parameter 1 to be a valid callback](https://wordpress.org/support/topic/warning-call_user_func-expects-parameter-1-to-be-a-valid-callback-4/)
 *  Thread Starter [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/warning-call_user_func-expects-parameter-1-to-be-a-valid-callback-4/#post-6248196)
 * Hi there,
 * Yes I am calling this on the front end.
    I have a custom profile template (using
   Theme My Login) and allow the user to select their avatar and update their profile.
 * When the page reloads, the avatar is shown in the header and at this point the
   I set the avatar image’s category to 13.
 * Is there a workaround for this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Theme My Login] Stop redirect to network site when registering](https://wordpress.org/support/topic/stop-redirect-to-network-site-when-registering/)
 *  Thread Starter [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/stop-redirect-to-network-site-when-registering/#post-6224679)
 * Marking as resolved.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Theme My Login] Stop redirect to network site when registering](https://wordpress.org/support/topic/stop-redirect-to-network-site-when-registering/)
 *  Thread Starter [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/stop-redirect-to-network-site-when-registering/#post-6224635)
 * Found it!
 * I commented out this code in class-theme-my-login-ms-signup.php
 *     ```
       if ( ! is_main_site() ) {
          wp_redirect( network_home_url( 'wp-signup.php' ) );
          exit;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Single event page timeout after updating to 5.5.7](https://wordpress.org/support/topic/single-event-page-timeout-after-updating-to-557/)
 *  Thread Starter [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/single-event-page-timeout-after-updating-to-557/#post-6171760)
 * Here’s the original code:
 *     ```
       {has_category_43}
   
          {is_past}
             [alert close="true" type="info"]Please <a href="/contact-us"><strong>contact us</strong></a> to discuss availability.[/alert]
          {/is_past}
   
          <div id="coursesummary">
          [vc_toggle title="Key Facts" open="true" css_animation="top-to-bottom"]
          <h6 class="nopadding">Categories</h6>
          <p>#_CATEGORIES</p>
   
          {is_future}
   
             {has_time}
                <h4 class="nopadding">Date/Time</h4><p>Date(s) - #_EVENTDATES<br /><i>#_EVENTTIMES</i></p>
             {/has_time}
   
             {no_time}
                <h6 class="nopadding">Date/Time</h6><p><a href="/contact-us">Contact us</a></p>
             {/no_time}
   
             {all_day}
                <h6 class="nopadding">Date/Time</h6><p>#_EVENTDATES<br />All day</p>
             {/all_day}
   
          {/is_future}
   
          #_SUMMARYFIELDS
          [/vc_toggle]
          </div>
   
          <strong>#_EVENTEXCERPT</strong>
          <br class="clearfix">
          #_EVENTNOTES
          #_DETAILSFIELDS
   
       {/has_category_43}
   
       {no_category_43}
          <div style="float:right; margin:0px 0px 15px 15px;">#_LOCATIONMAP</div>
          <h4 class="nopadding">Date/Time</h4>
          <p>Date(s) - #_EVENTDATES<br /><i>#_EVENTTIMES</i></p>
   
          #_EVENTNOTES
       {/no_category_43}
   
       {has_bookings}
          <h3>Bookings</h3>
          #_BOOKINGFORM
       {/has_bookings}
   
       #_EVENTTAGS
       ```
   
 * #_SUMMARYFIELDS and #_DETAILSFIELDS are my own placeholders that I swap out in
   event-single.php.
 * The shortcode causing the problem is vc_toggle, which is from the Visual Composer
   plugin. Removing that gets rid of the problem.
    I’m not sure if it’s a change
   in Visual Composer or Event Manager that has made the difference.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Single event page timeout after updating to 5.5.7](https://wordpress.org/support/topic/single-event-page-timeout-after-updating-to-557/)
 *  Thread Starter [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/single-event-page-timeout-after-updating-to-557/#post-6171690)
 * Okay, I’ve figured out the real cause. In my custom single event page format,
   I included a conditional placeholder for the course category i.e. do this when
   the event single page is a course.
    This placeholder contained an expanding div
   shortcode. For some reason the new version doesn’t like shortcodes within the
   page format box.
 * I’ll open a new support question for this issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social Share Buttons & Analytics Plugin – GetSocial.io] Disable automatic embed](https://wordpress.org/support/topic/disable-automatic-embed/)
 *  Thread Starter [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/disable-automatic-embed/#post-6017135)
 * I’ve added my review now, John 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social Share Buttons & Analytics Plugin – GetSocial.io] Asynchronous loading](https://wordpress.org/support/topic/asynchronous-loading-3/)
 *  Thread Starter [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/asynchronous-loading-3/#post-6048330)
 * Hi John,
 * I’m afraid I’m working on an internal development server.
    Also the issue just
   occurred over a couple of minutes. It has not done it since.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social Share Buttons & Analytics Plugin – GetSocial.io] Disable automatic embed](https://wordpress.org/support/topic/disable-automatic-embed/)
 *  Thread Starter [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/disable-automatic-embed/#post-6017133)
 * Sorry for the late reply.
    Yes that seems to have done the trick. Thanks for 
   implementing this so quickly 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Booking Calendar] Google calendar integration](https://wordpress.org/support/topic/google-calendar-integration-4/)
 *  Thread Starter [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/google-calendar-integration-4/#post-5794654)
 * Thanks for the reply.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contextual Related Posts] Shortcode to limit to a specific post type](https://wordpress.org/support/topic/shortcode-to-limit-to-a-specific-post-type/)
 *  Thread Starter [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/shortcode-to-limit-to-a-specific-post-type/#post-5474225)
 * Great I’ll give it a try 🙂
 * So, if my custom post type is ‘news’, would I use the following?
 * `do_shortcode('[crp limit="6" heading="1" cache="1" post_types="post=news&page
   =news"]');`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Theme My Login] Heads up about using false on the shortcode](https://wordpress.org/support/topic/heads-up-about-using-false-on-the-shortcode/)
 *  [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/heads-up-about-using-false-on-the-shortcode/#post-4757619)
 * Thanks for this, alvaro. I’ve been scratching my head over this one. Very surprised
   the documentation hasn’t been updated to rectify the mistake.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [HTTP and HTTPS differences for function is_user_logged_in() in WordPress 4.0](https://wordpress.org/support/topic/http-and-https-differences-for-function-is_user_logged_in-in-wordpress-40/)
 *  [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/http-and-https-differences-for-function-is_user_logged_in-in-wordpress-40/#post-5275985)
 * Thanks Samuel
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [HTTP and HTTPS differences for function is_user_logged_in() in WordPress 4.0](https://wordpress.org/support/topic/http-and-https-differences-for-function-is_user_logged_in-in-wordpress-40/)
 *  [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/http-and-https-differences-for-function-is_user_logged_in-in-wordpress-40/#post-5275980)
 * Thanks for the info guys. Very informative.
    I’m a little confused though. If
   I go to Amazon, Next or Play.com, for example, log in and the account page is
   naturally https. But If I move away to the homepage or a product page, the content
   is https. So are we saying that this is a big no-no?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [HTTP and HTTPS differences for function is_user_logged_in() in WordPress 4.0](https://wordpress.org/support/topic/http-and-https-differences-for-function-is_user_logged_in-in-wordpress-40/)
 *  [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/http-and-https-differences-for-function-is_user_logged_in-in-wordpress-40/#post-5275976)
 * I also notice get_currentuserinfo(); is empty when over http, and populated when
   https.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [HTTP and HTTPS differences for function is_user_logged_in() in WordPress 4.0](https://wordpress.org/support/topic/http-and-https-differences-for-function-is_user_logged_in-in-wordpress-40/)
 *  [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/http-and-https-differences-for-function-is_user_logged_in-in-wordpress-40/#post-5275975)
 * I’m having this problem too. Was this quirk introduced in 4.0?
    Did you find 
   a workaround, David?
 * It’s a real pain as it means my header shows the login link even when they’re
   logged in, instead of their name, profile and logout links.

Viewing 15 replies - 16 through 30 (of 100 total)

[←](https://wordpress.org/support/users/iltdevunit/replies/?output_format=md) [1](https://wordpress.org/support/users/iltdevunit/replies/?output_format=md)
2 [3](https://wordpress.org/support/users/iltdevunit/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/iltdevunit/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/iltdevunit/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/iltdevunit/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/iltdevunit/replies/page/3/?output_format=md)