Title: bluemuse's Replies | WordPress.org

---

# bluemuse

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 22 total)

1 [2](https://wordpress.org/support/users/bluemuse/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/bluemuse/replies/page/2/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Astra] Custom post template?](https://wordpress.org/support/topic/custom-post-template-15/)
 *  [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/custom-post-template-15/#post-12351006)
 * hi,
 * did you ever write this blog post? I’m am having trouble creating custom post
   templates and would like to read what you have documented.
 * thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[File Away] sort order](https://wordpress.org/support/topic/sort-order-47/)
 *  Thread Starter [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/sort-order-47/#post-11585002)
 * I’ve put them in like that but am able to get the initial sort to order by number
   in descending order. I’m using a custom custom folder in “custom data”.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Columns Advanced] Beaver Builder Support](https://wordpress.org/support/topic/beaver-builder-support-2/)
 *  Thread Starter [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/beaver-builder-support-2/#post-9533110)
 * Hi Nick,
 * Did you ever get a chance to look into this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Columns Advanced] Beaver Builder Support](https://wordpress.org/support/topic/beaver-builder-support-2/)
 *  Thread Starter [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [8 years, 12 months ago](https://wordpress.org/support/topic/beaver-builder-support-2/#post-9438688)
 * Sounds good, let me know if you need any help with testing.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Permalinks] RSS feeds for Categories not working](https://wordpress.org/support/topic/rss-feeds-for-categories-not-working/)
 *  Thread Starter [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/rss-feeds-for-categories-not-working/#post-9165734)
 * Hi,
 * So a little more detail, my blog feed for the main url works fine, category feeds
   are going to the comments feed template. So i’m trying to remedy the issue of
   the category feed going to the comments feed.
 * thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Force Login] Whitelist a single password protected page](https://wordpress.org/support/topic/whitelist-a-single-password-protected-page/)
 *  Thread Starter [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/whitelist-a-single-password-protected-page/#post-7387725)
 * Sure thing Kevin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Force Login] Whitelist a single password protected page](https://wordpress.org/support/topic/whitelist-a-single-password-protected-page/)
 *  Thread Starter [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/whitelist-a-single-password-protected-page/#post-7387721)
 * Hi Kevin,
 * I found the resolution on the user meta pro forum, if anyone else has this problem
   this is the fix:
 * In /wp-content/plugins/user-meta/controllers/pro/umPreloadsProController.php 
   on line 153 I changed this:
 *     ```
       if( !empty( $login[ 'login_page' ] ) && !empty( $login[ 'disable_wp_login_php' ] )){
       wp_redirect( get_permalink( $login[ 'login_page' ] ) );
       exit();
       }
       ```
   
 * To this:
 *     ```
       if( !empty( $login[ 'login_page' ] ) && !empty( $login[ 'disable_wp_login_php' ] ) && $_GET['action'] != 'postpass'){
       wp_redirect( get_permalink( $login[ 'login_page' ] ) );
       exit();
       }
       ```
   
 * And this fixed it. Hopefully someone else benefits from this as well.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Force Login] Whitelist a single password protected page](https://wordpress.org/support/topic/whitelist-a-single-password-protected-page/)
 *  Thread Starter [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/whitelist-a-single-password-protected-page/#post-7387696)
 * Hi,
 * Below is code I used:
 *     ```
       /**
        * Filter Force Login to allow exceptions for specific URLs.
        *
        * @return array An array of URLs. Must be absolute.
        **/
       function my_forcelogin_whitelist( $whitelist ) {
         $whitelist[] = site_url( '/login/' );
         $whitelist[] = site_url( '/register/' );
         return $whitelist;
       }
       add_filter('v_forcelogin_whitelist', 'my_forcelogin_whitelist', 10, 1);
       ```
   
 * With force login turned off, the url of the page is the same before and after,
   when force login is on it is getting re-directed to the ‘/wp-login.php?action
   =postpass’ URL
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Sitemap doesn't properly declare the namespace](https://wordpress.org/support/topic/sitemap-doesnt-properly-declare-the-namespace/)
 *  [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/sitemap-doesnt-properly-declare-the-namespace/#post-6763244)
 * Hi, i’m getting this same message is Google Search console. I’m also getting 
   an error in firefox “Error loading stylesheet: Parsing an XSLT stylesheet failed.”
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CMB2] List items on front end from wysiwyg](https://wordpress.org/support/topic/list-items-on-front-end-from-wysiwyg/)
 *  Thread Starter [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/list-items-on-front-end-from-wysiwyg/#post-6548683)
 * Thanks Michael, I figured it now, I had wrapped the output in the esc_html.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Featured Images in RSS for Mailchimp & More] Image Below Text](https://wordpress.org/support/topic/image-below-text/)
 *  Thread Starter [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/image-below-text/#post-6191106)
 * Your code wound up being what I used as it solved some other layout issues that
   cropped up.
 * Thanks again for your help!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Featured Images in RSS for Mailchimp & More] Image Below Text](https://wordpress.org/support/topic/image-below-text/)
 *  Thread Starter [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/image-below-text/#post-6191062)
 * Hi rob, thanks for the quick answer, It seemed to work if I put the image above
   the text and inserted the image into the post instead of using the featured image,
   is there a dis-advantage to using the image inside the post as opposed to a featured
   image?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Enjoy Social Feed plugin for WordPress website] Not working at all – account not saving?](https://wordpress.org/support/topic/not-working-at-all-account-not-saving/)
 *  [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/not-working-at-all-account-not-saving/#post-5133444)
 * I’m currently having the issue where it only works with hashtags with latest 
   version and latest version of wordpress
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CMB2] Repeatable Fields Examples](https://wordpress.org/support/topic/repeatable-fields-examples/)
 *  Thread Starter [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/repeatable-fields-examples/#post-5423875)
 * Would it be possible to show an actual working example of this in action?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BuddyPress Group Email Subscription] removing content of messages in notifications](https://wordpress.org/support/topic/removing-content-of-messages-in-notifications/)
 *  [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [11 years, 12 months ago](https://wordpress.org/support/topic/removing-content-of-messages-in-notifications/#post-4678349)
 * I edited the text “To view or reply, login and go to:” by doing a search and 
   replace in the bp-activity-subscription-functions.php file.

Viewing 15 replies - 1 through 15 (of 22 total)

1 [2](https://wordpress.org/support/users/bluemuse/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/bluemuse/replies/page/2/?output_format=md)