wptobbe
Forum Replies Created
-
Forum: Plugins
In reply to: [Mail Subscribe List] After Updating All My Pages Are BlankI tried removing the plugin and then reinstalling it, and still I get the following error (with WP_DEBUG set to true in wp-config.php):
Notice: Undefined index: sml_subscribe in …/wp-content/plugins/mail-subscribe-list/sml.php on line 267
Forum: Plugins
In reply to: [amr users] Just Search and No listIs there any way to customize/add text into the search box? I couldn’t find any parameters for the shortcode and I don’t want to edit the plugin-files.
Forum: Plugins
In reply to: [Simple User Listing] Can't list users on archive-pagesYou’re right that I don’t need them both, but I thought I’d tell you as the developer. I don’t know if the info changes anything for you, but better that you know than that you don’t.
Forum: Plugins
In reply to: [amr users] [Pre-buy check] amr users plus groupingI’m not PHP-savvy enough to know how to filter in the fields I want, but I’ll look it up and check back for pointers if I get stuck.
Thank you for this great plugin.Forum: Plugins
In reply to: [User Taxonomies] Terms not assigned to a user are displayed as tickedYes I got it working, changed the reference to
$term->term_idand all seems to work perfectly now.
Thank you for helping out!Forum: Plugins
In reply to: [Simple User Listing] Can't list users on archive-pagesThis plugin and amr-users conflicts when both are activated. I’ve notified the developer and thought that you should know as well.
Forum: Plugins
In reply to: [amr users] Just Search and No listWhen I insert a shortcode for a list I only get the standard output.
I can’t choose which list to get except if I use the widget, and then the search-box won’t render. I’ve tried other themes, rebuilding the cache, reinstalling the plugin but no different results.
Could it be that there’s something in the cache that’s bothering the lists?Edit
The problem was with a plugin called Simple User Listing. I’ve notified the developer.Forum: Plugins
In reply to: [amr users] Just Search and No listThis works beautifully for me, but I can’t display it on archive-pages for some reason. I’ve tried adding it as a widget together with plugins such as “shortcodes in widgets” to display the search box and it works on all pages except archive pages such as taxonomy-pages.
Any idea why this might be?
Forum: Plugins
In reply to: [Simple User Listing] Can't list users on archive-pagesOk, thank you for answering.
Forum: Plugins
In reply to: [List Custom Taxonomy Widget] Link to a custom taxonomyI have a custom taxonomy applied to users which lets me divide users between different groups(terms). On
taxonomy-{term}.phptemplate I list all the users who belong to that term.
Above the listing I want to have a dropdown with all the other terms, so when a visitor selects a term from that list and presses “go”, then they should be taken totaxonomy-{term-a}.phpand it the lists all the users in that group.However, when I use this plugin now i get this url http://www.domain.com/?taxonomy=http%3A%2F%2Fdomain.com%2Fauthor%2Ftaxonomy%2Fterm%2F
Edit
The error only occurs when the terms are listed in a dropdown, not when they are a simple list. Will post my solution if i find one.Forum: Plugins
In reply to: [User Taxonomies] Terms not assigned to a user are displayed as tickedI’m having the same problem as you did, but your solution throws me this error:
Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'my_show_extra_profile_fields' was given in /storage/content/25/146625/mace.jdesign-digital.se/public_html/wp-includes/plugin.php on line 406The error no longer shows when if I remove the function
my_show_extra_profile_fieldsform my functions.php, but the taxonomy terms are still being checked when they shouldn’t be.
I should say that I have modified the tag to be output as checkboxes and not radio-buttons, so my tag looks like this:<input type="checkbox" name="<?php echo $key?>[]" id="<?php echo "{$key}-{$term->slug}"?>" value="<?php echo $term->slug?>" <?php checked(true, is_object_in_term($user->ID, $key, $term))?> />I changed the absolute last variable to $term->ID.
My issue now is that if I check one term, they all get checked upon save. If I uncheck all of them and save, they stay unchecked. As long as one of them have been clicked then all of them become checked.This should really be addressed by the developers since people have been wanting this simple feature for years.
I can’t imagine this being a hard task to take on since they’ve built the rest so well.Please Photocrati, help us!
I would like to know how to do this. I love this plugin in all its glory but i really miss this feature, in several projects actually.
Forum: Plugins
In reply to: Slideshow with titles instead of dots/numbers for each slideBump. The concern I have is just mainly to change the slides li from numbers or dots to the image title.
Just set
display:nonefor any element you want to hide on that page. So if you want to hide the entry-title on a specific page you just write#post-XXX .entry-title {display:none;}in your CSS.