Forum Replies Created

Viewing 15 replies - 76 through 90 (of 228 total)
  • Hi @mp3_dinle!

    I understand that you want to change the layout of your products page (http://www.dincplastik.net/urunlerimiz/) in a way that when you’re browsing from a mobile device (or a smaller screen), the categories section is displayed before the products, instead of afterward. Is that right?

    If that’s the case, I think that the only way to achieve it would be to add a code like this to your current CSS stylesheet (or in Appearence>Customize>Additional CSS page):

    @media (min-width: 768px){
    	.woocommerce-page.archive .container .row.is-sidebar-left {
    			display: flex;
    			flex-direction: column;
    			text-align: center;
    	}
    	.woocommerce-page.archive .container .row.is-sidebar-left .content-area{
    		order: 2;
    	}
    	.woocommerce-page.archive .container .row.is-sidebar-left .woo-sidebar{
    		order: 1;
    	}
    }

    I hope it helps!

    Hi @carcanha!

    I understand that you want to change the price of the product depending on how the customers arrived to the product page. Is that right? Or you actually want to have different product pages with different prices?

    If you want to create different pages, I’d simply suggest you to create different products.

    If you want to use the same product page but change the price depending on the page that redirected the customer there, it would be a bot more complicated… Affiliate plugins (like Affiliate for WooCommerce) do something similar, as they’re able to set up a tracking code to check if the customer landed to the product page from one of these promoted sites, but instead of changing the product price, these plugins are usually designed to offer the affiliate a commission of each sale.

    I’m not aware of any plugin that contains the specific functionality that you’re looking for, but maybe you can find some affiliation plugin with this feature…

    Otherwise, you’ll need to achieve it using a customization… Using “$_SERVER[‘HTTP_REFERER’]” you could get the previous URL and then, you could try to filter the price of the current product based on this URL. I’m not sure if that would work for you, but that’s just an idea that you could consider as a starting point!

    I hope it helps!

    Thanks,

    Hi @amnesia1801,

    I’ve done a quick search and I see that there is a good number of plugins in the official WordPress plugin repository that allows customers to provide site reviews.

    Here you can find some: https://wordpress.org/plugins/search/reviews/

    Can you please provide more details about what you mean exactly when you say:

    I would also like it to link to my custom orders. I.e: I setup a custom invoice for someone and send them the invoice directly.

    Do you want to create orders from the backend and send the customers a link to complete the payment?

    If that’s the case, please remember that you can just send the “Customer payment page” link to your customers and they’ll be able to complete the payment from that page.

    Screenshot: https://cld.wthms.co/3DdpRO

    If you want to send them the invoice of this order, you can also do it from the “Order actions” selector. Check this screenshot to see this “Email invoice / order details to customer” option there: https://cld.wthms.co/TXFXBd

    Here you can find more details about how to create and manage orders from the backend: https://docs.woocommerce.com/document/managing-orders/

    If you want to add a link to the review form on the email notification, you’ll need to edit the template of this specific notification and add it there using code. Please take a look at this tutorial to learn more about this process: https://www.cloudways.com/blog/how-to-customize-woocommerce-order-emails/

    I hope it helps!

    Hi there,

    At first glance, this looks like a cache issue… Have you tried to disable all your cache plugins and caching systems in your server to see if the issue persists?

    Another thing that I’d also suggest you to do is to disable the rest of your plugins (leaving only WooCommerce and “WooCommerce X” enabled) to see if the issue is solved. If it is solved, you can try to reactivate the deactivated plugins one by one or in small groups and repeat the test until you can replicate the issue again and therefore, find the plugin that is generating a conflict.

    Of course, I recommend you to run this test in a staging or development version of your site.

    Please give it a try and tell us if the issue persists.

    Hi there,

    I suspect that some PHP error (probably coming from a compatibility conflict between WooCommerce and your theme or any of your active plugins) is preventing the checkout functionality from being completed as expected.

    Could you please enable WP_Debug on your site and replicate the issue again to see if you see any errors?

    You can read more about how to enable WP_Debug here:
    https://wordpress.org/support/article/editing-wp-config-php/#wp_debug

    Here are the basic steps:

    1. Login to your site through FTP
    2. Make a backup of wp-config.php
    3. Open this file and add the code below
    4. Save and re-upload this file

    Find this line of code: define('WP_DEBUG', false);

    Change it be this:

    `
    // Enable WP_DEBUG mode
    define(‘WP_DEBUG’, true);

    // Enable Debug logging to the /wp-content/debug.log file
    define(‘WP_DEBUG_LOG’, true);

    // Disable display of errors and warnings
    define(‘WP_DEBUG_DISPLAY’, false);
    @ini_set(‘display_errors’,0);
    `

    Once you’ve done that, try making that error happen again. You will find a debug.log file created in your /wp-content/ folder – please send that to us so we can see what might be going on.

    Thanks so much!

    Hi @darrennicholson,

    I’m still a bit confused about where exactly you want to add and show this field..

    Do you mean that you’d like to add these custom fields (a barcode image for example) in your products from the backend and display it in a specific tab on the product page?

    If that’s the case, I’d suggest you to try “WooCommerce Tab Manager” plugin. With this plugin you’ll be able to add new tabs to your product page and add the content of the fields that you specify from the backend while creating the product (an image field for the barcode for example).

    Please give it a try and let us know if that’s what you’re looking for. If you’re looking for a different workflow, please provide us more details (and an example if possible) of where these fields should be located.

    Thanks!

    You should reach the “Germanized” plugin support to ask for Stripe’s Apple/Google Pay support.

    Thanks for sharing these details @retroreiz.

    If Germanized plugin is the one that is adding this “terms and conditions” checkbox and validation in the Checkout page, it makes sense if the additional validation for the Apple/Google Pay button on the product page is added from their side as well.

    I’d suggest you to reach their support team to see if they could support this scenario as well, as part of their default features.

    Right now, any other workaround would require the use of custom code.

    Forum: Plugins
    In reply to: [WooCommerce] Orders

    Hi there,

    Can you try to disable or increase the “Hold Stock” option in WooCommerce>Settings>Product>Inventory page?

    I suspect that this is happening because WooCommerce cancels these orders after the “waiting for payment” time is exceeded.

    Here you can read more about this feature: https://docs.woocommerce.com/document/configuring-woocommerce-settings/#inventory-options

    Thanks,

    Hi there!

    I’ve taken a look at your site and I see that the reason why these prices sometimes appear in different lines is because they’re too big to fit in the space that is delimited for the product.

    If you want to change it, you’ll need to either make your product blocks bigger or to reduce the size of the prices to make them fit in that space.

    Personally, I think that the best option would be to reduce the size of these prices, so if you want to try it, you should go to Appearance>Customize>Additional CSS and add the following code there:

    #main .woocommerce-Price-amount.amount, #main .woocommerce-Price-amount.amount span.woocommerce-Price-currencySymbol {
        font-size: 20px !important;
    }

    I hope it helps!

    Hi there,

    This error seems to indicate that some problem (probably a compatibility conflict between WooCommerce and some of your active plugins) is altering the main product object when this file is processed, as when WooCommerce tries to get the product SKU, instead of a product object, there is only ‘null’.

    The best way to determine if the issue is being caused by a theme and/or plugin is to temporarily switch your theme to Storefront (https://woocommerce.com/storefront/?aff=10486&cid=1131038) and disable all plugins except for WooCommerce. Finally, test to see if the issue is resolved.

    To figure out which plugin is causing the problem, continue to the next step – reactivate your other plugins one by one, testing after each, until you find the one causing conflict.

    Here’s a more extensive explanation in our docs: https://docs.woocommerce.com/document/how-to-test-for-conflicts/

    —–

    Tools to help you troubleshoot:

    Meks Quick Plugin Disabler is a plugin you can install which will remember what plugins you currently have active so it’s easy to switch them back on. Link: https://wordpress.org/plugins/meks-quick-plugin-disabler/

    Health Check is a plugin that allows you to temporarily disable other plugins and switch themes for that session without impacting your users. Link: https://wordpress.org/plugins/health-check/

    You can clone your site to a staging environment and perform tests without modifying your live site or impacting customers. Many hosts provide staging facilities, so it’s worth checking in with them. It’s also possible to do it using the free WP Staging plugin. Link: https://wordpress.org/plugins/wp-staging/

    Hi there,

    In order to achieve this, you’ll need to add some custom CSS to your site.

    I’d suggest you to go to Appearance>Customize>Additional CSS and add the following code there:

    .woocommerce-checkout #order_review #payment ul.payment_methods li.wc_payment_method {
    display: inline-block;
    width: 49%;
    }

    Let us know if it does the trick!

    Hi there!

    I think that the easier solution would be to use “Conditional Shipping and Payments” (https://woocommerce.com/products/conditional-shipping-and-payments/) plugin to add a rule to restrict these shipping methods based on the shipping classes of the products that you have in the cart.

    As far as I see it, any other alternative would require custom coding. If you want to give it a try, you could start with something like this: https://stackoverflow.com/questions/49307885/hide-shipping-methods-based-on-products-categories-in-woocommerce

    I hope it helps!

    Hi there,

    Can you please send us a screenshot where we can see this button missing (and this error)?

    I recommend https://snipboard.io for easily sharing screenshots – please follow the instructions on the page, then paste the URL in this chat. It works with Chrome, Firefox and Edge.

    Exporting a big number of products can generate problems, as the time needed for this process may exceed the max_execution_time allowed by your server. You can ask your hosting providers to see if they can increase this limit (and see if you’re able to export all your products), export your products in smaller groups, or use a more advanced Product Import/Export plugin like this: https://woocommerce.com/products/product-csv-import-suite/

    I hope it helps!

    Hi Martin,

    Can you please send us a screenshot of this validation error to make sure that we fully understand when and where it is appearing?

    I recommend https://snipboard.io for easily sharing screenshots – please follow the instructions on the page, then paste the URL in this chat. It works with Chrome, Firefox and Edge.

    Also, have you tried to disable all your plugins except WooCommerce and Stripe to see if the issue persists? If it is solved, it will mean that some other plugin is generating a compatibility conflict, and the best way to find the culprit will be to reactivate them one by one (or in small groups) and repeat the test until you’re able to replicate the issue again.

    I hope it helps!

Viewing 15 replies - 76 through 90 (of 228 total)