Forum Replies Created

Viewing 30 posts - 2,071 through 2,100 (of 2,122 total)
  • Author
    Posts
  • Hey!

    Glad to hear the code worked!

    You can try the following to change the bold text’s color in the blog:

    .template-blog strong {
        color: #e4e4e4;
    }

    Best regards,
    Jordan

    Hey alexrobson!

    Thanks for reaching out to us with that question.

    You will need to add the following code in your functions.php file:

    add_action( 'woocommerce_after_shop_loop_item', 'remove_add_to_cart_buttons', 1 );
    
        function remove_add_to_cart_buttons() {
          if( is_product_category( array( 'shirts', 'pants'))) { 
            remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' );
          }
        }

    In the above example it will remove the add to cart button from product categories shirts and pants. You need to change and add the categories you want the add to cart button to be removed from.

    Best regards,
    Jordan

    in reply to: How to add facebook comments to the theme? #596515

    Hi bakbek!

    Thanks for reaching out to us!

    Your best option to achieve this would be to use a plugin. Here is an example https://wordpress.org/plugins/comments-from-facebook/. Search the WordPress repository for other plugins to achieve this if you wish.

    Regards,
    Jordan

    in reply to: Phone Number & Info Larger #596489

    Hi anyone_officechanges!

    Thanks for reaching out to us!

    You can add the following code in the Quick CSS field under the General Styling tab in the Enfold theme options:

    #header_meta a, #header_meta span {
        font-size: 20px;
    }

    Adjust the number to the size you want. Let me know if you need further assistance.

    Cheers!
    Jordan

    in reply to: Changing Telephone Number on top Menu and Footer #596479

    Hey Oriss!

    To change the phone number in the header, please go to Enfold -> Header -> Header Phone Number/ Extra Info and that section holds the phone number information.

    For the footer, all the information there are in widgets. Please edit the widgets in the footer by going to Appearance -> Widgets and look for the Footer section.

    Let me know if you need further assistance.

    Regards,
    Jordan

    in reply to: getting 404 error page only on mobile #596450

    Hi!

    I am using a Samsung Galaxy S4 and did not get 404 error when visiting the site. I would suggest clearing the browser cache on all your mobile devices and try again.

    If that still does not work, there could be a redirecting code in the .htaccess file on your web host’s server that is responsible for this. Check the file or have your hosting provider check to see if there is any code that is telling mobile devices to redirect.

    Let me know the outcome.

    Best regards,
    Jordan

    in reply to: Keep text within the text box, responsive #596413

    Hey Eline!

    If the above code you tried is working then it should work for the other pages as well and not just the homepage. Therefore you need to remove the page id from the CSS code because that id is only for one page. So remove .page-id-3596 and you should be left with:

    #av-layout-grid-2 .flex_column {
    background-size: cover;
    }

    Let me know if that works.

    Best regards,
    Jordan

    in reply to: Caption text position #596398

    Hey Eline!

    Thanks for getting in touch.

    You are on the right track with the CSS code you used. Just remove the width attribute; you do not want to force the width especially since it will through the longer caption texts out of alignment because of the left attribute added as well. Once you remove the width attribute, ensure that you make the left attribute positive and not -40, so you can have something like the following:

    .av-image-caption-overlay-center {
    display: block;
    bottom: 20px;
    left: 10px;
    position: absolute;
    }

    Cheers!
    Jordan

    in reply to: uniform blog post pictures #596382

    Hey mrcityrunner!

    Thanks for reaching out to us!

    You can add the following CSS in the Quick CSS field under the General Styling tab in the Enfold theme options:

    img.attachment-portfolio.size-portfolio.wp-post-image {
        width: 480px !important;
        height: 270px !important;
    }
    
    a.slide-image {
        width: 480px !important;
        height: 270px !important;
    }

    This will force all the images to be the same size. Just adjust the width and height to what you would like it to be.

    Regards,
    Jordan

    Hey!

    I was able to log in to your admin panel and see the issue you were have. You followed these instructions http://kriesi.at/documentation/enfold/switching-to-mobile-menu-on-higher-resolutions/. I simply increased the max-width at which the mobile toggle menu appears so that when the main menu reappears some of it is not hidden behind the logo. You can check what I did in the Quick CSS field and feel free to change the max-width.

    The Documentation can be found at here http://kriesi.at/documentation/enfold/. Sorry that the support forum search is a bit confusing.

    Let me know if you need anything else.

    Regards,
    Jordan

    in reply to: Header & footer show different social icons #596104

    Hi!

    I visited the link you gave but didn’t see any icons in the footer and there wasn’t a Twitter and Instagram icon in the header. But if you wish to hide the Twitter and Instagram icons from the header only, you can use the following CSS:

    header .social_bookmarks_twitter {
        display: none !important;
    }
    
    header .social_bookmarks_instagram {
        display: none !important;
    }

    Cheers!
    Jordan

    in reply to: Build 404 with builder #596086

    Hi Gigi!

    Yes you can build the 404 page using the Avia builder if you do not wish to edit the file 404.php. But for it to actually be shown and used the 404 page, please consider trying to use this plugin https://wordpress.org/plugins/404page/.

    Cheers!
    Jordan

    in reply to: Remove "All" Category on Portfolio Filter #596075

    Hey Corina!

    You can use the following CSS to hide only the “All” category:

    a.all_sort_button {
        display: none !important;
    }

    Best regards,
    Jordan

    in reply to: Make social icons in header color #596070

    Hi goldengate415!

    Thanks for reaching out to us.

    I noticed you asked this question in another thread as well but I will also give you the answer here.

    To have the background color show for all the icons like the Facebook icon using the CSS code, you have to edit the CSS for each icon separately. So the code for Twitter and Facebook would look like:

    #top #wrap_all .av-social-link-twitter a {
        color: #fff;
        background-color: ##46d4fe !important;
    }
    
    #top #wrap_all .av-social-link-facebook a {
        color: #fff;
        background-color: #37589b !important;
    }

    Doing this for the other icons will require you to know the background color for the icons as well. Let me know if you need further assistance.

    Best regards,
    Jordan

    in reply to: Colorful facebook icon #596067

    Hey goldengate415!

    To have the background color show for all the icons like the Facebook icon using the CSS code, you have to edit the CSS for each icon separately. For example, to use the code for the Twitter icon, you need to change the background color to the one used for the Twitter icon and change .av-social-link-facebook to .av-social-link-twitter. So the code would look like:

    #top #wrap_all .av-social-link-twitter a {
        color: #fff;
        background-color: ##46d4fe;
    }

    Doing this for the other icons will require you to know the background color for the icons as well. Let me know if you need further assistance.

    Regards,
    Jordan

    Hi Ayumi!

    You can add the following CSS code in the Quick CSS field under the General Styling tab in the theme options:

    .template-blog a {
        color: #eeeeee;
    }
    
    .template-blog a:hover {
        color: #000000;
    }

    Change the value of the color to the colors you want for links in the blog post.
    Regards,
    Jordan

    in reply to: Map plugin messing things up #596049

    Hey acscreativenew!

    Thanks for reaching out to us.

    I see the issue you are having. It is not only on Safari; I am using Chrome and the map does not show up on the homepage. It could be a slight error in the code you added. Could you please provide login information to your site. You can paste the details in the Private Content section of your reply.

    Cheers!
    Jordan

    in reply to: Move Add to Cart to top of sidebar #596032

    Hey!

    From the above code snippet you provided, this line explains that you need to remove the comment tags from the code that corresponds to where you want the Add to Cart button to be shown. The lower part of the code should look like this to move the Add to Cart to the top:

    /*
     * TO MOVE THE TICKET FORM UNCOMMENT ONE OF THE FOLLOWING BY REMOVING THE //
     */
    
    // Uncomment to Move Ticket Form Below Related Events
    //tribe_etp_move_tickets_purchase_form( 'tribe_events_single_event_after_the_meta', 20 );
    // Uncomment to Move Ticket Form Below the Event Description
    //tribe_etp_move_tickets_purchase_form( 'tribe_events_single_event_after_the_content', 5 );
    // Uncomment to Move Ticket Form Above the Event Description 
    tribe_etp_move_tickets_purchase_form( 'tribe_events_single_event_before_the_content');
    tribe_etp_move_tickets_purchase_form( 'tribe_events_single_event_before_the_meta');

    Try the above and let us know.

    Regards,
    Jordan

    in reply to: slow loading #596027

    Hey jdrakeproductions!

    Thanks for reaching out.

    Consider using a WordPress cache plugin like W3 Total Cache. Also ensure all images are optimized, especially the images you are using in the slider.

    Let me know if you need further assistance.

    Best regards,
    Jordan

    in reply to: spacing or padding secondary menu items in mobile view #596023

    Hi!

    Glad the code worked for you.

    Cheers!
    Jordan

    Hey Joe!

    Yes any custom change made to the code with be overwritten with the next Enfold update. You could consider using a Child theme if you make a lot of customization to the code. Using a Child Theme

    Regards,
    Jordan

    in reply to: Mobile Main Menu Text Not Visible #596018

    Hey JimmyW1984!

    Thanks for reaching out to us.

    I visited your site and the mobile menu text is set to white. So it is just a matter of white text on a white background. Please add the following CSS to the Quick CSS field:

    #mobile-advanced a, #mobile-advanced .mega_menu_title {
        color: #B32B2B;
    }

    Change the value of the color to the color you want. Let me know if you need further assistance.

    Best regards,
    Jordan

    Hey Vicken!

    Thanks for reaching out to us on the forum.

    To set up the Transparent Header you can follow this tutorial Intro to Header Configurator. This will carry you through the process of setting up the header to shrink and be transparent.

    Let me know if you need further assistance.

    Cheers!
    Jordan

    in reply to: Removal of the woocommerce sorting #595962

    Hi!

    Thanks for getting back in touch.

    Could you please provide the link to your site and login details. You can put the information in the Private Content section in your reply.

    Best regards,
    Jordan

    in reply to: Administrative Area – Content don´t update properly #595950

    Hi Giuliano!

    Thanks for getting in touch.

    Please contact you hosting provider to increase the PHP memory limit to 256 MB or higher.

    Let me know if this solves your issue.

    Regards,
    Jordan

    in reply to: Import demo doesn´t work #595839

    Hi joerg32!

    Thanks for reaching out to us!

    Which of the Enfold demos are you trying to import? Let me know and I will try to import the demo for you.

    Best regards,
    Jordan

    in reply to: change font size in menu #595821

    Hey Angela!

    Please add the following CSS to the Quick CSS field:

    .sub-menu .avia-menu-text {
        color: #fff;
    }
    
    ul.sub-menu {
        top: 85%;
    }

    It should change the sub menu text to white and move it closer to the main menu.
    Regards,
    Jordan

    in reply to: The header and footer sections do not appear correct #595818

    Hey tlchase!

    Thanks for reaching out to us.

    Could you please provide a link to your website and login information if possible, so that we can have a closer look?

    Cheers!
    Jordan

    in reply to: Move sidebar navigation to top on mobile. #595809

    Hi Issu!

    Thanks for getting back to us.

    Glad to hear you found a solution that works for you. Let me know if there is anything else you need assistance with.

    Regards,
    Jordan

    in reply to: Importing Demo Files #595807

    Hey John!

    Thanks for reaching out to us.

    Importing the demo theme will overwrite the Enfold theme options you already have set up. Hope this answers your question and let me know if you need anything else :)

    Best regards,
    Jordan

Viewing 30 posts - 2,071 through 2,100 (of 2,122 total)