riskamudrika
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Excluding comment if comment is closeI’ve got a solution, Just in case anyone needs the code, i put this in function.php
function custom_comments_clauses( $clauses ){ remove_filter( 'comments_clauses', 'custom_comments_clauses' ); $clauses['where'] .= "AND comment_status='open'"; // EDIT return $clauses; } add_filter( 'comments_clauses', 'custom_comments_clauses' );
Forum: Fixing WordPress
In reply to: How to make content font size bigger?find this in your css :
p {
margin-bottom: 15px;
}and add this font-size: 18px; in the above margin-bottom
Looks like this :
p {
margin-bottom: 15px;
font-size: 18px;
}Forum: Plugins
In reply to: [One Click Close Comments] link to front end post?same as with th3harold, it’s amazing if we can close and open comment from front end.
I am waiting for update! ??
Forum: Fixing WordPress
In reply to: Blank screen if user isn't an adminTry to remove white space after tag ?>
Forum: Plugins
In reply to: [Force Regenerate Thumbnails] Image Broken after update the pluginHi Pedro,
I have sent you email with 3 images about the error
Thank you
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function wp_using_ext_object_cache()Try to enable wp_debug from wp-config.php, wordpress will provide information if any error from your themes
Forum: Fixing WordPress
In reply to: Permalinks / Custom Post Typehope this help
Try to rename your cpt file’s to single-your_custom_post.php. example, if your cpt name is movie, it’s should be like “single-movie.php” and resave your pemalink
Forum: Fixing WordPress
In reply to: Remove white space below header image and before content, Help!Find this in your style.css
.main-navigation {
clear: both;
margin: 0 auto;
max-width: 1080px;
min-height: 45px;
position: relative;
}remove min-height: 45px;
Forum: Fixing WordPress
In reply to: Cannot access website or admin pageDeactivate your plugins through ftp, rename your plugins folder to plugins-xxx and try to access your site
Forum: Fixing WordPress
In reply to: How to make onfocus in custom metaboxwow!! like a charm!
Thank you david you save my day, i have created like this and folla! it’s work
case 'text': echo '<input type="text" name="'.$field['id'].'" id="'.$field['id'].'" value="'.$meta.'" placeholder="'.$field['std'].'" size="30" />'; break;