Forum Replies Created

Viewing 15 replies - 31 through 45 (of 47 total)
  • Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    Great, thanks! Will wait for future updates!

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    Hello!
    only now found the time to do thorough installing the plugin, results are as follows:
    In changelog of version 1.0.8 you wrote:
    “Added : wpDiscuz comment system supports all WordPress template hooks. It’s compatible with all plugins which uses comment hooks.”

    But it didn’t work with ulogin. So i had to do on your instructions (adding panel in comment-form/form.php
    After this form is turned as on your screenshot.

    Wishes for the future versions:
    – Add function or button to refresh comments block or add a timer to which comments block will refresh automatically;
    – Widget “recent comments”. Now i use WP-Recent comments plguin, and it’s work great. But he uses links ***/#comment-2087 and therefore this links don’t work with wpDiscuz. The plugin is excellent, because it uses jquery and allows to deploy a large comment directly in the sidebar. Perhaps you should make your widget for recent comments?
    – Is it possible to make a multi-level system responses? After all WordPress natively supports this feature.
    – It would be great, if it is possible to make a sound notification when new comments are for authorized users or small floating blocks down-right of page, which notifies you of new comments. But probably it is’s really tough?

    But in any case, plugin is great, I will recommend it to all. Now I went to write a positive review!

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    And one more question: is comments on wpDisuz are SEO-friendly? Particularly interested in the hidden comments.

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    Ok, will wait, thanks in advance!

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    Great, thanks!
    But what about ulogin panel?

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    In plugin? or my theme files?

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    I Send an email with an attachment

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    Do I understand right that in order to change the font size in the body of the comment i need to add font-size in Custom CSS code field, like this?
    .comments-area{width: 100%;margin: 0 auto; font-size:16px;}

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    Of course, i understand.

    This may be a small bug, we’ll check and update as soon as possible…

    Maybe it will be useful, that’s what I noticed:
    when choosed “Show the latest comments on top of the threads” and “Comment Threads Per Page” is about 10-15 there is a bug, recent comments doesn’t displayed. If i check comment threads per page 300 (in fact, it is only important thing is that the specified number was more existing comments) that’s allright. Once loaded all the comments and sorted in the correct order.

    but if you change the output settings in the WP-settings (setting-show discussion, early / late comments) and choose to display recent comments, instead of early, plugin, then plugin does the opposite: Early comments on top, latest – down the page. Provided that in the plugin settings specified Show the latest comments on top of the threads. I think the problem in this.

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    We know Russian language, that’s not a problem.

    Oh, great. Does this mean that I can write additional text in Russian? or use English?

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    And one more moment: i choose this item in menu:
    Show the latest comments on top of the threads

    After refresh this post with 200+ comments (for example) I see, that latest comments is not the latest. Only if i scroll down and press “load more commenets”, then recent commets appear on top. But why they didn’t appears initially?

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    All dashboard is in russian language. I can send php files of child theme and framework if it helps

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    Add this code in functions.php I think this may help:

    Doesn’t work. Any ideas?

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    This forum doesn’t allow picture uploading, so i upload one screenshot here
    I think it’s a best place for display ulogin_panel, because in such a case, it would appear not only at the beginning of a block comment, but after each pressing the Reply button.

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    There is one problem, I use a child theme of Genesis framework and in it I can only edit functions.php home.php and landing.php of my child theme.
    All changes to the site I’m doing through functions.php, for example

    //***Customize The Comment Form**/
    add_filter( 'comment_form_defaults', 'bourncreative_custom_comment_form' );
    function bourncreative_custom_comment_form($fields) {
    	$fields['comment_notes_after'] = ''; //Removes Form Allowed Tags Box
        return $fields;
    }

    Or

    //* adding tagline widget
    genesis_register_sidebar( array(
        'id' => 'home-featured',
        'name' => __( 'Home Featured', 'eleven40' ),
        'description' => __( 'This is the home featured section.', 'eleven40' ),
    ) );

    Because of all Genesis .php files has this notification:

    /* # WARNING
    
    This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances. Please do all modifications in the form of a child theme.
    Copy the contents of this file to the child theme. Do not use @import, as the CSS included with Genesis might change in the future.

    And genesis comments.php looks like this:

    <?php
    /**
     * Genesis Framework.
     *
     * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
     * Please do all modifications in the form of a child theme.
     *
     * @package Genesis\Templates
     * @author  StudioPress
     * @license GPL-2.0+
     * @link    https://my.studiopress.com/themes/genesis/
     */
    
    if ( ! empty( $_SERVER['SCRIPT_FILENAME'] ) && 'comments.php' === basename( $_SERVER['SCRIPT_FILENAME'] ) )
    	die ( 'Please do not load this page directly. Thanks!' );
    
    if ( post_password_required() ) {
    	printf( '<p class="alert">%s</p>', __( 'This post is password protected. Enter the password to view comments.', 'genesis' ) );
    	return;
    }
    
    do_action( 'genesis_before_comments' );
    do_action( 'genesis_comments' );
    do_action( 'genesis_after_comments' );
    
    do_action( 'genesis_before_pings' );
    do_action( 'genesis_pings' );
    do_action( 'genesis_after_pings' );
    
    do_action( 'genesis_before_comment_form' );
    do_action( 'genesis_comment_form' );
    do_action( 'genesis_after_comment_form' );

    And Genesis single.php looks like this:

    <?php
    /**
     * Genesis Framework.
     *
     * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
     * Please do all modifications in the form of a child theme.
     *
     * @package Genesis\Templates
     * @author  StudioPress
     * @license GPL-2.0+
     * @link    https://my.studiopress.com/themes/genesis/
     */
    
    //* This file handles single entries, but only exists for the sake of child theme forward compatibility.
    genesis();

    I understand that all this does not apply to the plugin work, but would be very grateful if you would help me to add ulogin panel for the right place with functions.php of my child theme.

Viewing 15 replies - 31 through 45 (of 47 total)