Forum Replies Created

Viewing 15 replies - 421 through 435 (of 801 total)
  • Ryan Ray

    (@ryanr14)

    Hi @ninadovetail,

    Welcome to Storefront. 🙂

    I assume you are wanting horizontal lines that look something like these obnoxious purple ones I drew up in my example below?

    Purple line mockup
    Link to image: https://cld.wthms.co/JXlgem

    If so, there are ways to do this potentially with the new block editor or using the Additional CSS section. How have you built this page so far, out of curiosity?

    Plugin Support Ryan Ray

    (@ryanr14)

    Hi @loganzendesign,

    This does seem like an odd issue between your hosts/server setup and WooCommerce. The image you are seeing here is the default placeholder image that comes in WooCommerce. It’s included in the plugin files itself (assets/images/placeholder) and by default set under the Products tab in your WooCommerce Settings.

    Placeholder image
    Link to image: https://cld.wthms.co/lMbi8F

    If you are still having this issue, what is the URL of all of the effected images? It seems like it is pointing to a WooCommerce folder within the Uploads folder. I would initially expect the URL of your images to be uploaded in a date based folder.

    Ryan Ray

    (@ryanr14)

    Hi @seanbeee,

    Ok, great! I’m not real familiar with BeaverBuilder and how it works, but I’d just check with them (or their documentation) to see if their plugin includes a slider and you can put products from WooCommerce and their information in the slider in some way or another. I’m sure you can somehow.

    Just to clarify, if I can, there isn’t any included slider (Flexslider) in Storefront itself. There is likely a plugin adding this to your site and thus adding it to Storefront, if that makes sense.

    Nonetheless, once you confirm with BeaverBuilder you can do what you’d like to you can simply remove any other slider plugins. 🙂

    Let me know if we can provide any further help or information. Going beyond BeaverBuilder I know we could find a plugin that offers a slideshow block for the new editor in WordPress. You could then build each slide with customizable options like the image, button, text, title, etc… You’d find plenty of options searching the web for something like “woocommerce product slider block” as a back up to BeaverBuilder. 🙂

    Thanks!

    • This reply was modified 7 years ago by Ryan Ray.
    Ryan Ray

    (@ryanr14)

    Hi @jpb10,

    I’m sorry I glossed over this earlier. Looking at your example/sample SCSS you are trying to use it dawned on me that the Additional CSS section in WordPress doesn’t work with SCSS/SASS/LESS, etc… It takes good ol’ plain CSS.

    It makes more sense now why you asked the best way to add SCSS to Storefront. 😛

    You mentioned you are using a child theme. In that setup I think it would be best to use a code editor and its add-on libraries if needed to have it create a compiled style.css stylesheet.

    So you can still create a simple style.scss stylesheet, and then use some sort of compiler that translates that to a style.css file. That would work great in your child theme and code editor of choice. Does that make sense?

    Ryan Ray

    (@ryanr14)

    I hate to say it, but it still isn’t letting me in. 🙁

    https://cld.wthms.co/Yy3LPj

    It looks like that log in prompt is added by the WP Staging plugin? Would you mind disabling that authentication step for now? Thanks!

    Ryan Ray

    (@ryanr14)

    Hi @wpkaren1978,

    Could you help me understand how you’ve built this page? From inspecting it, it looks like you’ve used the new block editor and some blocks to build the Collections page.

    There is a column block, then image, caption/text, and button blocks in those 3 columns. Is that correct?

    Blocks used on the page?
    Link to image: https://cld.wthms.co/ZidzLj

    If so, that’s great. I love the new block editor. My question would then be does the block you are using for the buttons provide any color options? For example you might be using the default button block from WordPress core, if so you should have these color options shown in the image below.

    Button block color options
    Link to image: https://cld.wthms.co/TiU3AO

    Have you already used those to change the color but aren’t seeing that reflect on the page once you update it? Thanks for any further information you can provide!

    Ryan Ray

    (@ryanr14)

    Hi @seanbeee,

    Welcome to the wild and wonderful world of Woo and more-so Storefront. I appreciate the warning up-front as well. 🙂

    To help clarify or confirm a few things first, what plugin are you using to add Flexslider to your homepage? Does MegaSlider use the Flexslider javascript to power its slideshow functionality, or is MegaSlider something different from the original plugin you were using for Flexslider.

    Right now what I’m seeing in the slider is a white background with a product title, description, and price on the left two thirds while the product image takes up the right one third.

    Also, for my clarification, your ultimate goal would be one slider plugin to display your products. What do you mean by managing things at a page level? I think you are saying you’d ideally want to go to edit your homepage and manage all parts of the slider there, correct?

    Thanks for any clarification you can provide, we’ll get closer to a solution from here. 🙂

    Ryan Ray

    (@ryanr14)

    Hi @brucemacg,

    Sorry for the back and forth. I’ve tried the following and still getting denied.

    U: debug
    P: debug

    Also

    U: debug
    P: debug…

    Ryan Ray

    (@ryanr14)

    Hi @pankajkumar1234,

    There isn’t anything in particular Storefront does regarding a database. Once you’ve setup WordPress and have it working that means you’ve got WordPress connected to your database.

    Installing Storefront shouldn’t then need anything related to a database, can you let us know what you are seeing or the issue you are running into?

    Ryan Ray

    (@ryanr14)

    Hi @brucemacg,

    I tried that and any combo I could think of and get denied every time. Could you double check that and confirm that user exists and works? Thanks!

    Denied
    Link to image: https://cld.wthms.co/0xdoCg

    Ryan Ray

    (@ryanr14)

    Hi @taisho,

    Thank you very much for doing so, it’s much appreciated. 🙂

    Ryan Ray

    (@ryanr14)

    @blackawxs

    Very happy to help! I hope the block editor grows on you as it matures and gets better. Thanks for being willing to give it an honest try at the least. 🙂

    Ryan Ray

    (@ryanr14)

    Hi @champdor & @blackawxs,

    I was just curious if your homepages were using blocks yet, as then obviously the homepage template hooks wouldn’t help you out any. 🙂

    I would definitely recommend considering using blocks moving forward, and I know it might be not ideal via the customizer but that will change in time. Block editing will be everywhere in WordPress at some point!

    Nonetheless, if you’d prefer to use the Homepage template compared to blocks you need to wrap your remove_action() in a function of some sort and hook it into ‘init’. Take the following snippet and tweak to your needs to remove what you’d like to remove from the Storefront Homepage page template.

    
    function remove_actions_parent_theme() {
    	remove_action('homepage', 'storefront_homepage_content', 10);
    	remove_action('homepage', 'storefront_product_categories', 20 );
    	remove_action('homepage', 'storefront_recent_products', 30 );
    	remove_action('homepage', 'storefront_featured_products', 40 );
    	remove_action('homepage', 'storefront_popular_products', 50 );
    	remove_action('homepage', 'storefront_on_sale_products', 60 );
    	remove_action('homepage', 'storefront_best_selling_products', 70 );
    };
    
    add_action( 'init', 'remove_actions_parent_theme', 1);
    

    Also, the numbers ranging from 10-70 are important as well. Those are priorities of when the action will fire. So if you changed say remove_action( 'homepage', 'storefront_on_sale_products', 60 ); and used a number smaller than 60. The remove_action() would fire before the actual action that adds that section. Thus it would still show up for you.

    I hope that helps, if you’d like to see more hooks check out this guide.

    • This reply was modified 7 years ago by Ryan Ray.
    • This reply was modified 7 years ago by Ryan Ray.
    Ryan Ray

    (@ryanr14)

    Howdy @taisho,

    Thank you so much for being willing to do that. It’s definitely your discretion for where you think something is best posted.

    I would say if it makes the project itself better, and multiple people could benefit from it, add it to the repo. Obviously bugs and other relevant development ideas fit there as well. 🙂

    If it’s something more suited to just your site that we could help with, then our forum here might be best.

    I hope that helps, either we’re happy to hear from you and help best we can.

    Ryan Ray

    (@ryanr14)

    Hi @antibiz,

    I think this CSS can help. 🙂

    
    /** Make menu hover background black **/
    .main-navigation ul.menu ul.sub-menu {
      background-color: rgb(0, 0, 0);
    }
    
    /** Make sub-menu text & hover white **/
    .sub-menu a,
    .nav-menu .sub-menu a:hover {
        color: #fff !important;
    }
    
    /** Make sub-menu background hover background silver **/
    .sub-menu li.menu-item:hover {
        background: silver;
    }
    
    

    BEFORE:
    BEFORE
    Link to image: https://cld.wthms.co/GjeBNS

    AFTER:
    AFTER
    Link to image: https://cld.wthms.co/yCeuDH

    • This reply was modified 7 years ago by Ryan Ray.
    • This reply was modified 7 years ago by Ryan Ray.
Viewing 15 replies - 421 through 435 (of 801 total)