rafinkarki
Forum Replies Created
-
Yeah it worked. Thanks
Forum: Plugins
In reply to: [Calculated Fields Form] add tracking code on submiIs there any hooks besides this addons?
Forum: Plugins
In reply to: [Calculated Fields Form] add tracking code on submiThanks for the reply
Forum: Fixing WordPress
In reply to: Extra login details askedyeah just delete it and check it. If its empty then it should not affect your site. Restore the folder in worst case.
Forum: Fixing WordPress
In reply to: Custom Post Typesadd_action( 'init', 'codex_book_init' ); /** * Register a book post type. * * @link https://codex.www.ads-software.com/Function_Reference/register_post_type */ function codex_book_init() { $labels = array( 'name' => _x( 'Books', 'post type general name', 'your-plugin-textdomain' ), 'singular_name' => _x( 'Book', 'post type singular name', 'your-plugin-textdomain' ), 'menu_name' => _x( 'Books', 'admin menu', 'your-plugin-textdomain' ), 'name_admin_bar' => _x( 'Book', 'add new on admin bar', 'your-plugin-textdomain' ), 'add_new' => _x( 'Add New', 'book', 'your-plugin-textdomain' ), 'add_new_item' => __( 'Add New Book', 'your-plugin-textdomain' ), 'new_item' => __( 'New Book', 'your-plugin-textdomain' ), 'edit_item' => __( 'Edit Book', 'your-plugin-textdomain' ), 'view_item' => __( 'View Book', 'your-plugin-textdomain' ), 'all_items' => __( 'All Books', 'your-plugin-textdomain' ), 'search_items' => __( 'Search Books', 'your-plugin-textdomain' ), 'parent_item_colon' => __( 'Parent Books:', 'your-plugin-textdomain' ), 'not_found' => __( 'No books found.', 'your-plugin-textdomain' ), 'not_found_in_trash' => __( 'No books found in Trash.', 'your-plugin-textdomain' ) ); $args = array( 'labels' => $labels, 'description' => __( 'Description.', 'your-plugin-textdomain' ), 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'query_var' => true, 'rewrite' => array( 'slug' => 'book' ), 'capability_type' => 'post', 'has_archive' => true, 'hierarchical' => false, 'menu_position' => null, 'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' ) ); register_post_type( 'book', $args ); }
Forum: Fixing WordPress
In reply to: How to remove the Spacing below Learn MoreYeah just lower it to your desired pixel but lowering padding like
padding:40px 0;
will lower padding top and bottom. If you want to decrease the bottom padding only then just find the above code in style.css and replace code like wise.post_content .row { padding: 50px 0 10px 0; }
Forum: Fixing WordPress
In reply to: How to remove the Spacing below Learn MoreSee this code in your style.css.
.post_content .row { padding: 50px 0; }
padding-top and padding-bottom set to 50px.
Forum: Fixing WordPress
In reply to: Image does not display in the postWhat is the site link?
Forum: Fixing WordPress
In reply to: Extra login details askeddelete the file from root and try once
Forum: Fixing WordPress
In reply to: how to remove this link at upper left corner of my websiteTry and find where the code is coming from. Search your theme directory with specific keywords like -follow-button.
However you can hide the section witha.-follow-button { display: none; }
Forum: Fixing WordPress
In reply to: How to move comments box above commentsI just tried to modify the code you’ve posted where comment form is relocated to before the comments list.
Please replace the section.<div id="comments"> <?php comment_form(); ?> <?php if ( have_comments() ) : ?> <div id="comments-box"> <div class="block-head"> <h3 id="comments-title"><?php comments_number( __ti( 'No comments' ), __ti( 'One comment' ), '% '.__ti( 'comments' ) );?> </h3><div class="stripe-line"></div> </div> <div class="post-listing"> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?> <div class="navigation"> <div class="nav-previous"><?php previous_comments_link( __ti( '<span>←</span> Older Comments' ) ); ?></div> <div class="nav-next"><?php next_comments_link( __ti( 'Newer Comments <span>→</span>' ) ); ?></div> </div> <!-- .navigation --> <?php endif; ?> <?php $comments_by_type = separate_comments($comments); ?> <?php if ( !empty($comments_by_type['comment']) ) : ?> <ol class="commentlist"><?php wp_list_comments('type=comment&callback=tie_custom_comments'); ?></ol> <?php endif; ?> <?php $comment_counter = 0 ; ?> <?php if ( !empty($comments_by_type['pings']) ) : ?> <div id="pings" class="commentlist"> <ol class="pinglist"><?php wp_list_comments('type=pings&trackback&pingback&callback=tie_custom_pings'); ?></ol> </div> <?php endif; ?> </div> </div><!-- #comments-box --> <?php endif; ?> <div class="clear"></div> </div><!-- #comments -->
Forum: Fixing WordPress
In reply to: Extra login details askedDo you have any htpasswd file within your root directory?
Please search for the file.m using 1.3.2 version
would you please tell how to change these from the code any hook?
yeah i set the value to 20000 in delay. But it is noet working. Sorry.
Not only that it is not working if i change value to any number.