Title: aapollo's Replies | WordPress.org

---

# aapollo

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Shortcodes Plugin — Shortcodes Ultimate] All YouTube Embeds Broken / No Longer Showing](https://wordpress.org/support/topic/all-youtube-embeds-broken-no-longer-showing/)
 *  Thread Starter [aapollo](https://wordpress.org/support/users/aapollo/)
 * (@aapollo)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/all-youtube-embeds-broken-no-longer-showing/#post-8932769)
 * Here is one example:
    `[s_youtube url="https://www.youtube.com/watch?v=qk8uJcaRtgg"
   width="440"]`
 * Note that no closing tag has ever been necessary, and adding the closing tag 
   does not change the result. The video still will not show.
 * The same format Vimeo videos using my custom prefix work normally:
    `[s_vimeo
   url="https://vimeo.com/123530974" width="960"] [/s_vimeo]`
 * I also noticed that I’m getting a console error on SSL, meaning that it is possible
   that the videos are not displaying because the Shortcode is changing the URL 
   to http:
 * `Mixed Content: The page at 'https://mywebsite.com/page/' was loaded over HTTPS,
   but requested an insecure resource 'http://www.youtube.com/embed/qk8uJcaRtgg'.
   This request has been blocked; the content must be served over HTTPS.`
 * How can I make sure the https is maintained in the shortcode’s display? Also,
   it seems that the vimeo urls are maintaining https…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Shortcodes Plugin — Shortcodes Ultimate] All YouTube Embeds Broken / No Longer Showing](https://wordpress.org/support/topic/all-youtube-embeds-broken-no-longer-showing/)
 *  Thread Starter [aapollo](https://wordpress.org/support/users/aapollo/)
 * (@aapollo)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/all-youtube-embeds-broken-no-longer-showing/#post-8932783)
 * Okay, I solved this issue by changing http to https in line 632 in inc/core/shortcodes.
   php:
 *     ```
       		$return[] = '<iframe width="' . $atts['width'] . '" height="' . $atts['height'] . '" src="https://www.youtube.com/embed/' . $id . $autoplay . '" frameborder="0" allowfullscreen="true"></iframe>';
       ```
   
 * I also replaced all other embeds with https. Please update this in the next version.
 * Big thanks to [@infinet](https://wordpress.org/support/users/infinet/) on [https://wordpress.org/support/topic/ssl-breaks-google-map/](https://wordpress.org/support/topic/ssl-breaks-google-map/)
   for the hint to the solution.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Groups] Incompability with WooCommerce Subscriptions: Problem with user_has_cap](https://wordpress.org/support/topic/incompability-with-woocommerce-subscriptions-problem-with-user_has_cap/)
 *  [aapollo](https://wordpress.org/support/users/aapollo/)
 * (@aapollo)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/incompability-with-woocommerce-subscriptions-problem-with-user_has_cap/#post-8653435)
 * Yes, Woo now recommends this fix… But I just discovered it creates another problem.
 * Upon setting up a new site, I installed Subscriptions and Woocommerce first, 
   then installed Groups. I turned off the “Administrator Access Override” to avoid
   issues with users cancelling subscriptions. I then set Permissions in the Groups
   > Options for administrators to be able to edit:
 * Access Group
    Administer Groups Administer Groups plugin options
 * …as well as some other site roles. However, upon going to any page or post with
   an account other than the site super-admin, the Groups metabox tells me that 
   I “cannot administer groups.” I cannot “quick-add” new Groups, or apply them 
   to pages/posts etc.
 * When I turn on the “Administrator Access Override,” the capability for another
   administrator account to edit the settings in this metabox returns.
 * I definitely need a fix for this, because we can’t run a Membership site with
   Subscriptions and also have multiple administrators of Groups…
 * Any recommendations from those of you digging into this issue deeper, or plugin
   authors, is very welcome.
 * Highest Regards,
    Adam Apollo
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Conversion Tracking for WooCommerce] Product specific code only loads on product page itself, not checkout (with FIX)](https://wordpress.org/support/topic/product-specific-code-only-loads-on-product-page-itself-not-checkout-with-fix/)
 *  Thread Starter [aapollo](https://wordpress.org/support/users/aapollo/)
 * (@aapollo)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/product-specific-code-only-loads-on-product-page-itself-not-checkout-with-fix/#post-5681032)
 * [@thi_](https://wordpress.org/support/users/thi_/) – If you have a recent version
   of woocommerce installed, and you are adding `-tp` to the slug of a product, 
   this code will work. Of course, you need to be using appropriate tracking pixel
   code as well. We used the default code supplied by Facebook for our site.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BadgeOS] Multiple Shortcodes on a page](https://wordpress.org/support/topic/multiple-shortcodes-on-a-page-2/)
 *  [aapollo](https://wordpress.org/support/users/aapollo/)
 * (@aapollo)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/multiple-shortcodes-on-a-page-2/#post-5222946)
 * The `badgeos_achievements_list` loads where the first shortcode is placed. The
   other shortcode shows nothing, and the list only shows once in that first location.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BadgeOS] Multiple Shortcodes on a page](https://wordpress.org/support/topic/multiple-shortcodes-on-a-page-2/)
 *  [aapollo](https://wordpress.org/support/users/aapollo/)
 * (@aapollo)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/multiple-shortcodes-on-a-page-2/#post-5222944)
 * I would also like help with this issue.
 * I’m simply implementing a page where I can control the style and location of 
   badges in our curriculum. My page looks basically like this:
 *     ```
       You are here:
       [badgeos_achievement id="50"]
       ||
       [badgeos_achievement id="51"] || [badgeos_achievement id="52"]
       ||
       [badgeos_achievements_list type="skill-seal" limit="6" show_filter="false" show_search="false" orderby="menu_order" order="ASC" wpms="false"]
       ```
   
 * I’m okay with killing AJAX loads on this page if you tell us how to do that, 
   but this really should be possible out of the box in my opinion. Of course, that’s
   what my client’s often say to me. 😉
 * Thanks for your help Michael.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BadgeOS] Changing Achievement Type name wipes out badges](https://wordpress.org/support/topic/changing-achievement-type-name-wipes-out-badges/)
 *  [aapollo](https://wordpress.org/support/users/aapollo/)
 * (@aapollo)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/changing-achievement-type-name-wipes-out-badges/#post-4804588)
 * This is still not working in 1.4.3.
 * I’ve tested and had all my badges wiped out on each test.
 * ~AA~
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Shortcodes Plugin — Shortcodes Ultimate] Plugin making 700 SQL Calls?](https://wordpress.org/support/topic/plugin-making-700-sql-calls/)
 *  [aapollo](https://wordpress.org/support/users/aapollo/)
 * (@aapollo)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/plugin-making-700-sql-calls/#post-4645848)
 * Hey Vladimir,
 * I’m still having a huge query problem on my site. My recent query report shows
   SU making 1440 query calls; again, this is about the number of users we have.
 * I’m hoping the user query can still be removed as easily as expressed above.
 * Highest Regards,
    Adam Apollo
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Captions in Lightbox](https://wordpress.org/support/topic/captions-in-lightbox/)
 *  [aapollo](https://wordpress.org/support/users/aapollo/)
 * (@aapollo)
 * [12 years ago](https://wordpress.org/support/topic/captions-in-lightbox/#post-4425098)
 * [@photocrati](https://wordpress.org/support/users/photocrati/) – Any word on 
   showing the information bar by default? I’ve been waiting for this feature for
   a long time now, and put in a request for it directly through the NextGEN Pro
   support many months ago.
 * It’s essential to my clients, and without it we are considering going with a 
   different gallery system. I hope your release is timely! Thank you for making
   an otherwise awesome plugin.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [CSS not working in Safari](https://wordpress.org/support/topic/css-not-working-in-safari/)
 *  [aapollo](https://wordpress.org/support/users/aapollo/)
 * (@aapollo)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/css-not-working-in-safari/#post-1273202)
 * I’m having this same issue.

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