Forum Replies Created

Viewing 15 replies - 1 through 15 (of 149 total)
  • Thread Starter Endlyss

    (@akel-res)

    Except I was a paid user, and the free version I used far less than you insinuate. Of course if I use something for that long, I’ve bought the premium version multiple times. This forum requires review of the free version. I’m unhappy with both but spoke about the free version here.

    It is astounding to watch the mental gymnastics you (you personally) go through here and on reddit to try to gaslight everyone into some strict stance you have on this, when you have been completely unreasonable since the license swap, and deserve every bit of negative feedback you’ve received.

    Thread Starter Endlyss

    (@akel-res)

    Update:

    I managed to get my code working, to auto-clean them. Cron job that looks specifically for wpr_custom_guest_token and wipes them periodically (regardless of expiration). So the site is at least back to stable now.

    However, this was of course a hacky solution, and I’m concerned that there may be unforeseen consequences of just blanket deleting all instances of this transient multiple times an hour (even though these transients have a lifespan of 2hrs)…but it was the only way to stop the site from constantly choking on itself, or setting me up in a position where I’d have to log in every few hours to clear them through the holidays.

    So still curious of what this transient is for, and if there are any consequences to me “disabling” it the way I did above.

    Thread Starter Endlyss

    (@akel-res)

    @sterndata

    Okay, I can understand and roll with that. Apologies for the incorrect metrics, and thanks for the correction.

    That actually puts good bit of that into a different perspective then.

    Not sure how many active installs there are of Classic editor, exactly, since it stops at the 5,000,000+ mark. It’s been at that mark for quite a while…even though it has nearly 24 million *downloads*, not sure if -all- of those are still active.

    Thread Starter Endlyss

    (@akel-res)

    @orlando

    Lol “55 million downloads…there is no comparison.” Get real.

    As if that number isn’t inflated by the fact that it is force-downloaded on new installs. The download count remains on a plugin, even after it has been uninstalled.

    Instead, focus on the fact that there are only 200k ACTIVE installs of Gutenburg, and well over 5million ACTIVE installs of the classic editor plugin…don’t think that only 2000 reviews here represents ALL of the negative feedback that Gutenburg has received since the beginning. It’s only a fraction of it.

    Don’t get me wrong…WordPress Core is managed by volunteers…but volunteer or not, you don’t ignore the actual feedback from a userbase as large as WordPress’s and just say “screw you guys, we’re doing what we want.” When people are still saying “this was a horrible update” 2 YEARS LATER, it isn’t just people not willing to “get up with the times”, it is “you made a horrible update.”

    The only part I can really agree with you on is ye I guess it’s probably too late for it to be removed. With the portion of the userbase who’ve actually converted to the P.O.S., it’d break all their sites to backtrack now.

    Forum: Reviews
    In reply to: [Gutenberg] I love it

    Nah we’re not “old”…this is just intrusive and there are much better alternatives out there, of which they make it pain to replace this with those.

    • This reply was modified 5 years, 7 months ago by Endlyss.

    @trajektorijus

    Still a typo in there that will cause a fatal error

    There is an apostrophe missing after “woocommerce_product_archive_description”

    so this:
    remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description, 10 );

    should be this:

    remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description', 10 );

    Thread Starter Endlyss

    (@akel-res)

    Thanks for the reply and confirmation that my idea would work!

    In order to tackle the issue of defining many different plugin function sets, therefore creating excess, I’ll probably do what I do with SASS right now — treating everything like modules.

    Have one main core plugin file, and each plugin that I am accounting for will have it’s own separate functions file stored within subdirectories. And then from there I’ll simply require_once their function files, only if I am using that particular plugin. If it doesn’t get “require_once”-ed, then it doesn’t even make it to parsing.

    Thread Starter Endlyss

    (@akel-res)

    Okay, cool. Thank you for the info, Adam! I’ll go do my due diligence now and learn about authentication methods, then! (and thanks for the bonus info about 0Auth and basic!)

    Thread Starter Endlyss

    (@akel-res)

    Thanks for the reply, bcworkz!

    I apologize for taking so long to get back to you about this. I had been working on other aspects of the project in the mean time.

    That makes perfect sense to me. I really appreciate the indepth response.

    This particular action attaches meta data to a woocommerce order item. Is that considered a “special privilege”?

    And in practice, is there any harm in verifying a nonce no matter what? For example, if in situations like this, where I am questioning whether or not I should, would it be bad if I just programmed a nonce-check anyway, just in case?

    Thread Starter Endlyss

    (@akel-res)

    Your FontAwesome CSS Stylings need to be targeted to the widget wrapper.

    For example, instead of “.social-feed-main-container .fa-facebook” you targeted just a very broad “.fa-facebook” which has messed up all social icons that I had placed on my site, because I also use FontAwesome

    Thread Starter Endlyss

    (@akel-res)

    BAH…changing rating.

    Just realized that the name for this plugin is the exact same as another, so when I went to install it via the WordPress plugin interface, I selected the wrong plugin.

    I apologize greatly for the mistake! Now I’ve tried out the proper plugin and it works awesomely! Adjusting review accordingly

    Thread Starter Endlyss

    (@akel-res)

    Gotcha!
    Thank you very much for the response, bcworkz, as well as the explanation as to why it’s important.

    Thread Starter Endlyss

    (@akel-res)

    Partially.

    I got everything except the initial “This product is not currently in stock and is unavailable.” which is fixed by hitting update manually on a given product…I found this to be an acceptable solution, since it only required me to open the products list in the backend and bulk update posts.

    However, if I could find a way to solve this, that’d be awesome. I am looking into Mike’s initial prices & stock comment, however I have to wait until I am off work before I can implement something. Will post back here once I do, as well as my cleaned code from above.

    And thanks for the suggestion, Caleb! I appreciate it and will look into it as well, while checking out Mike’s.

    Thread Starter Endlyss

    (@akel-res)

    But is that not what I’m doing with the whole “change_price_all_types” function? Or do I have to do that to the parent product as well, and not just the variations?

    Also I ended up figuring out the blank attributes dropdown — It had to do with the attributes not being synced properly.

    Once I clean up the code, I’ll post my solution. I still had to go through and hit “update” on all products, so if I could solve that, that’d make this piece of code a keeper, hahaha. However I was okay with that caveat, since I could bulk update posts.

    Have you considered editing the “slug” on the individual product categories?

    For example, the “Accessories” page would use the “accessories” slug, in its permalink.

    And then you could change the slug for the category to “accessories-category”

    To change this “slug”, you would head to your wp-admin dashboard, then hover over “Products”, then click “Categories”

    Then you would open each category and add “-accessories” to the slug field (the slug field is found directly below the title)

    So for example, now “product-category/accessories/hats” would become “product-category/accessories-category/hats”

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