George
Forum Replies Created
-
You can download older versions of the plugin here https://wordpress.org/plugins/wordpress-seo/developers/ under “Other Versions”.
Worked. Thank you.
Forum: Plugins
In reply to: [Rating System] Not working with epochThe problem is/was with the object-cache.php
https://wordpress.org/plugins/wp-redis/
Thanks for adding the feature.
Forum: Plugins
In reply to: [Rating System] Not working with epochSettings are not saved/visible on front-end if the pods plugin is active.
That’s with epoch active too, didn’t test with pods but no epoch.
Forum: Plugins
In reply to: [Custom Field Suite] Deleting item from lopThank you, array_values() does the job.
Sorry for late reply.Forum: Plugins
In reply to: [Custom Field Suite] Deleting item from lop$arr1 = array( 'title' => 'book 1', 'author' => 'author 1' ); $arr2 = array( 'title' => 'book 2', 'author' => 'author 2' ); $arr3 = array( 'title' => 'book 3', 'author' => 'author 3' ); $arr4 = array( 'title' => 'book 4', 'author' => 'author 4' ); $array = array($arr1, $arr2, $arr3, $arr4);In the code above if i remove $arr3 (not unset, delete completely from code), the index changes.
$arr1 = array( 'title' => 'book 1', 'author' => 'author 1' ); $arr2 = array( 'title' => 'book 2', 'author' => 'author 2' ); $arr4 = array( 'title' => 'book 4', 'author' => 'author 4' ); $array = array($arr1, $arr2, $arr4);So shouldn’t deleting a field have the same result?
Same here. Had to disable it.
Forum: Plugins
In reply to: [Favorites] Button not visible for all posts on archive pageI have to apologize, it was due to the fragment cache that the id of the post was not accessible inside the fragment cache.
I have no idea how this was possible, i echoed get_the_id() and some posts had an id some didn’t, so i moved the button outside the cache and it seems to work now.
I’m sorry for wasting your time.
Forum: Plugins
In reply to: [Favorites] Favorites List Doesn't Display Per MemberYes, i noticed too, must be a bug.
You can use the
get_user_favorites()function to get the post ids and loop through them.$user_id = bp_displayed_user_id(); $post_ids = get_user_favorites($user_id); echo '<ul>'; foreach($post_ids as $post_id){ echo '<li><a href="' . get_the_permalink($post_id) . '">' . get_the_title($post_id) . '</a><span style="float:right;">'.get_favorites_button($post_id).'</span></li>'; } echo '</ul>';Forum: Plugins
In reply to: [Favorites] Favorites List Doesn't Display Per MemberYou have to pass the id of the user which the profile belongs to.
If you have the id 3 and go to the profile of the user with id 6 the function needs to have the id 6, get current user id gets your id (3).
I don’t use buddypress but this might work
bp_displayed_user_id()
https://codex.buddypress.org/developer/playing-with-the-users-id-in-different-contexts/$u_id = bp_displayed_user_id(); the_user_favorites_list($u_id, null, true);Forum: Reviews
In reply to: [WP-FansubPageManager] Wonder plugin3 downloads and already someone donated and gave a 5 star rating, they even created an account the same day the plugin was released for this. Must be a great plugin. Definitely not the author himself.
WordPress 4.2.2
Forum: Plugins
In reply to: [Admin Menu Manager] SuggestionsInteresting approach.
One more thing would be nice, restore to default.Forum: Plugins
In reply to: [Favorites] [Suggestion] Group favorites by post type/taxonomyAwesome.
Forum: Plugins
In reply to: [WP Favorite Posts] Work for only one custom post type?Try this:
if ($post->post_type == "game"){ wpfp_link(); } else { //code for other post types }