benetic
Forum Replies Created
-
Forum: Plugins
In reply to: [Tweet This] [Plugin: Tweet This] Change tweet depending of category of post?Hi Gavin.
have you found any hack to your question ? I’m facing the same issue here.Forum: Plugins
In reply to: [Plugin: User photo] front end upload@ Fask + mattbeck
thanks for all these details : i’ve tried it with user-avatar plugin and it seems to works rather fine using thickbox. take careForum: Plugins
In reply to: [Plugin: User photo] front end uploadthanks for this quick answer, even if it hasn’t solve the issue 🙁
i’m still trying my way through it…Forum: Plugins
In reply to: [Plugin: User photo] front end upload@ Fask,
thanks for this hack for Userphoto frontend modifying.
This is exactly what i’m looking for and i have tested it on my website. unfortunately, when i click on the ‘Change avatar’ link, it only opens a empty blank page (actually it displays a ‘0’ in the left upper corner) and the thickbox UI doesn’t appear : would you have any idea about what i’m doing wrong ?to share my own experience, i can tell you that I have tested the same approach on one of my websites where i need to randomly display some posts.
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $arg = array ( 'cat'=>133, 'orderby'=>rand, 'paged'=>$paged ); $wp_query = new WP_Query( $arg );I was faced with one issue doinf this : with the RAND parameter, the query did NOT display all posts. strangely, it was displaying some posts twice, while not displaying some others…
Strange also was the fact that the total number of displayed posts was the same as the expected total post from the database : it took me some days before detecting the issue.
I haven’t fixed this issue yet : if anyone has a clue …