lidya1859
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Font TypesI think it’s not recommended using @import..
Just put this link in your header..<link href=”//fonts.googleapis.com/css?family=Open+Sans:300italic,300,400italic,400,600italic,600,700italic,700,800italic,800″ rel=”stylesheet” type=”text/css”>
Forum: Fixing WordPress
In reply to: 3.9 I can't see the content of my posts, just the titleshmm,,actually i never use that file..
and as long as i know error_log automaticaly created when your website has an or some errors..
see this http://postimg.org/image/duzv9684f/..Forum: Fixing WordPress
In reply to: 3.9 I can't see the content of my posts, just the titlesyou can check it from your FTP or cpanel > file manager in public_html..
Forum: Fixing WordPress
In reply to: Query posts inside custom post typehave you set ‘paged’ => $paged at query_posts arguments?
Forum: Fixing WordPress
In reply to: 3.9 I can't see the content of my posts, just the titlesit seems your category template has broken..check your error log to know what is the problem..
Forum: Plugins
In reply to: [Participants Database] [record_link] doesn't appear in email when sign upokay,,i’ve checked it and i forgot to set the participant record page..i just put the [pdb_record] shortcode..
anyway,,thanks for creating this great plugin.. 🙂Forum: Plugins
In reply to: [Booking Calendar] Prevent of double booking doesn't worksorry,,my fault..it looks like i added aggregate=”” without knowing it’s function.. 😀
it works perfectly.. ^^Forum: Hacks
In reply to: wp_ajax_nopriv doesn't workingHere’s my function code
http://pastebin.com/aZyjumRW
and this is the javascript
http://pastebin.com/vheJmuBNor maybe am i missing some code that must be added to use this hook?? help me please.. 🙁
thank you..Forum: Fixing WordPress
In reply to: Multiple user_meta VS Array user_metaooo…i see..
thanks for your answer.. 🙂Forum: Plugins
In reply to: [NextGEN Public Uploader] PRO version / How to track "logged in user"?i was looked for this too..but i couldn’t find any clue everywhere..so i just make a new field name author (or anything you want) in wp_ngg_pictures..and then i added field author in query (nextgen-gallery\lib\ngg-db.php)..
i changed the query into this:if ( false === $wpdb->query( $wpdb->prepare(“INSERT INTO $wpdb->nggpictures (image_slug, galleryid, filename, description, alttext, meta_data, post_id, imagedate, exclude, sortorder, author)
VALUES (%s, %d, %s, %s, %s, %s, %d, %s, %d, %d, %d)”, $slug, $id, $filename, $description, $alttext, $meta_data, $post_id, $imagedate, $exclude, $sortorder, $uid ) ) ) {
return false;
}but first i took the user id with this code:
$uid = get_current_user_id();
hope it helps you.. 🙂