breynolds
Forum Replies Created
-
Thanks for checking. You helped me to check an item off the list.
Understood and I my users show logged in except on this one page with the particular section. The pages acts as expected when Wordfence is disabled. I am using Shortcodes Ultimate and the shortcode for users only. I also tried some other code in the functions file and got the same result. The code base is:
add_shortcode( 'user', 'user_check_shortcode' ); function user_check_shortcode( $atts, $content = null ) { if ( is_user_logged_in() && !is_null( $content ) && !is_feed() ) return $content; return ''; }
[user] This is members-only content. [/user]
- This reply was modified 7 years, 7 months ago by breynolds.
Forum: Plugins
In reply to: [WP Document Revisions] Files not found!I’ve noticed this as well. Files will be visible and working then for apparently no reason I get a “Page not Found” error.
Forum: Plugins
In reply to: [CalPress Calendar] Calpress calendar doesn't loadI’m experiencing the same thing.
Forum: Plugins
In reply to: [WP Document Revisions] Documents not appearing in wp-adminI’m having this issue as well and links to existing documents come up broken.
I started using this plugin on a project about a month ago and ran into this same issue. I had to put that one down for a bit and hoped this would be resolved. Well, there has been no response or update so I dug in and fixed it myself. If you are still having the issue try the following:
On line 72 of the “full-screen-background-image-slideshow.php” file change “is_singular” to “is_page”. The current code is evaluating for a post instead of a page.
Also, another annoying thing is the “checked()” function in the metabox is currently set to echo back the string which displayed above the check boxes. If you want to remove this as I did then change the following in the “inc/post-metabox.php” file. The changed will be in lines 21 & 22.
Line 21 – change the last argument from true to false like so:
checked(get_post_meta($post->ID,'fsi_fs_images',true),'1',true)
->checked(get_post_meta($post->ID,'fsi_fs_images',true),'1',false)
Line 22 – change the last argument from true to false like so:
checked(get_post_meta($post->ID,'ffsi_fs_images_slideshow',true),'1',true)
->checked(get_post_meta($post->ID,'fsi_fs_images_slideshow',true),'1',false)
Aside from these oversights it is a good plugin and I hope the author will keep up with it. Hope this helps.