Forum Replies Created

Viewing 15 posts - 16 through 30 (of 32 total)
  • Posted in:
  • Noahj
    Member
    Post count: 59

    @sswiftideas,

    Of course. I’m not even sure, lol.

    I would just let you know in case it does prove well and someone else needs a similar solution you could mention this plugin to them perhaps. That is more of what I meant to to say above. \

    Thanks again gurus!

    Noahj
    Member
    Post count: 59

    @swiftideas,

    Just thought I would share.

    This plugin came out today to help developers with WordPress menus.

    Advanced Custom Nav Menus

    I asked the author a question and I might give this a try before you get around to maybe doing this. Depending on his answer I would buy and let you know how it works out for me.

    Noahj
    Member
    Post count: 59

    @hswiftideas,

    Great and thanks for listening!

    Noahj
    Member
    Post count: 59

    Hi @swiftideas,

    Got it. I understand.

    And looking forward to see how conditional parameters plays out.

    Thanks for hearing.

    Noahj
    Member
    Post count: 59

    I assuming you are familar with UberMenu,but let me know if you are or not, definitely based on what you said.

    But does the MetaBox at all help with UberMenu NOT being applied to every menu?

    See screenshot http://drop.diamonddedication.com/RAge.

    UberMenu has an option to select which menu it is applied to. But now tha tI think about it little more clearly, I think what you are saying is the UberMenu settings in the backend is applied to every menu?

    That makes sense because it is now that I think about it.

    – I really just need to be able to add conditional parameters to the topbar menu and keep the main menu a MegaMenu. Really I am just using UberMenu to use its conditional addon for the top bar menu. Thats not really ideal because because I don’t need the MegaMenu options in the top bar. It would be nice! To have the option of 2 mega menus!

    Maybe you can just add a conditional option to your theme menus? That would be theme unique and solve this particular issue.

    Thoughts on this all?

    Thanks for updating, Appreciate it!

    in reply to: Dante Feature Request #84865
    Noahj
    Member
    Post count: 59
    in reply to: Dante Feature Request #84677
    Noahj
    Member
    Post count: 59

    Simple request/suggestion

    See screenshot > http://drop.diamonddedication.com/hkas

    Noahj
    Member
    Post count: 59

    Actually now that I think ahead a little,

    When I get this theme again for hip hop site I would like those titles (mentioned above) to reference hip hop lingo, like “About Custom Beats Beats”, “Our Beat Licenses”, “Beat Deals!”.

    See where I’m going and what I mean?

    Thoughts?

    Noahj
    Member
    Post count: 59

    @SwiftIdeas @kylecraven94,

    What o you think about adding this for other text text references as well.

    Namely the “Email customer care”,but also the other store tabs may prove useful for others.

    I would like to change Email custom care to just Email Support.

    Just a suggestion as those tabs do lock an end user into using content related to the titles set there which may not fit all users.

    Noahj
    Member
    Post count: 59

    Hi @SwiftIdeas,

    Thanks for this. I’ve added it to my code snippets already and will look for the update.

    Thanks!

    Noahj
    Member
    Post count: 59

    Hi,

    Yes. Always using the latest version.

    The visibility control plugin doesn’t work with quite a few of themes I noticed on support.

    However I would at least like Dante to work with UberMenu.

    When UberMenu is active the mega menu options of Dante disappear.

    in reply to: WooCommerce Buttons #84419
    Noahj
    Member
    Post count: 59

    Hey MHC,

    I’m obviously not support but thought to help out when as I can.

    Use the following in your Theme Settings, Custom Css section or wherever you apply your custom css values.

    For the “Add to shopping bag” button.
    Replace the color values with your hex value color desired.

    
    .woocommerce ul.products li.product figure figcaption .shop-actions > a, 
    .woocommerce ul.products li.product figure figcaption .shop-actions > a:hover {
        background: #000;
        color: #fff;
    }
    

    For your shopping page buttons (not single product pages).

    For the Add to wishlist STAR icon (before added to a wishlist).
    Replace the color values with your hex value color desired.

    
    .yith-wcwl-add-button > a i,
    .yith-wcwl-add-button > a i:hover{
        color: #cc0000;
    }
    

    For the Add to wishlist CHECK icon (after added to a wishlist).
    Replace the color values with your hex value color desired.

    
    .yith-wcwl-wishlistexistsbrowse a, 
    .yith-wcwl-wishlistexistsbrowse a:hover {
        background: #000 !important;
        color: #fff;
    }
    

    For your single product page buttons. Starting with your PLUS & MINUS buttons.

    
    .woocommerce .quantity .plus, 
    .woocommerce .quantity .plus:hover {
        background: #000;
        color: #fff;
    }
    .woocommerce .quantity .minus, 
    .woocommerce .quantity .minus:hover {
        background: #000;
        color: #fff;
    }
    

    For your Add to shopping bag button.

    
    .woocommerce form.cart button.single_add_to_cart_button,
    .woocommerce form.cart button.single_add_to_cart_button:hover{
        background: #000 !important;
        color: #fff;
    }
    

    For your Add to wishlist button before added to the the wishlist.

    
    .woocommerce form.cart .yith-wcwl-add-to-wishlist a, 
    .woocommerce form.cart .yith-wcwl-add-to-wishlist a:hover {
        background: #000;
    }
    

    For your Add to wishlist after item has been added to a wishlist.

    
    .woocommerce form.cart .yith-wcwl-add-to-wishlist a, 
    .woocommerce form.cart .yith-wcwl-add-to-wishlist a:hover {
        background: #000 !important;
        color: #fff;
    }
    

    So, all together your Custom Css would look like this for example.

    
    .woocommerce ul.products li.product figure figcaption .shop-actions > a, 
    .woocommerce ul.products li.product figure figcaption .shop-actions > a:hover {
        background: #YourHexColorHere;
        color: #YourHexColorHere;
    }
    .yith-wcwl-add-button > a i,
    .yith-wcwl-add-button > a i:hover{
        color: #YourHexColorHere;
    }
    .yith-wcwl-wishlistexistsbrowse a, 
    .yith-wcwl-wishlistexistsbrowse a:hover {
        background: #YourHexColorHere !important;
        color: #YourHexColorHere;
    }
    .woocommerce .quantity .plus, 
    .woocommerce .quantity .plus:hover {
        background: #000;
        color: #fff;
    }
    .woocommerce .quantity .minus, 
    .woocommerce .quantity .minus:hover {
        background: #000;
        color: #fff;
    }
    .woocommerce form.cart button.single_add_to_cart_button,
    .woocommerce form.cart button.single_add_to_cart_button:hover{
        background: #000 !important;
        color: #fff;
    }
    .woocommerce form.cart .yith-wcwl-add-to-wishlist a, 
    .woocommerce form.cart .yith-wcwl-add-to-wishlist a:hover {
        background: #000;
    }
    

    See this quick screencast for example and results.
    Screencast

    Noahj
    Member
    Post count: 59

    Also compatibility with UberMenu.

    I noticed when UberMenu is active Dante’s mega menu options don’t show up.

    I would like to use UberMenu on the top menu and Dante’s mega menu on the main menu and Menu Item Visibility Control throughout.

    Doable?

    Noahj
    Member
    Post count: 59

    HI Melanie,

    Thanks for getting back with me.

    I would rather try php first.

    1. I don’t want to add another plugin, especially a plugin that offers a lot and I will be making a one-time very small use of its features. I’m trying to stay unnecessary plugin free.

    2. Unfortunately, I did install Code Localization to take a look at it, but it triggered way too many error from its code guard. It triggered malfunctions from OptinLinks, WP Migrate DB Pro, Dante and more. This is not an option for me.

    Do you have any reason why running a string text replacement of php on the front end wouldn’t be a good idea?

    If not, I wanted to give it a try. The php string would be part of the functions.php plugin Code Snippet, so I wouldn’t have to update the sf-header.php everytime for the site. So a text replacement is what I would like to try.

    Let me know,

    Thanks.

    in reply to: Function to replace $aux_links_output #83216
    Noahj
    Member
    Post count: 59

    I no longer need this. I did what I needed via the top bar which works out better because then I have the option of 2 mega menus. And with UberMenu’s Conditional Ad-on it is easy to set the links to appear based on if a user is logged in or not.

Viewing 15 posts - 16 through 30 (of 32 total)