Hellnik
Forum Replies Created
-
Forum: Plugins
In reply to: [Ajaxed Comments] not working with custom themeworking
problem can be installed plug-ins – deactivate allForum: Plugins
In reply to: [Limit Login Attempts] Compatibilty with WP 3.9.1Login LockDown – became updated
Limit Login Attempts a nice, but but found a bug in it. Author promised to find the problem, but yet quiet.Forum: Plugins
In reply to: [Simple Local Avatars] Can't edit or delete avatar frontendIn version 1.3.1 works stably on front-end page, but one problema only in 2.0: can’t delete avatar.
In the admin panel used Ajax script, maybe that’s the problem =(Forum: Plugins
In reply to: [WP Favorite Posts] Deleted postsPlugin only keeps data(favorite post) in meta_key(number post, id oost).
He can not removed values from the database ??by itself.
Use link for delete post on favorite page.
Or make on author.php page like this
https://2.firepic.org/2/images/2014-05/26/y24nprlbi5r0.jpgForum: Plugins
In reply to: [WP Favorite Posts] How to show favourite post count in widget<?php $user_favs = wpfp_get_users_favorites($curauth->display_name); $fav_array = wpfp_get_users_favorites($user_favs); $fav_count = count($fav_array); echo '<div id="count">My Favourites (' . $fav_count .')</div>'; ?>
working code =)
Forum: Plugins
In reply to: [WP Favorite Posts] Clear favorite list of a specific userFaster and easier to remove via link:
https://sitename.com/PAGENAMEFAVORITE?wpfpaction=remove&page=1&postid=IDPOST
example,
https://google.com/fave?wpfpaction=remove&page=1&postid=2The user must go through it himself
Forum: Plugins
In reply to: [WP Favorite Posts] Excerpt View of FavoritesНасколько я правильно понял, то
I use the function for cutting text(excerpt):
function do_excerpt($string, $word_limit) { $words = explode(' ', $string, ($word_limit + 1)); if (count($words) > $word_limit) array_pop($words); echo implode(' ', $words).'...'; }
Then, in the right place to insert the code:
do_excerpt(get_the_excerpt(), 30);
30 – number of words
Forum: Plugins
In reply to: [WP Favorite Posts] Favorite PagesПривет))
See the file:
wpfp-page-template.php
There is a line// custom post type support can easily be added with a line of code like below. // $qry['post_type'] = array('post','page'); query_posts($qry);
Uncomment the line on:
$qry['post_type'] = array('post','page');
Forum: Plugins
In reply to: [WP Favorite Posts] Save date/time the user marked it as favoriteIn the plugin no table, which records the date and time add favorite post =(
Forum: Plugins
In reply to: [WP Favorite Posts] Why add to favorite links to frontpageCreate a page e.g. “Your Favorites” and insert {{wp-favorite-posts}} text into content section. This page will contain users favorite posts.
Forum: Plugins
In reply to: [RecipePress Reloaded] Fatal error: Using $thisThank you!
Nice plugin =)Forum: Plugins
In reply to: [RecipePress Reloaded] Fatal error: Using $thisTested on version recipepress-reloaded.0.5.3.zip(the file contains version 0.5.2)
Everything works well and without errors. The images are loaded)))Forum: Plugins
In reply to: [RecipePress Reloaded] Fatal error: Using $thisProblem1: Please give some more information. What did you do? Where should a picture apear?
I installed the new wordpress, and downloaded and activated the plugin.
Then: Recipes->Add New->Set featured image->Upload Files
Result
https://sa.uploads.ru/BQ5ZE.jpg
File size: 356 kbForum: Plugins
In reply to: [Simple Local Avatars] Working script uploading avatar in front end pageWhere should I put this code ?
I put this code in my page(front-end) “Edit Profile” boot problems was not.
Tested:
Simple Local Avatars 1.3.1