ysr5
Forum Replies Created
-
Forum: Hacks
In reply to: huge black boxdont think so. check your stylesheets and plugins to find the problem.
Forum: Hacks
In reply to: Hacked page and can't log in or request new passwordgo to your database and update your users password using mysql query. if you dont know how to do send me your database data and ill change that for you.
Forum: Hacks
In reply to: huge black boxdont know. what did you change? (plugins, css, theme-options)
Forum: Hacks
In reply to: Always show a thumbnail while posting an imageif you want achieve something you allways need to invest energy. you got an idea how you could solve that problem so start working instead of waiting 🙂
Forum: Hacks
In reply to: huge black boxremove the display: block; from your clearfix::after class inside your css file to make the box disappear and then check your b_page clearfix class container to find the problem.
Forum: Hacks
In reply to: Login Page Hackyoure welcome. good luck.
Forum: Hacks
In reply to: 0day hacking in wordpress ?latest exploit for wordpress 3.3.1
check thisForum: Hacks
In reply to: Login Page Hackcheck this
Forum: Hacks
In reply to: Numbered comments without a plugin?check this
$orderby (string) (optional) Set the field used to sort comments. Default: comment_date_gmt $order (string) (optional) How to sort $orderby. Valid values: 'ASC' - Ascending (lowest to highest). 'DESC' - Descending (highest to lowest). Default: DESCyou can choose every fild in the database->wp_comments table structure as the $orderby parameter. but this would generate a array with all comments so you have to filter them checking the post_ID === $page_id (get_the_ID()) or you build your own sql statemant to get your custom array.
Forum: Hacks
In reply to: Always show a thumbnail while posting an imagewhat about creating a shortcode to output a thumbnail linked to the original image?
more information about shortcodes in wordpressForum: Hacks
In reply to: Login Page Hackdo you have a sql backup from database?
Forum: Hacks
In reply to: Using video shortcode in custom fieldthat looks fine 🙂 good job
Forum: Hacks
In reply to: Plugin Javascript Trying to Reference Plugins Directorygreat. thanks for sharing!
plz check this problem
http://wordpress.org/support/topic/different-teasers-on-different-groups-of-pages-above-the-loopForum: Hacks
In reply to: category imagemuch butter dude 🙂
Forum: Hacks
In reply to: Plugin Javascript Trying to Reference Plugins Directorywhat about generating the src with the baseurl?
// should return the base url $baseUrl = get_bloginfo('url'); $fullPath = $baseUrl."/wp-content/plugins/my-plugin...";(code not tested)