webbysmart
Forum Replies Created
-
Forum: Plugins
In reply to: [EWWW Image Optimizer] .webp and social sharing to Pinterest.Is there a way I can contact you privately? – Thanks
Forum: Plugins
In reply to: [EWWW Image Optimizer] .webp and social sharing to Pinterest.All browsers. Pinterest is unable to pin the webp image. Just shows X (Broken image).
We are using
JPG/PNG to Webp (checked)
JS WebP Rewriting (checked)
Force WebP (Checked).Thanks.
Forum: Themes and Templates
In reply to: How to Disable Registration Links after number of sign ups.Found a solution. Full code for function file.
<?php function count_users_wp() { global $wpdb; $users_count = $wpdb->get_var("SELECT COUNT(ID) FROM {$wpdb->users}"); return $users_count; } function limit_users_register() { $count = apply_filters('limit_user_count',4); $users = count_users_wp(); if ($users >= $count) { update_option('users_can_register',0); }else{ update_option('users_can_register',1); } } add_action('user_register','limit_users_register'); function limit_user_register($option) { remove_filter('pre_option_users_can_register','limit_user_register'); $reg = get_option('users_can_register'); if (0 === $reg) { return 0; //break } $count = apply_filters('limit_user_count',4); $users = count_users_wp(); if ($users >= $count) { update_option('users_can_register',0); return 0; } else { update_option('users_can_register',1); return $option; } } add_filter('pre_option_users_can_register','limit_user_register'); function my_styles_method() { $count = apply_filters('limit_user_count',4); $users = count_users_wp(); if ($users >= $count) { wp_enqueue_style( 'custom-style', get_template_directory_uri() . '/css/custom_script.css' ); $color = get_theme_mod( none ); $custom_css = " .user-new-php .wrap { display: none; }"; wp_add_inline_style( 'custom-style', $custom_css ); }else{ } } add_action( 'admin_enqueue_scripts', 'my_styles_method' ); ?>
Hopefully this helps someone. Thanks.
Is there a way around this? It just does not seem normal when you are downgrading from a higher package that has not expired yet. Example://
Package A – 15 a month
Package B – 30 a monthUser registers for Package B. 14 Days in, they decide to downgrade for next month to package A. It should not click in right away but wait until the end of the Package B before going to Package A (on recurring). So the user gets the benefits of package B and what they paid for.
I don’t know why this is left out. The way the Billing modification works right now makes no sense when it comes to downgrading.
The standard Paypal buttons works as expected but because of the 20 percent limitation on upgrades/downgrades, we are left with Paypal pro forms.
Forum: Plugins
In reply to: [WP Accessibility] Red Outline missing ALT TagsJoe a suggestion.
Since you triggered the notice for missing ALT tags, why not do it this way if possible.
When the missing ALT tag triggers, add another image below that image that says missing alt tag. The writer can delete that image and correct the image ALT on the spot. Once they submit or save draft, it checks again, and if still no alt tag, it repeats the same process with adding the image alt notice again!
This way it adds less strain of removing the DIV coding around the image and having the user re-add the whole image. I hope I made sense and I hope this can be done.
Forum: Plugins
In reply to: [WP Accessibility] Red Outline missing ALT TagsWould be great if wordpress would implement a requirement, so that after a user uploads images, they must enter the ALT tag before the image can get added to the media folder.
Forum: Plugins
In reply to: [Facebook Comments Importer] What is the Submitted Limit. How to bypassThanks for all your work. This plugin is the best!
Forum: Plugins
In reply to: [Facebook Comments Importer] What is the Submitted Limit. How to bypassLet me try to make more sense. When i put in a high number to show, say 300 the results come up blank. Any reason why this would be doing this?
I am trying to go back in history. Is there not a way for it to show only one type (link). I don’t need it to show photo / video.
The drag and drop problem is due to a conflict with another plugin. I wonder why the loading / saving never ends though. I refresh the screen and its there just fine. Just kinda annoying.
I am starting to have a lot of problems with this too. I miss the old version where it was outside of the widget area. I had the same never ending loading… then I cannot drag and drop anymore with this plugin. Weird.
Forum: Plugins
In reply to: [WP Accessibility] Toolbar SizeSorry if I’m blind but what is the short code parameters for this plugin?
Odedta try this code in your template css file. I made the icons bigger. It would be a good starting point.
.a11y-toolbar ul li {height: 34px;width: 34px;}
.a11y-toolbar ul li a {height: 34px;width: 34px;}
.a11y-toolbar .icon {height: 20px;width: 20px;background-size: 44px 110px;}
.a11y-toolbar .icon-tint {margin-top: 5px;background-position: 0 -22px;}
.a11y-toolbar .icon-font {margin-top: 5px;background-position: 0 -44px;}Forum: Plugins
In reply to: [Team Manager - WordPress Showcase Team Members] Social Icons not showing upThanks that did the trick. I had to hit save changes again in settings and it appeared.
Forum: Plugins
In reply to: [Team Manager - WordPress Showcase Team Members] Email AddressesI added an email address and this doesn’t seem to be working?
Forum: Plugins
In reply to: [Shortcodes by Angie Makes] CSS overidesI am going to close this.
What i did was add
.wc-shortcodes-box-primary * {color: #000000;}
my to theme stylesheet and that seems to fix a lot of my issues. – thanks
Forum: Plugins
In reply to: [Shortcodes by Angie Makes] CSS overidesI see the option -(Use shortcode CSS provided by plugin) which is checked. This would solve my problem. I guess this was my mistake that i was depending on your style sheet, and trying to override color choices.