Forum Replies Created

Viewing 15 replies - 46 through 60 (of 266 total)
  • Let me know when it’s 7.1. What version of WP are you running?

    For the paging there is a setting in the views where you can set it to show a certain number of testimonials per page. If you set it to 20 then 20 testimonials will be loaded and there will be next/previous buttons on the bottom.

    Hi @my247restore,

    I have the plugin running successfully on several sites using different versions of PHP ranging from 7.1 – 7.4. Just now I installed it on a site running PHP v7.4 and it is working without any issues. The websites are all using the Genesis framework.

    I just clicked on the link you provided and the page loads for me. No sure what version you currently have PHP set to. The first time I clicked on the link it did take quite a long time to load. You may want to consider using paging so it loads more quickly.

    Thread Starter ZeroGravity

    (@zerogravity)

    Thanks @corrinarusso I will take a look.

    Thread Starter ZeroGravity

    (@zerogravity)

    Hi @pratik-jain,

    Thanks for your reply but that setting seems to remove the quantity from the checkout page as well. I only want to remove the quantity from the product page and the download button shortcode but leave it on the checkout.

    i.e. Product page and download button – no quantity.
    Checkout page – show the quantity.

    Thanks.

    Put the code below in you functions.php. I wanted to place it between the Order summary and the payment methods so I used the woocommerce_review_order_before_payment hook. If you would like it just before the payment button use woocommerce_review_order_before_submit.

    Something to consider. Clicking the “Add Donation” button reloads the checkout page, clearing the payment fields. If move the donation to after the payment options and your client has entered their credit card information it will be cleared and they will need to reenter it. They will probably find this frustrating.

    This is a great reference for all the WooCommerce hooks on the checkout page. Makes it easy to place the donation exactly where you would like it. https://businessbloomer.com/woocommerce-visual-hook-guide-checkout-page

    //* Relocate donation on checkout page
    add_action( 'woocommerce_before_checkout_form', 'wdgk_move_donation_on_checkout_page', 5 );
    function wdgk_move_donation_on_checkout_page() {
    	remove_action( 'woocommerce_before_checkout_form', 'wdgk_add_donation_on_checkout_page' );
    	add_action( 'woocommerce_review_order_before_payment', 'wdgk_add_donation_on_checkout_page' );
    }

    Just noticed this has been fixed in one of the updates. Don’t know which one as the change log just says “fixed bug”

    Thread Starter ZeroGravity

    (@zerogravity)

    I did filter just to show images. I ran the regeneration and it did do through about 3412 images. After I closed the window I realized I should have taken note of the exact number. 🙁

    In my case it looks like it reported the incorrect number at the start but picked up all the images in the process.

    Darren

    Thread Starter ZeroGravity

    (@zerogravity)

    Thanks!!

    ZeroGravity

    (@zerogravity)

    Do you have access to your .htacces file? If so you can add this and it should let you upload larger files. Set the size to be larger than the images you are uploading. 🙂

    php_value upload_max_filesize 8M
    php_value post_max_size 8M
    ZeroGravity

    (@zerogravity)

    This seems like a deeper issue to me. I have used this plugin on many sites when changing themes and never had any issues.

    As we speak I am using it on a WooCommerce store that we are re-templating. There are over 3,500 images on the site. The previous theme had a lot of custom images sizes and the other developer had changed the sizes of the standard WP images.

    I synced down all the sizes for several images before I ran some tests. I compared the results with what I had downloaded. All the image sizes no longer needed are gone and the standard WP sizes are back to normal. Also the images sizes needed for the new theme have been created. The site is on WP 5.4.1

    Even though we are working on an offline copy of the website I took a full backup before doing any of this, just in case. Always backup. 🙂

    @sgmax from what you say it seems you used a different plugin first. Is that the case? I’m not sure if you have checked what that plugin may have done to your images but it could have been the one that created the weird image filenames/sizes and messed up the image meta in the database. This plugin can only work with what it sees. If another plugin has broken the images this one can’t fix that.

    @dldave what exactly do you mean when you say it had no effect? Did it not create images or not delete ones? It’s hard to make suggestions without specifics.

    On a side note @sgmax I understand you’re frustrated but the idiots suggestion was correct. When we start working on an existing website the images are one of the first things we look at. As well as clearing out the junk, one of the best things you can do is use an image optimizer plugin.

    I downloaded one of the images from the link you posted above and ran it through TinyPNG (yes it works on JPGs as well 🙂 ). It reduced the image size by 45%. That’s a big saving especially if there are lots of images on a page. It’s all about page load speed. 🙂

    I have used the Imsanity and “Compress JPEG & PNG images” plugins with success. There are many others, Smush being one of the more popular ones.

    Thread Starter ZeroGravity

    (@zerogravity)

    The would be a feature request. 🙂 If there is an issue of some sort that prevents it being sent or received there is no way to get another copy.

    Pleased it worked for you. 🙂 If I get some time I will look into an extra filter to reduce the number of relevant products the list displays.

    I found a solution to this. The get_posts function returns 5 entries by default. The change below will return all products. This maybe an issue if you have a lot of products. I’m sure there would be a way to further limit the selection, I just don’t have time to work on it at the moment.

    At line #112 of options.php change

    $wdgk_get_page = get_posts(array(
    	'post_type'     => 'product',
    ));

    to

    $wdgk_get_page = get_posts(array(
    	'post_type'     => 'product',
    	'numberposts'	=> -1,
    ));

    I agree with you. 🙁 I am going to try downgrading to version 1.0. Version 1.1 was released a month ago which seems to be about the same time you noticed the issue. From the change log it seems the only change was the notes field.

    I don’t particular like the way it was implemented and possibly the error was introduced with that version. It would be nice it the notes field was an option as it messes with the layout a bit.

    I am having the same issue. Did you get this resolved?

Viewing 15 replies - 46 through 60 (of 266 total)