noelgreen
Forum Replies Created
-
To get the backups to work — and this also removed the error — I simply created the directory that it was trying to create using FTP. Then it was fine.
Any solutions on this?
Forum: Plugins
In reply to: [Postie] [Plugin: Postie] Lightbox not working for Gallery imagesChange line 1823 in the “postie-functions.php” file from…
$value = '[gallery]';to….
$value = '[gallery link="file"]';That works for me.
Forum: Fixing WordPress
In reply to: Categories Not Found since 3.4.1 updateAny luck fixing this? I’m having the same problem as of this morning.
Forum: Themes and Templates
In reply to: Category Pagination broke with WordPress 3.4I just had this same problem begin happening today. At first I thought it was caused by a plugin, but then it happened after I removed that. I can’t tell what’s triggering it.
Any ideas?
Forum: Fixing WordPress
In reply to: Searching Custom TaxonomiesUpdate on this is for if you want to do it with just categories… you could do something like this.
[32 lines of code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]
No, they’ve never received texts. I’m going to be investigating more, and will post if I find a solution.
YES!
Thanks Gary.I used WP-MailFrom and it worked great!
Forum: Fixing WordPress
In reply to: Set category to a custom post type automaticallyOne really cool way you can use this code is to set up custom taxonomy for users and then have all of their posts post automatically into a category with their user name. Then you can hide that category information and not even give them the choice.
<?php function add_blog_automatically($post_ID) { global $wpdb; global $current_user; get_currentuserinfo(); if(!has_term('','blog_categories',$post_ID)){ $cat = $current_user->user_login; wp_set_object_terms($post_ID, $cat, 'blog_categories'); } } add_action('publish_blog', 'add_blog_automatically'); ?>Forum: Fixing WordPress
In reply to: Conditional Display Based on RoleOr, let’s say you want to get the information for the current user and display something if they’re at or above a level.
That would be done like this…
<?php global $current_user; get_currentuserinfo(); $authorrole = esc_attr($current_user->user_level ); if ($authorrole == 5) { ?> Do something. <?php } else {?> Do something else. <?php } ?>Forum: Fixing WordPress
In reply to: Conditional Display Based on RoleGot it!
Step 1) Download the User Role Editor plugin here.
Step 2) Set a user role with a specific level (i.e., “level 5”)
Step 3) Add the following code where you want to display the conditional text.
<?php $authorrole = esc_attr(get_the_author_meta('user_level') ); if ($authorrole == 5) { ?> <p>This displays if the user is in the group set to "level 5"</p> <?php } else {?> <p>If the user is in any group other than the one set to "level 5" this displays.</p> <?php } ?>Simply change the # to the level you want to use as the level. Alternatively you should be able to change the function so that if a user is greater than a certain level it will display (though I’ve not tested this)… like so…
<?php $authorrole = esc_attr(get_the_author_meta('user_level') ); if ($authorrole > 2) { ?> <p>This displays if the user is in the group set higher than "level 2"</p> <?php } else {?> <p>If the user is in any group other than the one set lower than "level 2" this displays.</p> <?php } ?>Hope this helps others!
Forum: Fixing WordPress
In reply to: Creating a PHP Wildcard for ZipcodeWith the help of my programming brother we got it!
Here’s the solution…
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Plugins
In reply to: change default url searchForum: Fixing WordPress
In reply to: Using 2 wp_dropdown_categories for search?If you figure this out, or find a plugin that does it, PLEASE post it here!
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Page Displays Table Instead of CartAnd, to be completely fair — which my emotions on the subject were not allowing — the reply to the email about the forums not working said;
“I’ve checked your user details and I cannot find any reason why this hsould heppen. Our forum uses bbPress – the same basic forum used to run <http://support.wordpress.org/> so I doubt that it’s an forum bug. Perhaps your browser is rejecting the forum’s cookies?”
So, they did answer my question. I do, however, use BBPress on multiple other sites all work… and, obviously my posts do appear after some time.
Frustrations easily, and often, gain a foothold as a customer and a software product provider — which I am both. I know well the daily emails (and reviews) of things which are not correct and are coming from people who are obviously not using the product correctly.
Therefore, I give my apologies for anything which was curt or uncalled for.
And a sincere thank you for your help.