Forum Replies Created

Viewing 30 posts - 12,721 through 12,750 (of 34,910 total)
  • Author
    Posts
  • in reply to: Enfold update from 4.4.1 to latest version #1341010

    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: Remove scroll down arrow on mobile #1341008

    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: Post slider dots indicator #1341007

    Hi,
    Guenni007, getting the items count on case “All” is above my knowledge so I submitted a feature request to add this option in the Post Slider like it is in the Content Slider and Günter has opened it, this could take a while as the Dev Team has a lot on their plate, but I feel encouraged that in a future update this may be available.
    For now, I recommend setting the number of entries as in the screenshot above.

    Best regards,
    Mike

    in reply to: Post slider dots indicator #1340907

    Hi,
    Instead of the above code at line 1059 in postslider.php add this code:

    protected function slide_navigation_dots()
    {
        $args = array(
                    'total_entries'		=> $this->atts['items'],
                    'container_entries'	=> $this->atts['columns'],
                    'context'			=> get_class(),
                    'params'			=> $this->atts
                );
    
        return aviaFrontTemplates::slide_navigation_dots( $args );
    }

    2022-02-16_001.jpg
    in the backend Post Slider ▸ Content ▸ Filters ▸ Entry Number you will need to choose the number of entries, such as 6 in this example:
    2022-02-16_002.jpg
    I have submitted a feature request for the Dev Team to review this for a solution to allow the “All” option in Entry Number to work.

    Best regards,
    Mike

    in reply to: Remove scroll down arrow on mobile #1340829

    Hi,
    Thanks for the link to your site, in your cache plugin file to have this css:

    @media only screen and (max-width: 767px){
    .responsive #scroll-top-link {
        display: block!important;
    }
    }

    so you either need to clear your cache plugin or you need to remove this from your css stylesheet, try checking your Child Theme Stylesheet, the General Styling ▸ Quick CSS field, and the WordPress ▸ Customize ▸ Additional CSS field
    if you don’t see this rule in any of those places, then clear and disable your wp-rocket and your browser cache and check again.
    If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Masonry-Galerry Sorting Option not working #1340827

    Hi,
    Glad Yigit was 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: white fading on hover #1340824

    Hi,
    Glad Yigit was 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: Fullwidth Easy Slider Arrows #1340823

    Hey Fberguno,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .avia-slideshow-arrows.avia-slideshow-controls {
    	display: none;
    }

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

    Best regards,
    Mike

    in reply to: Enfold update from 4.4.1 to latest version #1340822

    Hey Amer Obeidi,
    To update your version of Enfold you will need to download the latest version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Space between Image and next section #1340821

    Hey markus-fischer,
    Thanks for the screenshot and the link, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media only screen and (min-width: 768px) and (max-width: 1117px) { 
    #top.home #av_section_2 .avia-builder-el-22 {
        bottom: 0px;
        position: absolute;
        right: 0;
    }
    }

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

    Best regards,
    Mike

    in reply to: Notification bar & header settings #1340820

    Hi,
    You are getting the jQuery is not defined error, do you have the Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer option enabled?
    Try this script instead:

    function custom_top_banner() { ?>
        <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
        $( "<div id='banner'>This is a banner</div>" ).insertBefore( "#header_meta" );
    })(jQuery);
    });
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_top_banner');

    but use the same css from above.

    Best regards,
    Mike

    in reply to: Post slider dots indicator #1340724

    Hi,
    For v4.8.9.1 please follow these steps, ensure your child theme includes this function in your functions.php to override the shortcode elements:

    function avia_include_shortcode_template( $paths )
    {
    	if( ! is_array( $paths ) )
    	{
    		$paths = array();
    	}
    	
    	$template_url = get_stylesheet_directory();
    	array_unshift( $paths, $template_url . '/shortcodes/' );
    
    	return $paths;
    }
    
    add_filter( 'avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1 );

    Then copy the parent theme postslider directory to your child theme /shortcodes/ directory, so the full directory path will be:
    /wp-content/themes/enfold-child/shortcodes/postslider/postslider.php
    Then on line 1059 in postslider.php add this code:

    protected function slide_navigation_dots()
    {
    	$html   = '';
    	$html  .= "<div class='avia-slideshow-dots avia-slideshow-controls'>";
    	$active = 'active';
    
    	$entry_count = $this->atts['items'];
    	$slidenumber = $entry_count / (int) $this->atts['columns'];
    	$slidenumber = $entry_count % (int) $this->atts['columns'] ? ( (int) $slidenumber + 1)  : (int) $slidenumber;
    
    	for( $i = 1; $i <= $slidenumber; $i++ )
    	{
    		$html .= "<a href='#{$i}' class='goto-slide {$active}' >{$i}</a>";
    		$active = '';
    	}
    
    	$html .= '</div>';
    
    	return $html;
    }

    2022-02-15_001.jpg
    then on line 1014 replace $output .= $this->slide_navigation_arrows(); with
    $output .= $this->slide_navigation_dots(); //$output .= $this->slide_navigation_arrows();
    2022-02-15_002.jpg
    then add this css to your Quick CSS:

    #top .avia-content-slider {
        overflow: visible;
    }
    #top .avia-content-slider .avia-slideshow-controls {
        bottom: -30px;
    }
    .avia-slideshow-dots a.active, .avia-slideshow-dots a:hover {
        opacity: 0.8;
        filter: alpha(opacity=80);
        background: #000;
    }

    This was the results:
    2022-02-15_003.jpg

    Best regards,
    Mike

    in reply to: Video player showing url and not video #1340611

    Hi,
    Strange, something seems to be wrong with how your elements behave on the backend, how did you update, did you overwrite the theme directory via FTP?
    This could cause an error because it could leave some older files in place.
    Try uploading to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    Hi,
    So you mean that the semrush report says the URLs are appended with ?s= not that they actually show this in the browser address bar when you check?

    Best regards,
    Mike

    in reply to: Buttons flipping below each other in responsive view #1340497

    Hi,
    Parallax doesn’t work on iPhones this is a known Apple issue that has been going on for a few years, Apple must fix this, we can not.

    Best regards,
    Mike

    in reply to: Changing background while loading the startpage #1340496

    Hi,
    You can add two rules, so remove the one above and add this instead:

    @media only screen and (max-width: 767px) { 
        #top .av-siteloader-wrap {
        background-repeat: no-repeat;
        background-image: url(https://joakims.art/wp-content/uploads/2022/02/bg-intro-2000px.jpg);
        background-position: 50% 100%;
        background-attachment: scroll;
        background-size: cover;
    }
    }
    @media only screen and (min-width: 768px) { 
        #top .av-siteloader-wrap {
            background-repeat: no-repeat;
            background-image: url(https://joakims.art/wp-content/uploads/2022/02/bg-intro-2000px.jpg);
            background-position: 50% 100%;
            background-attachment: scroll;
            background-size: cover;
        }
    }

    then change the first image for mobile and the second for desktop, which means to use different images.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I blurred the first image, perhaps I’m not understanding what your issue is, when I check your page https://domain.com/blog/page/2/ the trailing /?s= is not added. Do you find that it is?
    If you are clicking the link you posted above with the trailing /?s= such as https://domain.com/blog/page/2/?s= then it will be passed to the url, any parameter after a question mark will be passed, this is normal and expected for WordPress.
    But I’m not sure how this relates to the function above to Remove “nofollow” from search, as this is working correctly on your site, here is when the function is disabled:
    2022-02-14_0018c45ffeca890a0cb.jpg
    and here it is enabled, note the “nofollow” is removed
    2022-02-14_002.jpg

    Best regards,
    Mike

    in reply to: link color and article date #1340486

    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: Changing background while loading the startpage #1340425

    Hey Jak73,
    To use a background image with the siteloader try this css:

    #top .av-siteloader-wrap {
        background-repeat: no-repeat;
        background-image: url(https://joakims.art/wp-content/uploads/2022/02/bg-intro-2000px.jpg);
        background-position: 50% 100%;
        background-attachment: scroll;
        background-size: cover;
    }

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

    Best regards,
    Mike

    in reply to: Hovering widget on right hand corner of screen #1340424

    Hi,
    Thank you for your patience, to follow the steps of adding a child theme and importing the parent theme settings, it should take no more than 5 minutes.
    Please note that once your child theme is installed and activated and you followed Step 4: Import parent theme options in our documentation.
    After this step save the theme settings (big blue button), reload the frontend, if it doesn’t look like your parent theme did then go to the theme settings again (not the back button) sometimes the big blue button will be blue again, so click it again to save again and check the frontend again and this time it should be correct.

    Best regards,
    Mike

    in reply to: Table with Widgets / Small Custom Images and Text Fields #1340423

    Hi,
    Thank you for the link to your site and the screenshots, try this css:

    .main_color .avia-table .avia-heading-row {
        background: yellow;
        color: white;
    }
    .main_color .avia-table th:nth-child(-n+2),
    .main_color .avia-table td:nth-child(-n+2) {
    	border-right-width: 0;
    }
    .main_color .avia-table td {
    	vertical-align: middle;
    }
    .main_color .avia-table a {
    	color: #e50000;
    }

    see the expected results screenshot below
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I’ll try to catch up where you are in this thread, I see you two custom ID’s named “mf-footer-mail” and “mf-footer-linkedin”
    2022-02-13_025.jpg
    and I see that you have this css in your stylesheet:

    
    @media only screen and (max-width: 767px) {
      #top #wrap_all #mf-footer-mail, #top #wrap_all #mf-footer-linkedin {
        width: 49%;
        float: left;
        margin-left: 1%;
      }
    }

    and this seems to be working correctly on every page that I check, so is there anything more to help with this?

    Best regards,
    Mike

    in reply to: Load image from url as a button #1340421

    Hi,
    Try this html in a code block element:

    <a href="#" class="avia-button" style="background-color: transparent; border:none;" >
       <img src="https://img.icons8.com/external-sbts2018-lineal-color-sbts2018/58/000000/external-hamburger-fast-food-sbts2018-lineal-color-sbts2018.png" />
    </a>

    then size of the image makes the size of the button
    2022-02-13_024.jpg

    Best regards,
    Mike

    in reply to: After Update to Version 4.8.9.1 big galery problem #1340419

    Hi,
    Glad Rikard 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: Body background color change on mobile view #1340417

    Hi,
    Glad Rikard 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: Mega Menu Styling & Adding an Extra Column #1340416

    Hi,
    Thank you for you patience, please see our Mega Menu documentation at the bottom under CSS Reference and you will find some styling help.
    Yet I see it doesn’t have one for mouse-over so please try this:

    #top #header #avia-menu .avia_mega_div ul.sub-menu > li a:hover .avia-menu-text {
    	color:red;
    } 

    Your About mega menu only has four columns:
    2022-02-13_023.jpg
    currently each column has a width of 456.75px / 4 = 1827px which makes the mega menu nearly full width and the inner columns are set to left:0;
    So you could use this css to try to “center” the inner columns so it doesn’t look like an empty fifth column:

    #header .avia_mega_div.avia_mega4.twelve.units>.sub-menu {
        left: 20%!important;
    }

    or you could write a rule to set the width like Guenni007 suggested:

    #header .avia_mega_div.avia_mega4.twelve.units {
        width: 1200px!important;
    }
    #header .avia_mega_menu_columns_4.three.units {
    	width: 275px!important;
    }

    but you might need to write a few rules to adjust for the screen with.
    Give each of these a try to see what will work best for you.

    Best regards,
    Mike

    in reply to: link color and article date #1340414

    Hi,
    Ok, I added this script to the precious script:

    (function($){
      $('.comment-entry').each(function() {
      $( this ).find('.commentsclosed ').css({ 'text-align': 'center' }).insertBefore( $(this).find('#comments'));
      });
    })(jQuery);

    2022-02-13_022.jpg
    Please let us know once check this so we can close this thread, it is getting off topic and is very long, we try to keep the threads on a singlet opic so future users can find solutions easily, naturally if you have more questions you are welcome to open a new thread and we will help.

    Best regards,
    Mike

    in reply to: Add Slider for Text Blocks for Mobile #1340413

    Hi,
    Thank you for your patience, I believe that you have missed the slider option at: Testimonials ▸ Styling ▸ General Styling ▸ Testimonial Style
    2022-02-13_020.jpg
    The slider shows one testimony at a time on desktop or mobile so if you set the Advanced > Responsive Settings > Element Visibility options to toggle the visibility of the element only on mobile it should work as you wish.
    This is the example I created, linked below.
    2022-02-13_021.jpg
    Best regards,
    Mike

    in reply to: Post slider dots indicator #1340411

    Hi,

    @venocl
    I tested Guenni007’s edited file in my child theme as posted here ensuring the directory structure is: /wp-content/themes/enfold-child/shortcodes/postslider/postslider.php
    and it works correctly with the latest version
    2022-02-13_019.jpg
    Thanks Guenni007

    Best regards,
    Mike

    in reply to: Editor not working without saving as a draft before #1340409

    Hey Nicolas,
    Thank you for your patience, but the login you posted is not working.
    I tried to test this on a new install using an editor role and was able to use the Advanced Layout Builder on a Post and a Page without saving, I could add and edit elements creating a full page/post. What user role did you have trouble with?
    Did you test by disabling your plugins?
    Are you using any user role or security plugins?
    Did you try multiple user logins to ensure it was not only one user with this error?

    Best regards,
    Mike

Viewing 30 posts - 12,721 through 12,750 (of 34,910 total)