Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #555105

    Hi, I’m having trouble customizing the “shop” page. I decided to do it the way it’s in the demo theme (http://kriesi.at/themes/enfold-restaurant/delivery/), but I cant customize some things:
    1/ I cant eliminate the default way of showing the shop (at the bottom, al the products appear the default way of shop)
    2/ I cant make the footer wide and the header “glassy” like the other pages.

    Thanks!

    #555230

    Hey verodapos!

    1.) which elements exactly do you want to hide? can you highlight please? maybe screenshots would help us to understand it. use imgur.com or dropbox.

    2.) Use this code in Quick CSS field:

    div#footer {
    left: -6%;
    width: 112%;
    }
    

    and adjust as needed.

    Cheers!
    Andy

    #555241

    I summarize the 3 problems in this image, i think you’ll understand, other wise let me know please.
    Thanks!
    http://hastalamasa.com.ar/hlm/wp-content/uploads/2015/12/FireShot-Capture-65-Hasta-La-Masa-I-Productos-http___hastalamasa.com_.ar_hlm_encargo_.jpg

    #555249

    If you need the wp-admin acces let me know

    #555876

    Hey!

    1.) When editing page in question scroll down and look on the right side for “Header visibility and transparency” and choose glossy header for this page.

    2.) Not exactly sure what you mean, but you can hide these elements using this code in Quick CSS field:

    main.template-shop.content.av-content-full.alpha.units {
    display: none;
    }
    

    3.) Adjust footer width with this code:

    div#footer {
    left: -50%;
    width: 112%;
    }
    

    Cheers!
    Andy

    #556135

    Hey! andy, here the topics:
    2/ solved!
    1/ I forgot to tell you that I set the page with “Header visibility and transparency” —> glossy header, you can see that all the other pages has it. The problem is that it doesn’t work whith this one-
    3/ I put the css code you toldme and it doesn’t work.

    Thks

    #556184

    I think I solve the problem by setting a hidden page as “cart” and customizen the cart myself. Can I do that or it will give me problems later?
    The newer problem I’ve found is that when I add something to the “basquet” and then I choose “keep buying” It lead me anywhere.

    Thanks for the help

    #556439

    Hey!

    which problem did you solve with this? 1.) or 3.)?

    Can you provide us admin access, so we can take a deeper look into it? post login details here as private reply.

    Regards,
    Andy

    #556628

    of course, here it is:
    user: andy
    pass: kriesi.at

    I think I solved both problems, but with the new “version” I had a new one:
    The newer problem I’ve found is that when I add something to the “basquet” and then I choose “keep buying” It lead me anywhere.

    Thks!

    #556986

    Hey!

    I clicked on “seguir comprando” and then I get redirected to: http://hastalamasa.com.ar/hlm/producto/3-zapallito-verde/
    which seems to be fine to me. Could you fix it?

    Try to deactivate all plugins, to check if one is causing this issue and let us know about your results. Switch off caching (cache plugin) and afterwards clear browser cache + hard refresh a few times.

    Best regards,
    Andy

    #558218

    The point is that I want to be redirected to http://hastalamasa.com.ar/hlm/encargos/ Because I want the customers to continued buying and see the whole menu, the page you’re saying: http://hastalamasa.com.ar/hlm/producto/3-zapallito-verde/ is the product they already bought.

    What I want is exactly the same as in the demo page, nothing new! I don´t know why this is so difficult. I bought the theme and I still couldn’t use it

    #559030

    Hi!

    Thank you for the info. Please add this in the functions.php file:

    /**
     * Redirect the Continue Shopping URL from the default (most recent product) to
     * a custom URL.
     * Place this code snippet in your theme's functions.php file.
     */
    function custom_continue_shopping_redirect_url ( $url ) {
    	$url = "http://hastalamasa.com.ar/hlm/encargos/"; // Add your link here
    	return $url;
    }
    add_filter('woocommerce_continue_shopping_redirect', 'custom_continue_shopping_redirect_url');
    

    Best regards,
    Ismael

    #559377

    perfect Ismael! that works perfectly!
    I need the same code for another button:

    Try adding a product to the basket, and when you’re on the basket page, try deleting the product.When you do that, you’ll find this message (or something like this because i’m working in spanish)

    “Your basket is empty.
    Go back to the shop”

    I need that button, “Go back to shop”, redirect to the same link as the other:
    $url = “http://hastalamasa.com.ar/hlm/encargos/”;

    Thanks!

    #560336

    Hey!

    I’m trying to check the link again but the password in your first post is not working any more. Please check. Try to use this code:

    function woocommerce_return_to_shop_redirect_mod () {
    	return "http://hastalamasa.com.ar/hlm/encargos/"; // Add your link here
    }
    add_filter('woocommerce_return_to_shop_redirect', 'woocommerce_return_to_shop_redirect_mod');

    Regards,
    Ismael

    #560744

    It works perfectly! thank you very very much for your help

    Regards,

    Lucía

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘shop page customization’ is closed to new replies.