scooterlord
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Hidden post not shown when user is logged inHello again Chad,
unfortunately it is still not working. I cleared the cache, switched browsers, but nothing, hidden posts can be accessed, but are not available in the index.
– I am using worpdress admin user.
– Have enabled creation of different memebership products
– Added a product without a role restriction/expiration
– Entered the post, set status to hidden, limited access to the product (I also tried without it)
– logged in, post accessible if I use slug directly, not available at index.Any other ideas? Thank you again for your time and effort.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Hidden post not shown when user is logged inThank you Chad for your swift reply. I have the files locally at the office but will check tomorrow morning and revert in case this ‘issue’ troubles others as well.
Forum: Plugins
In reply to: [WP Cassify] Gateway Mode and Single Sign OutThanks for this! Good thing I didn’t rush into it (by accident!). Will try to check soon and report back – my priorities have changed :/
Forum: Plugins
In reply to: [WP Cassify] Gateway Mode and Single Sign OutHello there. I implemented the plugin and was looking for single sign out.. imagine my surprise I just saw this. Would you care sharing your code?
NS
Forum: Plugins
In reply to: [Authorizer] Troubleshooting “internal script failure”Hello. I am too getting this error and cannot debug properly – my error log doesn’t show anything. Any more pointers?
- This reply was modified 7 years, 6 months ago by scooterlord.
Hello there! Thanks for your reply.
You can hide the SEO settings from the screen options that open from the top right of the screen.
Forum: Plugins
In reply to: [Scriptless Social Sharing] Change button labelsgreat! thanks for your fast reply!
Forum: Plugins
In reply to: [Scriptless Social Sharing] Shortcode / PHP+1
..I can’t thank you enough! Everything seems to be working great! ?? Thanks
Hello,
no I haven’t updated any plugins other than yours. How can a comment be added successfully if it’s empty?
I just realized what the problem is -but have no idea how to fix this; I am using the following code to add my custom error page – because I am using the easy digital download page that uses the horrible wp_die function. Removing the following code from my functions.php seems to solve my problem:
add_filter('wp_die_handler', 'get_my_error_handler'); function get_my_error_handler() { return 'my_error_handler'; } function my_error_handler($message, $title='', $args=array()) { $errorTemplate = get_theme_root().'/'.get_template().'/commenterror.php'; if(!is_admin() && file_exists($errorTemplate)) { $defaults = array( 'response' => 500 ); $r = wp_parse_args($args, $defaults); $have_gettext = function_exists('__'); if ( function_exists( 'is_wp_error' ) && is_wp_error( $message ) ) { if ( empty( $title ) ) { $error_data = $message->get_error_data(); if ( is_array( $error_data ) && isset( $error_data['title'] ) ) $title = $error_data['title']; } $errors = $message->get_error_messages(); switch ( count( $errors ) ) : case 0 : $message = ''; break; case 1 : $message = "<p>{$errors[0]}</p>"; break; default : $message = "<ul>\n\t\t<li>" . join( "</li>\n\t\t<li>", $errors ) . "</li>\n\t</ul>"; break; endswitch; } elseif ( is_string( $message ) ) { $message = "<p>$message</p>"; } if ( empty($title) ) $title = $have_gettext ? __('<strong>An error has been encountered!</strong>') : 'WordPress › Error'; require_once($errorTemplate); die(); } else { _default_wp_die_handler($message, $title, $args); } }
any idea on how to have them both working properly?
Hello,
same problem again…
https://www.nicksotiriadis.gr/concept-boots/
try clicking on post for an empty post comment.
Ahem, sorted it out myself. Looks like I was loading by accident two versions of jquery and things got messed up! All ok now!
Forum: Plugins
In reply to: [Plugin: WP-Members] deactivating /reactivating password reset…looks like re-activating the user from bulk action rather than from the inside of the user works as it should!
Hm… looks like I saved my own problem, although I can only hope it works correctly. I changed
jQuery(window).load.(function()
with
jQuery(window).ready(function()
at this point it seems to be loading but flashed a couple of times before it stars working properly. If anyone else though has a better solution/fix (meaning something that technically is supposed to be better) please do post.