Forum Replies Created

Viewing 30 posts - 2,701 through 2,730 (of 25,536 total)
  • Author
    Posts
  • in reply to: Vertical Line in front of text block #1360083

    Hi anristudio,

    Edit your textblock and go to Advanced (tab) > Developer Settings > Custom CSS Class, then on that field put this: left-border
    Then go to Enfold > General Styling > Quick CSS and add this CSS code:

    #top .left-border {
        border-left: 1px solid black;
        padding-left: 30px;
    }

    You can also add this to any column (I would suggest this over text block) so you can add special headings and textblock inside it and get the same effect.

    Best regards,
    Nikko

    in reply to: Hovering (Mouse Over) Captions #1360056

    Hi Kris,

    After you have activated the child theme, and have followed the steps written in the documentation: https://kriesi.at/documentation/enfold/child-theme/ (see Install a child theme from your WordPress dashboard), you don’t need to switch back to the parent theme to make changes then go back switch again to the child theme since you are using the same database.
    The child theme basically inherits everything from the parent theme and contains the extra modification you made.

    Best regards,
    Nikko

    in reply to: Anchor blog pagination to same page location #1360055

    Hi Jack Sparrow,

    Unfortunately, this cannot be changed as this tweak would require the core theme files to be changed.
    This was introduced to the theme to avoid conflict with the normal WordPress pagination.

    Best regards,
    Nikko

    in reply to: Navigator menu problems #1360053

    Hi Eugene,

    I have checked your site and I believe that the homepage is not set, go to Enfold > Theme Options and set Frontpage Settings to your homepage.
    Also, go to Appearance > Menus, then create a menu and add menu items to it, then check the Enfold Main Menu under Menu Settings.
    You can check our documentation for further information: https://kriesi.at/documentation/enfold/menu/
    Hope it helps.

    Best regards,
    Nikko

    in reply to: Contact form problems #1360051

    Hi Narli,

    Can you try the troubleshooting steps mentioned in our documentation https://kriesi.at/documentation/enfold/contact-form/#troubleshoot and see if this helps.

    Best regards,
    Nikko

    in reply to: I need a little Help #1360049

    Hi Mehran MzH,

    Can you give us a link to your page?

    Best regards,
    Nikko

    in reply to: Enfold Child vs. Newsletter Mail Poet #1360043

    Hi Paul,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: empty "after_section_3" at the bottom of the page #1360042

    Hi emilconsor,

    We apologize for the delayed response.
    And thanks for providing us with access to your staging/dev site.
    I tried to replicate the same issue on my end by creating the teams custom post type using CPT-UI, copying your sidebar settings in theme options as well as copying the content in your teams however I could not replicate the same issue.
    I tried also to deactivate plugins as it is the only difference left on your site and on my end however I forgot that the child theme requires some of the plugin in order to work thus causing a critical error on the staging site. Can you try to deactivate all plugins and see if one or some of it may be causing the addition of the after_section.

    Best regards,
    Nikko

    in reply to: Optimization on mobile devices #1360038

    Hi cuccarini,

    We apologize for the delayed response.
    We have added this code in your Quick CSS (Enfold > General Styling), to make the products and invasion 2 items per row and archive post 3 items in a row:

    @media only screen and (max-width:767px) {
      .responsive #top #main .products .product {
        width: 49%;
        margin-right: 1%;
      }
    
      .responsive #top #main .products > .product:nth-child(2n) {
        margin-left: 1%;
        margin-right: 0;
      }
    
      .responsive #top .av-masonry-entry {
        width: 49%;
        margin-right: 1%;
        position: static !important;
      }
    
      .responsive #top .av-masonry-container > .av-masonry-entry:nth-child(2n) {
        margin-left: 1%;
        margin-right: 0;
      }
    
        .responsive #top #wrap_all #main .avia-content-slider .slide-entry-wrap {
        display: flex;
        gap: 10px;
      }
    
      .responsive #top #wrap_all #main .avia-content-slider .slide-entry {
        clear: none;
        width: 33%;
      }
    
      .responsive #top #wrap_all #main .avia-content-slider .slide-entry .slide-entry-title {
        font-size: 16px;
        word-break: break-word;
      }
    }

    Please review your site.

    Best regards,
    Nikko

    in reply to: Accordion Slider – Mobile Stacking Overflow #1360035

    Hi khyatipal1,

    I could see this js error in the web console which prevents the accordion slider from working properly on mobile:
    (index):348 Uncaught ReferenceError: jQuery is not defined
    It points to this code:

    (function($){
            function b() {
                   var acch1 = 0,
                       acch2 = 0,
                       ww   = $(window).innerWidth();
                        console.log(ww);
                   if (ww >= 768) {
                           $('#about').css('margin-top', 0);
                           $('#video').css('margin-top', 0);
                   } else {
                           $('#portfolio + #portfolio + #accordion_slider_1 .aviaccordion-slide:not(":first-child")').each(function() {
                                   acch1 += $(this).height();
                           });
    
                           $('#about + #accordion_slider_1 .aviaccordion-slide:not(":first-child")').each(function() {
                                          acch2 += $(this).height();
                           });
    
                           $('#about').css('margin-top', acch1);
                           $('#video').css('margin-top', acch2);
                   }
            }
    
            $(window).on('debouncedresize', function() {
                   b();
            });
    })(jQuery);

    Try to save it in a js file and then enqueue the script and make jquery it’s required file.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Problem with PHP 8.0 #1360004

    Hi Alwin,

    I apologize for the delayed response.
    Yes, that’s correct when I said replace after_setup_theme with init.

    Best regards,
    Nikko

    in reply to: Problem with PHP 8.0 #1359785

    Hi Alwin,

    Can you try to replace all single quotes (just replace it manually).
    If that does not help, try to replace after_setup_theme with init

    Best regards,
    Nikko

    Hi Veronika,

    I have checked your site however I don’t see the code being fetched.
    I have added the code I gave in Quick CSS and removed this code (still in Quick CSS):

    /*pinterest_exclude_on_welcome*/
    function pin_script(){
    	if (!is_front_page() ) {
    		echo '<script type="text/javascript" src="//assets.pinterest.com/js/pinit.js" data-pin-hover="true"></script>';
    	}
    }
    add_action('wp_footer', 'pin_script');

    Please review your site.

    Best regards,
    Nikko

    in reply to: problems with Pinterest #1359779

    Hi Veronika,

    Please try to add this CSS code:

    span[data-pin-log="button_pinit_floating"] {
        font-size: 18px !important;
        padding: 20px 20px 20px 30px !important;
        height: auto !important;
        background-size: 32px !important;
        background-position-x: 10px !important;
    }

    Best regards,
    Nikko

    in reply to: Blog Layout Align Left #1359777

    Hi amanda-mdllc,

    I have placed the Blog element inside a 1/1 column (which I also added inside the Color Section) and it fixed the issue.
    I tried to replicate the issue on my end, however, I could not replicate it, it seems the issue is in the child theme.

    Best regards,
    Nikko

    in reply to: Demo Import Not Working #1359775

    Hi Jason,

    I can’t seem to find the cause of the issue however this only happens on the child theme, if you switch to the parent theme (Enfold) it works properly.
    It might be caching on the server side and not on the plugins.

    Best regards,
    Nikko

    in reply to: WooCommerce Shipping Calculator Conflict #1359525

    Hi tmjake,

    I was able to see the issue and it seems this code in your child theme is responsible for the issue:

    function reset_default_shipping_method( $method, $available_methods ) {
        $default_method = 'wf_ups_woocommerce_shipping:UPS_GROUND'; //provide here the service name which will selected default
        if( array_key_exists($method, $available_methods ) )
        	return $default_method;
        else
        	return $method;
    }
    add_filter('woocommerce_shipping_chosen_method', 'reset_default_shipping_method', 10, 2);

    I have commented out the filter, please review your site.

    Best regards,
    Nikko

    Hi mediafacto,

    Thanks, try to add this code in functions.php of your child theme:

    add_filter( 'avf_masonry_loop_prepare', 'avf_masonry_loop_prepare_mod_cat', 10, 2 );
    function avf_masonry_loop_prepare_mod_cat( $key, $entries )
    {
        $categories = get_the_category($key['ID']);
        $separator = ' ';
        $output = '
    <div class="masonry-cat">';
    	    if ( ! empty( $categories ) ) {
    	        foreach( $categories as $category ) {
    				$output .= '<span alt="' . esc_attr( sprintf( __( 'View all posts in %s', 'textdomain' ), $category->name ) ) . '">' . esc_html( $category->name ) . '</span>' . $separator;
    	        }
    	    }
    	 $output .= '</div>
    ';
    
        $key['text_after'] .= trim( $output, $separator );
        return $key;
    }

    Best regards,
    Nikko

    in reply to: Demo Import Not Working #1359523

    Hi Jason,

    For the demo import issue, you’re correct, the only thing that I did to make it work was update Enfold to the latest version.
    For the second issue you mentioned, I believe it is more of a caching issue, please turn off wp-rocket and other caching plugins and see if it helps.

    Best regards,
    Nikko

    Hi mediafacto,

    I tried to check the page however it redirects me to a 404 page, please check.

    Best regards,
    Nikko

    in reply to: Demo Import Not Working #1359510

    Hi Jason,

    Thanks for enabling PHP ZipArchive extension.
    I have updated your Enfold theme first from 4.8.2 to 5.0.1, then imported the Shop Demo and it’s working as it should.
    Please review your site.

    Best regards,
    Nikko

    in reply to: Advanced layout builder not loading #1359435

    Hi the_digital_manager,

    No worries, how about setting up a staging site instead?
    Here’s how you can make one: https://www.wpbeginner.com/wp-tutorials/how-to-create-staging-environment-for-a-wordpress-site/
    So we can debug the issue without taking down your site.

    Best regards,
    Nikko

    Hi hostworks,

    Please try to use this CSS code instead:

    @media only screen and (max-width:767px) {
      #top iframe {
        height: auto;
        aspect-ratio: 16 / 9;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Demo Import Not Working #1359433

    Hi Jason,

    It’s just set to bold but not a link, as for the enabling the extension, it’s not possible in WP Backend, you can use cPanel for it.
    You can check on this article: https://bobcares.com/blog/enable-php-zip-extension-cpanel/

    Best regards,
    Nikko

    in reply to: Full width easy slider with 3 buttons #1359432

    Hi navindesigns,

    Try using this CSS code, just adjust the values as you see fit.

    #top #wrap_all .avia-buttonrow-wrap .avia-button {
        width: 398px;
    }
    
    #top #wrap_all .avia-buttonrow-wrap > .avia-button:first-child {
        display: block;
        width: 160px;
        margin-left: auto;
        margin-right: auto;
    }

    Best regards,
    Nikko

    Hi hostworks,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
      #top iframe {
        height: auto;
      }
    }

    Best regards,
    Nikko

    in reply to: WooCommerce Shipping Calculator Conflict #1359427

    Hi Tanya,

    I just checked your site, added products, go to the cart page and tried to checkout and I don’t seem to see any issue.
    The calculator seems to be working properly and the checkout page doesn’t show any errors.

    Best regards,
    Nikko

    in reply to: Demo Import Not Working #1359426

    Hi Jason,

    Please enable PHP ZipArchive Extension and that should fix the issue.

    Best regards,
    Nikko

    in reply to: Mobile menu behind the contents #1359279

    Hi Antonio,

    Did you try to clear your browser cache?
    Also, is it not working on other browsers as well? it seems to work on my end.

    Best regards,
    Nikko

    Hi ScenesBySevy,

    Yes, the plugin has been tested for the upcoming version.
    Also, you can setup a staging site and update the theme there first and check if there are issues, and just update the live site once it’s confirmed to have no issues with the staging site.

    Best regards,
    Nikko

Viewing 30 posts - 2,701 through 2,730 (of 25,536 total)