bluemuse
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Astra] Custom post template?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
In reply to: [File Away] sort orderI’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
In reply to: [Genesis Columns Advanced] Beaver Builder SupportHi Nick,
Did you ever get a chance to look into this?
Forum: Plugins
In reply to: [Genesis Columns Advanced] Beaver Builder SupportSounds good, let me know if you need any help with testing.
Forum: Plugins
In reply to: [Custom Permalinks] RSS feeds for Categories not workingHi,
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
In reply to: [Force Login] Whitelist a single password protected pageSure thing Kevin.
Forum: Plugins
In reply to: [Force Login] Whitelist a single password protected pageHi 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
In reply to: [Force Login] Whitelist a single password protected pageHi,
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
In reply to: [Yoast SEO] Sitemap doesn't properly declare the namespaceHi, 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
In reply to: [CMB2] List items on front end from wysiwygThanks Michael, I figured it now, I had wrapped the output in the esc_html.
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Image Below TextYour code wound up being what I used as it solved some other layout issues that cropped up.
Thanks again for your help!!
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Image Below TextHi 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?
I’m currently having the issue where it only works with hashtags with latest version and latest version of wordpress
Forum: Plugins
In reply to: [CMB2] Repeatable Fields ExamplesWould it be possible to show an actual working example of this in action?
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.