WebBee
Forum Replies Created
-
Update, after clearing cache, disabling all plugins and switching to default theme, the events now show, but none of the fields save when you save an event, only the description. The date has also changed from yesterday, so it is now showing today’s date, when it was created yesterday. So it is defaulting to the current date and you can’t change that, or add a venue.
Thanks, I had done both of those, but it turned out that I needed to give them permission to be able to edit their own profile as well or the other users didn’t show up? Got it working now anyway.
This is an issue for me too. Is there a fix yet?
Perfect, I was just looking at that infact! thanks for the speedy response.
Hi @pris15, not yet
Forum: Plugins
In reply to: [Easy Testimonials] Excerpt length change not workingHi @richardgabriel, thanks for getting back to me. That is interesting. I build my sites using a basic skeleton theme as a base that I built my self, based on wp Underscores. So they all have a similar base. I tend to use a few set plugins on a lot of sites too. I will test with a clean install and see what happens and try to track back from there.
Forum: Plugins
In reply to: [Easy Testimonials] Change exceprt length not working@richardgabriel I have had this issue again on another site. I have tried flushing (and turning off the cache for the plugin – there is no other cache on the site at the moment) but the excerpt doesn’t change whatever I try. 55 characters is just a bit too short so I would really like to resolve this if possible. Thanks
- This reply was modified 8 years, 4 months ago by WebBee.
Forum: Plugins
In reply to: [Easy Testimonials] Change exceprt length not workingForum: Plugins
In reply to: [Easy Testimonials] Change exceprt length not workingYes that’s right. The option to change the read more wording works, I haven’t tried the other option.
Forum: Plugins
In reply to: [Easy Testimonials] Change exceprt length not workingHi Richard, thanks for getting back to me. I have tried clearing the browser cache and there is no cache on the site as yet as it is still in development, so I don’t think it is that.
I haven’t put a manual excerpt on, I didn’t know you could do that. I have just added the testimonials, created a grid of them with the shortcode generator, then tried to adjust the excerpt with no luck. They display fine and everything else is working, but changing the length in the settings has no effect.
Tried deactivating and reactivating the plugin a couple of times and now its working! Not sure what happened there..
Forum: Plugins
In reply to: [Zero Spam for WordPress] Plugin Activation ErrorI have the same issue on a new up to date install.
The plugin generated 266 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.
- This reply was modified 9 years, 2 months ago by WebBee.
Hi thanks for you help guys. Yes I am trying to get it so after someone has registered a new profile using the front end form for UM, if they then update or change that profile in the future, it puts the account to pending and sends both the user and the admin an email to tell them that.
I don’t want this to apply to the standard registration on the site, just UM profiles.
I found the issue in the end, I had some rules in htaccess on the live site that were preventing access to the folder the plugin needed. That was why it worked on the local one and not the live one. I have adjusted that now and it is working. Thanks for you help.
I am also using this bit of custom code from a forum as my client wants to be notificed when someone updates their profile, not when they add one.
// Set profile to under review after edits
add_action(‘um_user_edit_profile’, ‘um_post_edit_pending_hook’);
function um_post_edit_pending_hook( $args ){
$user_id = $args[‘user_id’];
if ( is_super_admin() ) {
return;
}
update_user_meta( $user_id, ‘account_status’, ‘awaiting_admin_review’);}
It wasn’t working before I added this either.