Site logo

[Support request] Question About Making Website Using GeneratePress Theme

Home Forums Support [Support request] Question About Making Website Using GeneratePress Theme

Home Forums Support Question About Making Website Using GeneratePress Theme

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • #2510627
    huppap

    Hi I am currently using astra theme and I would like to move things over to generatepress. There are only a few templates and elements that I need to use astra theme for and I was wondering if I can recreate the as it is using generatepress theme and could get your help in doing so.

    Links and more details is added in the private information section.

    Thank you.

    #2510640
    Fernando
    Customer Support

    Hi Sumit,

    Your single product template seems almost similar to the default template. You’ll likely need just a little CSS. If you can provide the link to your current site, we can try to assist you with the code.

    As for the collection page, you can achieve that through the WooCommerce Customizer settings. Here’s an article you may refer to: https://docs.generatepress.com/article/woocommerce-overview/

    #2510643
    huppap

    what do you mean by “If you can provide the link to your current site, we can try to assist you with the code.”

    didn’t I already provide that?

    #2510647
    Fernando
    Customer Support

    I meant the one already using the GeneratePress theme.

    If it’s in a staging site, that would be great.

    The one you linked is still using Astra.

    #2510651
    huppap

    ah ok, I just updated my first comment and added the staging site link there.

    I just set it up and done nothing on it yet.

    #2510670
    huppap

    I am not quite sure what is up, but the theme customize page just loads and loads, I have only generatepress premium and woocommerce plugin activated right now and it still does not work, however it works considerably faster if I deactivate gp-premium, could you help me with that?

    #2510672
    Fernando
    Customer Support

    Thank you!

    Set the sidebar layout first through Appearance > Customize > Layout > WooCommerce: https://share.getcloudapp.com/NQu49mvd

    Also, set the other layout settings there to your preference.

    #2510675
    huppap

    that is done. Customizer seem to be working fine as well now.

    #2510676
    Fernando
    Customer Support

    With regards to the Customizer being stuck on loading, can you first check the PHP memory limit of your site? To do so, go to Tools > Site Health > Info > Server.

    Check if it’s below 128M. If so, try increasing it.

    See: https://docs.generatepress.com/article/increasing-php-memory-limit/

    Check if there’s any error in Site Heath too.

    #2510679
    Fernando
    Customer Support

    Alright! On the shop page, what specific layout from your Original site are you wanting to implement?

    #2510681
    huppap

    I could not find any setting to remove gap between the products itself.

    #2510729
    Fernando
    Customer Support

    I see. Can you try adding this through Appearance > Customize > Additional CSS:

    @media(min-width: 769px) {
      #wc-column-container .products {
        grid-gap: 40px 5px;
      }
    }

    Modify the two values to your preference.

    Then, you can add this as well so that the image doesn’t overflow the container on hover:

    .woocommerce .woocommerce-archive-wrapper .inside-wc-product-image {
      overflow: hidden;
    }
    #2510745
    huppap

    thank you for your help. I have done that but I don’t believe it is having the desired effect, on full screen gap is still to small and it reduces down on a responsive view, while the collection page view done with astra, the column gap stays the same through out.

    #2510751
    Fernando
    Customer Support

    I see. Try this instead:

    @media(min-width: 769px) {
        #wc-column-container .products {
            column-gap: 20px;
        }
    
        #wc-column-container .products .inside-wc-product-image {
            width: 100%;
        }
    }
    

    It’s the same exact gap value as your Astra site.

    #2510769
    huppap

    I did that and it still isn’t right, seems like with astra product images’ width also changes based on the size but here it stay max at 300px

Viewing 15 posts - 1 through 15 (of 18 total)
  • You must be logged in to reply to this topic.