• Resolved Dmitriy Shelest

    (@dmitriy-shelest)


    Hi there!
    I have some questions about plugin:
    1.It fully replaces the current comment system as it makes disqus? That in this case what happens to old comments?
    2. Is plugin fully free or it’s has paid-functions?
    3. Where i can see screenshots or demo how its work?
    4. I have stand-alone plugin for 0auth. Buttons for “login with” is placed near comment submit form, here is example (scroll down for submit-form and you will see icons of social networks). Will this plugin work with wpDiscuz, or it will be removed with wpDiscuz?
    5. Where comments are stored – on my blog or at your servers?
    6. The data will not be lost if I install this plugin, and then remove it? Old comments will remain in place?

    Thank you in advance for your answers! And sorry for my bad English.

    https://www.ads-software.com/plugins/wpdiscuz/

Viewing 15 replies - 1 through 15 (of 76 total)
  • Plugin Author gVectors Team

    (@gvectors-team)

    Hi Dmitriy,

    1.It fully replaces the current comment system as it makes disqus? That in this case what happens to old comments?

    wpDiscuz changes default comment system to a new interactive system, but it shows all old comments, nothing will be lost.

    2. Is plugin fully free or it’s has paid-functions?

    There is not any paid feature by now, all is free.

    3. Where i can see screenshots or demo how its work?

    We’re adding screenshots now, you can see in a few minutes. Check the Screenshots tab.

    4. I have stand-alone plugin for 0auth. Buttons for “login with” is placed near comment submit form, here is example (scroll down for submit-form and you will see icons of social networks). Will this plugin work with wpDiscuz, or it will be removed with wpDiscuz?

    I think it’ll be there, we’ve kept all comment hooks and WordPress features as much as possible.

    5. Where comments are stored – on my blog or at your servers?

    wpDiscuz uses the default WordPress comment storage system, all comments are on your database and all comments are manageable from Dashboard > Comments admin page.

    6. The data will not be lost if I install this plugin, and then remove it? Old comments will remain in place?

    This plugin doesn’t affect any data. You can install and uninstall whenever you want without any worries.

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    So, I install plugin, but this remove my 0auth buttons. But i have shortcode for place this buttons, maybe you can tell me where to place it, make it work?
    Now it’s look like this
    And one more question: I have “Comment reply notification” plugin installed. Now I can remove it?

    But of course, first impression of the plugin – super/great/awsome! This what I’m looking for!

    Plugin Author gVectors Team

    (@gvectors-team)

    Ok, is that a shordcode or a template tag like a PHP function?
    Could you please show what shordcode do you mean?

    I have “Comment reply notification” plugin installed. Now I can remove it?

    I’d recommend do some comments and check emails, you’ll see. If you get two emails you can uninstall the “New Comment Notification” plugin

    Thread Starter Dmitriy Shelest

    (@dmitriy-shelest)

    Here is: <?php echo get_ulogin_panel(); ?>

    Plugin Author gVectors Team

    (@gvectors-team)

    Ok, I’d recommend put it in single.php

    Open current active theme’s single.php file, find this function:

    comments_template();

    and add your code before this function like this:

    echo get_ulogin_panel();
    
    comments_template();
    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.

    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.

    Plugin Author gVectors Team

    (@gvectors-team)

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

    function custom_ulogin_panel () {
      echo '<div>' . get_ulogin_panel() . '</div>';
    }
    add_action ( 'genesis_before_comments', 'custom_ulogin_panel', 10, 1);

    This should add all buttons before comment form.

    Plugin Author gVectors Team

    (@gvectors-team)

    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.

    This place is in wpDiscuz template file, there are not any hooks for this place. That’s cannot be inserted there.

    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)

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

    Plugin Author gVectors Team

    (@gvectors-team)

    We know Russian language, that’s not a problem.
    However you can send the child theme w/o admin access…
    Но лучше бы было иметь возможность работать на вашем сайте, там могут быть много специфических проблем.

    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?

    Plugin Author gVectors Team

    (@gvectors-team)

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

    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?

Viewing 15 replies - 1 through 15 (of 76 total)
  • The topic ‘Some questions about plugin’ is closed to new replies.