Forum Replies Created

Viewing 30 posts - 7,831 through 7,860 (of 34,598 total)
  • Author
    Posts
  • in reply to: Header : add a menu on the top left? #1403290

    Hi,
    As Guenni007 points out, you can set the social icons in the topbar at Enfold Theme Options ▸ Header ▸ Extra Elements ▸ Header Social Icons ▸ Display in top bar at the right and Enfold Theme Options ▸ Header ▸ Extra Elements ▸ Header Secondary Menu ▸ Secondary Menu in top bar at the left
    Enfold_Support_803.jpeg
    Enfold_Support_805.jpeg
    The button style doesn’t show but you could adjust with css to suit your needs.

    Best regards,
    Mike

    Hey synkrown,
    Thank you for your patience but this is not a feature, it would make the element take more space in the backend, but I have submitted your feature request to the Dev Team for review, I will reply when I hear from them. Thank you for your patience and for using Enfold.

    Best regards,
    Mike

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: unable to import icons from flaticon #1403287

    Hey hyrion,
    Perhaps you didn’t see the included buoy icon:
    Enfold_Support_801.jpeg
    Otherwise the icon you download as a SVG to upload to fontello in the “custom icons” section must be black & white, no colors.
    Try this thread: The Fontello site is a bit picky about the compound path.
    If you want to use color icons see this thread
    If you still are having issues please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Category page with Headline and 2 columns #1403284

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: portfolio grid #1403283

    Hi,
    Thank you for the link to your site, I found that you had jQuery loading in your footer via the theme settings so I adjusted the script and now it is working, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Third Level Layout Elements Not Loading/Saving #1403282

    Hi,
    Thanks for the feedback, please Enable Avia Layout Builder Debugger in your child theme functions.php, I tried but received a message that it must be done via SFTP on your server.

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
      return "debug";
    }

    Best regards,
    Mike

    in reply to: Change Shop #2 #1403281

    Hi,
    Please include an admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    Hey MyWin,
    To add an image in the accordion toggle that will open in a lightbox, use the add media button above the text field
    Enfold_Support_795.jpeg
    choose your image and in the ATTACHMENT DISPLAY SETTINGS choose Link to media file
    Enfold_Support_797.jpeg
    now clicking on the image will open it in a lightbox
    Enfold_Support_799.jpeg
    To open a video in a lightbox, choose an image as your video thumbnail and in the ATTACHMENT DISPLAY SETTINGS choose Link to Custom URL and add your link, if using YouTube use this format: https://www.youtube.com/watch?v=G0k3kH
    now clicking on the image will open the video in a lightbox.

    Best regards,
    Mike

    in reply to: Logo is too big in Tablet format #1403274

    Hey Monika,
    Thanks for your patience and the link to your site please try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (min-width: 768px) and (max-width: 989px){
    #header_main .logo svg {
        width: 120px;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Change Shop #2 #1403273

    Hi,
    Try this instead:
    echo '<p> di : ' . $value . '</p>';

    Best regards,
    Mike

    in reply to: Style WPML Custom language switcher #1403271

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Add category to blog widget #1403270

    Hey cambium.digital,
    Thank you for your patience, the file to edit to add the categories to the Latest News widget is:
    /wp-content/themes/enfold/framework/php/widgets/widget-classes/class-avia-newsbox.php
    on line 219 (v5.5) look for:
    echo '<strong class="news-headline">' . get_the_title();
    below this add:

    echo '<br />';
    $cats = get_the_category();
    foreach ( $cats as $cat ) {
    echo '<span class = "widget_latest_category">'.$cat->cat_name.'</span> ';
    }

    Enfold_Support_789.jpeg
    Enfold_Support_791.jpeg
    If you don’t want the date to show place two slashes before the line echo '<span class="news-time">' . get_the_time( $time_format ) . '</span>'; like this: //echo '<span class="news-time">' . get_the_time( $time_format ) . '</span>';
    Typically files in the /framework/ directory can not be added to a child theme and copying the function directly to the child theme functions.php was not successful.

    Best regards,
    Mike

    in reply to: Change Shop #2 #1403265

    Hi,
    Try changing the di in the function that gets the label

    add_action( 'woocommerce_single_product_summary', 'product_attribute_dimensions', 25 );
    function product_attribute_dimensions(){
        global $product;
    
        $taxonomies = array('pa_authors');
        foreach($taxonomies as $taxonomy){
            $value = $product->get_attribute( $taxonomy );
            if ( $value ) {
                $label = get_taxonomy( $taxonomy )->labels->singular_name;
        
                echo '<p>' di ': ' . $value . '</p>';
            }
        }
    }

    Enfold_Support_793.jpeg

    Best regards,
    Mike

    in reply to: Outline Color for Error in Contact field #1403251

    Hi,
    Thanks for the screenshot and the link to your site, please try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #main .avia_ajax_form .text_input, #top #main .avia_ajax_form .select, #top #main .avia_ajax_form .text_area {
        border-radius: 0;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: recent posts from parent and same category #1403249

    Hi,
    Your developer can examine the file at \enfold\includes\related-posts.php it uses tags to show the related posts.
    Another option would be to create your tags specific to the items you want to show.

    Best regards,
    Mike

    Hi,
    Thanks for the screenshots please include a link to your page so we can examine, an admin login in the Private Content area may also be helpful.

    Best regards,
    Mike

    in reply to: Parallax Pules Z-Index #1403247

    Hey envisageiam,
    Thank you for the link to your site I see that you are using two sliders and two sections below them, one set for mobile and one set for desktop please try arranging the elements so they are like this:
    mobile slider
    mobile section
    desktop slider
    desktop section
    I believe this will correct the z-index issue.

    Best regards,
    Mike

    Hey Illingco,
    Thanks for your patience and the link to your site, as I understand your question you would like to add a full-width sub-menu element to all of your single product pages.
    First you will need the shortcode for the full-width sub-menu element, to get this Enable the Avia Layout Builder Debugger and on a new page use the Advanced Layout Builder to create your full-width sub-menu element, then in the debugger field below the ABL you will see the shortcode, save this to a plain text editor and discard the page. Then remove any line breaks in the shortcode and add it to this function in your child theme functions.php:

    add_action('ava_after_main_container', 'ava_after_main_title_mod');
    function ava_after_main_title_mod() {
    	if(is_product()) {
    		echo do_shortcode("[your submenu shortcode here]");
    	}
    }

    The expected results
    Enfold_Support_787.jpeg

    Best regards,
    Mike

    in reply to: Parallax Rules Section Padding #1403242

    Hey envisageiam,
    Thanks for your patience and the link to your site, do you mean the space under “Now Hiring” and before your white footer? How much space do you want there?
    Please include an admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: Shortcode Contact Form in Mega Menu #1403241

    Hey jaimemerz,
    Please include a link to your page and an admin login so we can examine.

    Best regards,
    Mike

    in reply to: Third Level Layout Elements Not Loading/Saving #1403239

    Hey forestrygy,
    Thank you for the link to your site and the screenshots but I’m not sure which page this is for, please include a direct link to the page.
    I tested some random elements on random pages and all seemed to work correctly.

    Best regards,
    Mike

    in reply to: ‘Add to cart’ button on shop page #1403238

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Change Shop #2 #1403237

    Hey Oriano,
    Thanks for the screenshots, the attribute Autore is set in your WooCommerce ▸ Attributes please see this post
    Enfold_Support_354.jpeg
    *Note that the screenshot says Author but this is where you added Autore on your site.
    so you need to change this to your new text di

    Best regards,
    Mike

    in reply to: Category page with Headline and 2 columns #1403236

    Hey spee65,
    Thank you for your patience to change the archive pages to two columns please try going to \wp-content\themes\enfold\archive.php on line 61 look for ‘columns’ => 3; and change to 2 (Enfold v5.5)
    2021-10-24_003.jpg
    To add a heading go to WordPress ▸ Posts ▸ Categories ▸ Edit Category ▸ Description and add your heading, or go to Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Title and Breadcrumbs and choose to show the header title.

    Best regards,
    Mike

    in reply to: Please, Please, PLEASE sort out image uploads #1403234

    Hey Cliffy,
    Thank you for your patience, currently the theme doesn’t include this option so you would need to use a function or a plugin, I have submitted your feature request to the Dev Team for their review. I will reply when I hear back from them.

    Best regards,
    Mike

    in reply to: ‘Add to cart’ button on shop page #1403232

    Hi,
    Thanks for your patience and the link to your site, I see your page includes product slider elements and I assume that you want to show “add to cart” below each item.
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_action( 'after_setup_theme', function() {
         add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_add_to_cart', 12 );
    }, 999);

    Best regards,
    Mike

    Hey Taber,
    Thanks for your patience and the link to your site, please try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top a.avia_image:hover img {
      filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    }
    #top .avia_transform a:hover .image-overlay {
        opacity: 0!important;
    }
    #top .all_colors .image-overlay {
        background-color: transparent !important;
    }

    After applying the css, please clear your browser cache and check.
    If you only want this effect on this page please add the page ID class to the css .page-id-15718

    Best regards,
    Mike

    in reply to: active state / selected menu item #1403226

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: I messed Up the Z-Index and cant find the problem :D #1403225

    Hey Monika,
    Thank you for your patience, please try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.page-id-883 #av_section_3.hintergrund-05 {
        z-index: 2;
        position: relative;
        margin-top: -200px;
        background-image: unset;
    }
    #top.page-id-883 #av_section_3.hintergrund-05.main_color {
    	background: transparent;
    } 
    .html_stretched #top.page-id-883 #wrap_all {
        background-image: url(https://boxstudio-andres.de/wp-content/uploads/2023/02/kachel-1.jpg);
        background-repeat: repeat;
        background-position: left top;
        position: relative;
        overflow: auto;
    }

    Please see the screenshot in the Private Content area.

    Best regards,
    Mike

Viewing 30 posts - 7,831 through 7,860 (of 34,598 total)