Forum Replies Created

Viewing 9 replies - 16 through 24 (of 24 total)
  • Thread Starter shoptwofold

    (@shoptwofold)

    I tried the code, it shifted the entire footer along with the background up. I would only like to move the footer up, and the background (of footer) remains the same spot. Any ideas how to fix it? Thank you!

    Thread Starter shoptwofold

    (@shoptwofold)

    It worked perfectly, thanks so much!

    Thread Starter shoptwofold

    (@shoptwofold)

    The breadcrumb was slightly out of line (too far left), so I edited max-width to 1070px and it fixed the problem on desktop version (although not too sure if this is the correct fix). However, the tablet & mobile version of the breadcrumb is aligned to the edged of the screen. How can I get some space on the side to align with the rest of the page?

    #breadcrumbs {
    	max-width: 1070px;
    	margin: auto;
    	margin-bottom: 5px;
    }

    Also, I tried to remove the breadcrumb on right side of product pages (Product Pg), which I believe to be woocommerce breadcrumb. I tried with each of the following codes in function.php, but none of them seem to work. Any suggestions?

    Thank you very much!

    remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);

    add_action( 'init', 'jk_remove_woo_wc_breadcrumbs' );
    function jk_remove_woo_wc_breadcrumbs() {
        if ( is_woocommerce() || is_cart() || is_checkout() ) {
            remove_action( 'woo_main_before', 'woo_display_breadcrumbs', 10 );
        }
    }
    .woocommerce-breadcrumb {
    	display: none !important;
    }
    Thread Starter shoptwofold

    (@shoptwofold)

    I forgot to mention, there’s also breadcrumb on my front/main page that says “Home”, how can I hide it?
    Thanks very much!

    Thread Starter shoptwofold

    (@shoptwofold)

    Everything worked! However, I noticed there’s a considerable gap between the website’s content and the footer. Is there anyway to move the footer up a bit for both desktop and mobile?

    Thanks very much again!

    Thread Starter shoptwofold

    (@shoptwofold)

    Thank you! Only one problem with the breadcrumbs, it is aligned on the very left of the website: https://www.twofoldshop.com
    Would there be a CSS to align it properly?

    Thanks again.

    Thread Starter shoptwofold

    (@shoptwofold)

    Hi Kevin,

    I would like to use Yoast plugin’s breadcrumb. The guide says to input the following code into the theme:

    <?php if ( function_exists(‘yoast_breadcrumb’) )
    {yoast_breadcrumb(‘<p id=”breadcrumbs”>’,'</p>’);} ?>

    (As per https://kb.yoast.com/article/245-implement-wordpress-seo-breadcrumbs
    It is to be inserted under single.php and/or page.php file just above the page’s title. Or paste it in header.php at the very end. If you have trouble locating the correct place to add the code, please contact the theme developer for assistance.)

    I tried putting it in single.php and/or page, or just putting it in header, no breadcrumb is showing up.

    Currently, I only see ” Back to [category] ” showing up on my product details page (it shows up regardless of Yoast).

    Any idea where I should put the above code to make it work? I’m not on the premium version of the theme.

    Thanks so much!

    Thread Starter shoptwofold

    (@shoptwofold)

    Thanks, Kevin. I went through your suggestions:

    1. I made a separate logo file for mobile, it leaves out the extra white space. And I uploaded it under ‘Upload Your @2x Logo for Retina Screens’. Whereas the logo for desktop I left as-is. Is the logo for retina screen only shown for mobile users only?

    2. I tried the boxed layout and the full-width layout, but there were no change to the width of the mobile layout. Any other ideas?

    3. Please keep me updated on the footer.

    Thank you!

    Thread Starter shoptwofold

    (@shoptwofold)

    Hello Kevin,

    Thanks for your help! After adding another code to yours, it worked:
    .home .contentclass {
    padding-top: 0;
    margin-top: 0px;
    }
    .sliderclass {
    padding: 0;
    }

    Regarding the photo, not sure how, but it fixed itself. ??

    Any chance you would know if I can change the carousel into a photo where once the viewer clicked, it would lead to my shop? Currently bc it is portfolio carousel, it opens the photo in portfolio view. Thanks again!

Viewing 9 replies - 16 through 24 (of 24 total)