Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)
  • Thread Starter Doru Tirlea

    (@stkwarrior)

    Hello @margaretwporg

    Thank you for the answer. I also found those, but that is deleting only one line item. I need to write some code to also have selector checkbox for the bulk actions next to each line item.

    Regarding custom code, is not an issue, I am a developer myself so I can handle that. I just wanted to ask before doing so, in order to not re-invent the wheel In case such solution already existed with some other plugins ??

    Thank you.

    • This reply was modified 2 years, 7 months ago by Doru Tirlea.
    • This reply was modified 2 years, 7 months ago by Doru Tirlea.
    Thread Starter Doru Tirlea

    (@stkwarrior)

    Thanks,

    Same to you

    Thread Starter Doru Tirlea

    (@stkwarrior)

    Hello

    I implemented what I wrote previously and in that way is controlled from admin (so the owner can change his texts when ever he wants), so for me works at the moment. It would be great just if you include it in your next update not to lose my changes (Specially that is a good thing to have there and is based on your coding standard, so should not be a problem to add) ??

    Doru Tirlea

    (@stkwarrior)

    Hello

    The problem there is not the actual css. The problem is that you only apply class “wishlist-added” at the end of the ajax success call. But on a page refresh (or coming to a page where that product is already in wishlist) you do not add that class back to the icon so the css will never work.

    Thread Starter Doru Tirlea

    (@stkwarrior)

    Hello again,

    Can you please add this in a future release? It’s just a few quick additions to have that issue sorted. Will be great.

    Replace in “/wpml-config.xml”
    <key name="yith_wcwl_already_in_wishlist_text" />
    with

    <key name="yith_wcwl_already_in_wishlist_text" />
    <key name="yith_wcwl_no_product_added_in_wishlist_text" />

    Replace in “/includes/yith-wcwl-admin-init.php”

    'already_in_wishlist_text' => array(
        'name'    => __( '"Product already in wishlist" text', 'yith-woocommerce-wishlist' ),
        'id'      => 'yith_wcwl_already_in_wishlist_text',
        'default' => __( 'The product is already in the wishlist!', 'yith-woocommerce-wishlist' ),
        'type'    => 'text',
        'css'     => 'min-width:300px;',
    ),

    with

    'already_in_wishlist_text' => array(
        'name'    => __( '"Product already in wishlist" text', 'yith-woocommerce-wishlist' ),
        'id'      => 'yith_wcwl_already_in_wishlist_text',
        'default' => __( 'The product is already in the wishlist!', 'yith-woocommerce-wishlist' ),
        'type'    => 'text',
        'css'     => 'min-width:300px;',
    ),
    'no_product_added_in_wishlist_text' => array(
        'name'    => __( '"No product added in wishlist" text', 'yith-woocommerce-wishlist' ),
        'id'      => 'yith_wcwl_no_product_added_in_wishlist_text',
        'default' => __( 'No products were added to the wishlist', 'yith-woocommerce-wishlist' ),
        'type'    => 'text',
        'css'     => 'min-width:300px;',
    ),

    Replace in “/includes/class.yith-wcwl.php”
    $message = apply_filters( 'yith_wcwl_no_product_to_remove_message', __( 'No products were added to the wishlist', 'yith-woocommerce-wishlist' ) );
    with
    $message = apply_filters( 'yith_wcwl_no_product_to_remove_message', get_option( 'yith_wcwl_no_product_added_in_wishlist_text' ) );

    Replace in “/templates/wishlist-view.php”
    <?php echo apply_filters( 'yith_wcwl_no_product_to_remove_message', __( 'No products were added to the wishlist', 'yith-woocommerce-wishlist' ) ) ?>
    with
    <?php echo apply_filters( 'yith_wcwl_no_product_to_remove_message', get_option( 'yith_wcwl_no_product_added_in_wishlist_text' ) ) ?>

    or if you do not like this method, add it differently, but please add it on a next release ?? (as I said, was requested even more then 2 years ago with no solution)

    Doru Tirlea

    (@stkwarrior)

    Hello @mic85b.

    I am running the latest version 2.2.8, but it works fine on my side. So it might be an issue with your theme. Example of my outputted code on that page.

    <td class="product-thumbnail">
        <a href="https://www.domain.com/product/product-title/">
            <img src="https://www.domain.com/path-to-file.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="" width="247" height="296">
        </a>
    </td>
    Doru Tirlea

    (@stkwarrior)

    Hello @hameedhudeen

    I can help you here as it seems support is slooooow ??

    You can go to YITH -> Wishlist -> Colors (tab).

    There in the “Custom CSS” field just add this line and it should be as you requested

    .image-tools .wishlist-button.wishlist-added { background-color: #b20000; border-color: #b20000; color: #fff; }

    Thread Starter Doru Tirlea

    (@stkwarrior)

    No problem. Glad to help ??

    Hello guys.

    Unfortunately this will be my last post as Rustaurius, you didn’t answered affirmative on my help proposal on this plugin ?? I hope you will manage further as you have still many problems on the plugin and also new features to implement as user request them (I already implemented a lot of requests on my side but, it’s not public) :).

    On this issue, it’s not possible to work on either of the 2 ways you proposed, for the simple fact that you made functions not objects, so the proper calling are the one bellow and it will work.

    echo $User -> Get_Username();
    echo $User -> Get_User_ID();

    So Adeel Michael you can try like this if is still in need for you and should work.

    Rustaurius, the Get_Username won’t work anyways because it’s written wrong

    function Get_Username() {
        return $this->Get_Username;
    }

    you need to return $this -> Username;

    Good luck with the further fixes and features on the plugin ??

    Hello Pistacho.

    As far as I know the plugin does not allow this out of the box yet because the login system is hardcoded in the plugin, I mean the username and password fields. I needed the same functionality on my part but I made some changes in the plugin to obtain that.

    I am just a user of this plugin, so maybe the guys who made it can answer you better, but I guess that what you want is a bit out of scope of the plugin so it be better to create a new table for that. But, as I said, wait the guys who made the plugin to approve me or not :).

    Hello Tannermccoleman.

    Do you mean some extra informations for the user when you create the account? Like name, address etc?

    Hello Adeel

    I am working with this plugin pretty much in the last week and maybe I can help you.

    The problem is that I didn’t quite understood what is your problem :).

    You said you developed a plugin with this plugin, you mean you created a custom plugin based on this one, and now you run both of them?

    Also, you have an error when you try to use the [register] shortcode or just doesn’t display nothing?

    Hello Rustaurius.

    I just finished this functionality on my site using your plugin as I needed so I could not wait an implementation :). I made it in order to be able to use another shortcode so is basically working like in your plugin style. I am using the version of the plugin 1.15 but I think it won’t be a big trouble to integrate it even in your last version 1.19 as is an extra file in the shortcode’s folder and a new function that needs to be added to a file “Process_Front_End_Forms.php” to be more exact. If you want a help on this one maybe you have a git of your project where I can download the latest working copy make this change..and send it back to you with instructions of what I changed.

    Just let me know your email address, or just email me to [email protected] and i will reply there if you want to help on this functionality as it’s a quite important one for a registration plugin ??

    Hello.

    Based on what I saw in the plugin, how this functionality is made, there is no way for the emails to work (except if I missed something).

    The emails when a user registers are sent based on this line
    if ($Sign_Up_Email == "Yes")
    so only if that setting is yes, the emails will be sent. That setting is taken from here
    $Sign_Up_Email = get_option("EWD_FEUP_Sign_Up_Email");
    and unfortunately there is no option like that in the database. So I think it will never be “Yes”.

    If I am wrong Rustaurius, let me know please, if not, let me know why is that option check there. Thanks ??

Viewing 15 replies - 1 through 15 (of 17 total)