shoptwofold
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Virtue] Edit mobile layoutI 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!
Forum: Themes and Templates
In reply to: [Virtue] Woocommerce Shop BreadcrumbIt worked perfectly, thanks so much!
Forum: Themes and Templates
In reply to: [Virtue] Woocommerce Shop BreadcrumbThe 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; }
Forum: Themes and Templates
In reply to: [Virtue] Woocommerce Shop BreadcrumbI forgot to mention, there’s also breadcrumb on my front/main page that says “Home”, how can I hide it?
Thanks very much!Forum: Themes and Templates
In reply to: [Virtue] Edit mobile layoutEverything 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!
Forum: Themes and Templates
In reply to: [Virtue] Woocommerce Shop BreadcrumbThank 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.
Forum: Themes and Templates
In reply to: [Virtue] Woocommerce Shop BreadcrumbHi 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!
Forum: Themes and Templates
In reply to: [Virtue] Edit mobile layoutThanks, 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!
Forum: Themes and Templates
In reply to: [Virtue] Portfolio Carousel alignment & spacingHello 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!