Chris Perryman
Forum Replies Created
-
I have version 140515. I don’t need the buttons to work, but inline HTML is not working either.
Forum: Plugins
In reply to: [WP-UserOnline] Foreach with get_users_browsing_site?Ah, duh ?? Thanks!
For anyone else wanting to extract this info, here is the beginnings of what I’m setting up in order to grab the user avatar and customize the list.
if (function_exists('get_users_browsing_site')): $users = UserOnline_Template::compact_list( 'site' , 'list' ); foreach ($users as $user) { echo get_wp_user_avatar( $user->user_id, 'thumbnail' ); echo '<a href="'. get_author_posts_url( $user->user_id ) .'">'; echo $user->user_name; echo '</a>'; } endif;
Forum: Plugins
In reply to: [WP-UserOnline] Foreach with get_users_browsing_site?Hmmmm…this is what I have:
$users = UserOnline_Template::compact_list( 'site' , 'list' ); foreach($users as $user) { echo $user; }
It returns this error: Catchable fatal error: Object of class stdClass could not be converted to string.
I am also having this issue…anyone?
Forum: Plugins
In reply to: [FoxyShop] Sold Out Product DisplayAhhh…got it. I will work on that, thanks for the reply! If I remember, I will try to post back with a solution for other users who are looking to do this ??
Forum: Fixing WordPress
In reply to: Using remove_menu_page causes error throughout other admin sectionsThanks for posting this! I thought I was going to have to troubleshoot forever, but I changed my code to the following and it works!
What was Causing the error:
I was changing post status to “draft” via quick edit.This is the error I had:
Warning: Invalid argument supplied for foreach() in (blah blah) …plugin.php on line 1261Here is the code I changed like @timfarley posted above:
add_action( 'admin_menu', 'nz_remove_menu_pages' ); function nz_remove_menu_pages() { // If the user does not have access to publish posts if(!current_user_can('activate_plugins')) { // Remove the "Tools" menu remove_menu_page('tools.php'); } }
First line had previously been:
add_action( ‘admin_init’, ‘nz_remove_menu_pages’ );This issue was corrected with the most recent version of the plugin. I updated mine and it’s been fine since.
Forum: Plugins
In reply to: [FoxyShop] [Plugin: FoxyShop] Product Variations: Required InputWow, I completely overlooked that check box. Sorry!
Is there a way to customize the error that pops up?
“Error: You must select an option from the dropdown.”
Can I have it say “Select a Size” or “Select a Color”?
Forum: Plugins
In reply to: [FoxyShop] [Plugin: FoxyShop] Full Control for Non-Administrative UsersJust what I needed. Works like a charm…thanks again.
Forum: Plugins
In reply to: [FoxyShop] [Plugin: FoxyShop] Inventory Alert EmailsSorry I’ve been developing some other parts of the cart….thanks for this!!! It works perfectly.
Forum: Plugins
In reply to: [FoxyShop] [Plugin: FoxyShop] Item CodesThis is great! Thanks again for your quick replies. Sorry I didn’t fins that video…I’ll look harder for documentation. Great stuff!
Forum: Plugins
In reply to: [FoxyShop] [Plugin: FoxyShop] Using All in one seo pack with Foxyshop@nickff, did you fix this with the update? I see on your site that your titles are working.
I’m having issues with mine and have followed all of the steps. Working everywhere except on the product pages.
Thanks!
You are the BEST! Thanks for correcting this so quickly. I updated the plugin and the issue is resolved.
Do you know if this update fixed the double WYSIWYG content editor issue as well? I “hid” all of the standard content editors as a work around to the bug…just wondering if it’s been fixed.
Thanks again!
I have this same issue. I know the developer was on vacation…not sure if he’s back yet. But I have a client using the site and not being able to save drafts is quite a big issue ??
I don’t have the toolbar issue…I do have duplicates of the default WYSIWYG elements. The workaround has been “hiding” the default and adding a WYSIWYG from ACF. Fine for now…
However, just realized today when I was walking my client through using the system that “save draft” deletes all of the ACF WYSIWYG content upon page refresh. Ahhhrrggg!
“Publishing” and “Updating” don’t seem to have issues. Just drafts.
Please help!