amax2222
Forum Replies Created
-
Forum: Plugins
In reply to: [MP6] icons not showingI had the same issue, what I did to get it working was download the dashicons (download icons from github) icon set and then enqueue it in my functions file so that these icons load on the frontend and then problem solved. Bit of a hack but it works.
If you are creating checkboxes with this plugin make sure that you create at least one option in the textarea provided otherwise they will not be saved.
Hi, I tried this new release with no noticeable improvement, my blog has over 3000 users and calling the get_users() can take the site up to 13-15s to load, with the plugin disabled only 2-3 seconds
Yes, I would like to second this issue, I have noticed an extra 8s load on my site because of this plugin and caching plugins have little impact, disable the plugin and it comes back to life.
I think the plugin falls over if there is a lot of users on your blog! If you edit the wpuf-functions file and look for the wpuf_list_users() function, use the wp3.1 fallback and disable the default and then we have liftoff.
function wpuf_list_users() { if ( function_exists( 'get_users' ) ) { /* $users = get_users(); } else { ////wp 3.1 fallback*/ $users = get_users_of_blog(); } $list = array(); if ( $users ) { foreach ($users as $user) { $list[$user->ID] = $user->display_name; } } return $list; }
Ok, if a page has the shortcode [wpuf_edit] then it displays the usual front end editing options on that page. But on initial load I don’t want the user to be able to edit the page but I want to have a button so that when they click the button only then do the front end editing options appear.
Yes its true I need to give the user the option to customize the slug, if its not hard to do, any chance you have a code snippet or can point me in the right direction. Thanks
In theory you should be able to do the following:
echo do_shortcode('[ai1ec view="agenda"]');
Hi Aravoth, I ended up going with the add local avatar plugin and then purchasing the avatar sidebar widget from the same author and embedding it in the bbpress profile page and it works a treat.
Jason you are a genius!
I also recommend the avatar sidebar widget from the same author which allows you to upload avatars on any page including bbpress.
just wondering if you got anywhere this? I can also get the upload gravatar form but it does not update?
Yes me too, I need to add the ability for a user to add an avatar to his profile page with bbpress.
Thank you
Hey Dan, it may have something to do with your query. I had a similar issue and replaced the usual query with the $wp_query (https://codex.www.ads-software.com/Class_Reference/WP_Query) and it started working as it should. Just make sure you create a new instance. I went for something like this.
$args=array( 'cat' => 4, 'posts_per_page' => 12, 'paged'=>$paged ); $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(); $wp_query->query($args);
and
while ($wp_query->have_posts()) : $wp_query->the_post();
hope it works for you