Forum Replies Created

Viewing 30 posts - 15,241 through 15,270 (of 34,221 total)
  • Author
    Posts
  • Hi,
    Glad to help.

    Best regards,
    Mike

    in reply to: Media automatically generated when you upload a photo #1245731

    Hi,
    Please see this article, it explains well.

    Best regards,
    Mike

    in reply to: Error edit Visual Composer #1245621

    Hey Getersa,
    Sorry for the late reply, the page builder in Enfold, the Advanced Layout Builder, is built into the core of the theme and can not be removed or replaced with another builder. We do not recommend other page builders nor do we expect them to work with Enfold, the Visual Composer is one such builder that doesn’t work with Enfold.

    Best regards,
    Mike

    in reply to: Fix for Tag page title showing below tag description? #1245617

    Hi,
    Sorry for the late reply, instead of modifying the template, try adding this code to the end of your functions.php file in Appearance > Editor:

    function tag_page_title_above_tag_description(){
      ?>
      <script>
    (function($) {
      $(document).ready(function(){
         $('#top.tag .tag-page-post-type-title').detach().insertBefore('.category-term-description');
      });
     })(jQuery);
     </script>
    <?php
    }
    add_action('wp_footer', 'tag_page_title_above_tag_description');

    This should work for all tag pages.

    Best regards,
    Mike

    in reply to: send button in one line with other buttons #1245601

    Hey rixi,
    Sorry for the late reply, and thanks for the link. As I understand your question you are referring to this form:
    2020-09-13_221311.jpg
    and you would like it to look like this:
    2020-09-13_222808.jpg
    you can do this within the form options, for each element go to the styling tab and choose the width you wish, for example 4 elements would fit in one line if each was 1/4 wide.
    2020-09-13_223034.jpg
    Another option would be to try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .avia_ajax_form .form_element_half {
        width: 24% !important;
    }
    .avia_ajax_form .first_form {
        width: 24% !important;
        clear: right !important;
    }
    #av_section_2 > div > div > div > div > div > form > fieldset > p:nth-child(6) {
    	 width: 24% !important;
    	 clear: right !important;
    }

    This is what I used to take the screenshot above.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Apply gradient to entire color section including image #1245591

    Hey williamslyd,
    Sorry for the late reply and thanks for the link to your page. To apply the gradient over the image we will change the image opacity so the gradient can show though.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.home #banner {
    	 opacity: 0.4;
    }

    Please try adjusting the number to suit, from 0.1 to 0.9, the higher the number the less gradient will show.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Media automatically generated when you upload a photo #1245589

    Hey Giorgio Mario,
    Sorry for the late reply, this is normal WordPress behavior and it creates many sizes as a core function, you can see the image sizes that are created by Enfold in the functions.php starting with line 178.
    You can choose to disable these if you wish but those sizes won’t be available if you do.
    The best way to control these sizes is with the plugin Simple Image Sizes

    Best regards,
    Mike

    in reply to: Iconfont Manager Import/Export feature not working #1245587

    Hey jblacksten,
    Sorry for the late reply and thanks for the login, I see that your webhost doesn’t have the PHP ZipArchive Extension installed, so your site can’t extract the zip files, please ask your webhost to install.
    2020-09-13_212917.jpg

    Best regards,
    Mike

    in reply to: Shop Sidebar to Right Side #1245585

    Hey PT0060,
    Sorry for the late reply, to add a right sidebar to a product page try adding this code to the end of your functions.php file in Appearance > Editor:

    add_action('init','ava534345953_init', 50);
    function ava534345953_init() {
    	add_action( 'woocommerce_after_single_product_summary', 'avia_add_sidebar', 25);
    }
    
    function avia_close_image_div() {
    	global $avia_config;
    	echo "</div>
    ";
    }
    
    function avia_add_sidebar() {
    	if(is_product()) {
    	$avia_config['currently_viewing'] = "shop_single";
    	get_sidebar();
    	}
    }

    and this css to your Quick CSS:

    .single-product-main-image {
        width: 25%;
    }
    
    .single-product-summary {
        overflow: hidden;
        width: 45%;
        float: left;
        margin-right: 5%;
    }
    
    .single-product .sidebar {
        width: 25%;
    }

    You may need to adjust the css to suit.

    Best regards,
    Mike

    in reply to: Gallerys are not displayed – Flashlight Theme #1245582

    Hi,

    @truejoke
    , unfortunately, the Flashlight is no longer being developed and it is not expected to work with WordPress 5+, glad to hear it is working for you with v5.4.2 but I would recommend installing a plugin like Disable All WordPress Updates so your site won’t keep updating and breaking your site.
    In the meanwhile, you will probably want to start considering a new theme to start creating your new site.

    Best regards,
    Mike

    in reply to: Maintenance Mode warning message error #1245580

    Hey sifupeter,
    Sorry for the late reply and thanks for pointing this out, I will submit to the dev team for review.

    Best regards,
    Mike

    in reply to: "Load More" does not work properly #1245578

    Hi,
    Glad to hear this helped, so disabling Emoji/Smiley Support solved? I assume we can close this now?

    Best regards,
    Mike

    in reply to: Accordian Toggle Icon In Active #1245577

    Hi,
    Thank you for the feedback, I checked your site’s merged css and didn’t find the above css, but when I test by injecting the css it works, please see the screenshot in Private Content area.
    So my thought is that your cache didn’t clear or it wasn’t merged. So please try disabling your Enfold Theme Options > Performance > JS & CSS file merging and compression and enable the Enfold Theme Options > Performance > Delete old CSS and JS files at the bottom of the same page.
    Then add the css to: WordPress > Customize > Additional CSS field, this will have the highest priority.
    Then clear your browser cache and check.
    If this doesn’t work for you please check if you can clear your server cache, if you have one.
    Otherwise, please include an admin login so we can check.

    Best regards,
    Mike

    in reply to: custom column gap? #1245574

    Hi,
    Thanks for the link to your page, I’m not sure where you would like a gap, I looked for two columns and picked this one (screenshot 1) the yellow link.
    So for this you could use this css:

    #top.page-id-3392 #main > div > div > main > div > div > div:nth-child(4) {
    	border-spacing: 6px !important;
    }

    but this add the space around the whole element (screenshot 2), now a blue line.
    Another option is to add a 3px border to the two columns on the right and left only and then match the border color with the background so it fakes the space, (screenshot 3).

    #top.page-id-3392 #main > div > div > main > div > div > div:nth-child(4) .first {
    	border-right-width: 3px !important;
    	border-color: #007FC8 !important;
    }
    #top.page-id-3392 #main > div > div > main > div > div > div:nth-child(4) .first + .av_one_half {
    	border-left-width: 3px !important;
    	border-color: #007FC8 !important;
    }

    When you try these codes please only try one at a time a be sure to clear your browser cache each time.
    If this is not the correct area please try posting a screenshot of the area.

    Best regards,
    Mike

    in reply to: Change the enfold breakpoint for the Portrait Mode #1245568

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 1600px) {
    #top.home #after_layer_slider_1 .post-entry-11 .flex_column.av_one_third.flex_column_table_cell {
        display: table-row !important;
    }
    }

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

    Best regards,
    Mike

    in reply to: You are editing the page showing your most recent posts. #1245566

    Hey Tolgahan,
    Thanks for the login and ftp access, I see that you are getting this error: Failed to load resource: the server responded with a status of 500 (Internal Server Error) a 500 error is server related, please check your server error log for details such as an outdated PHP version, for example.
    I tried to rename your child theme directory to force WordPress to load one of the default themes, but it didn’t solve the error.
    It looks like you are using a LiteSpeed Server Cache, typically this is a object cache, please try clearing your server cache and disable temporarily if you can.

    Best regards,
    Mike

    Hey Dartuk,
    Thanks for the login, I see you are using Enfold v4.2 with WordPress v5.5.1
    Please update Enfold to the latest version via FTP.

    The easiest and safest way to do this is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    Best regards,
    Mike

    in reply to: Logo on footer not visible #1245562

    Hi,
    Glad this is sorted out, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Cart Icon not visible on mobile #1245561

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

    @media only screen and (max-width: 1024px) {
    #menu-item-shop {
        display: block !important;
    }
    }
    @media only screen and (max-width: 430px) {
    	#menu-item-shop .cart_dropdown_link {
    	padding-right: 0 !important;
    }
    #header_main .av-logo-container {
    	margin: 0 !important;
    	width: 95% !important;
        max-width: 95% !important;
    }
    }

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

    Best regards,
    Mike

    in reply to: Contact Form mot showing exactly on mobile #1245559

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

    @media only screen and (max-width: 430px) { 
    	#kontakt, #kontakt .av-section-color-overlay {
        height: 105vh !important;
    }
    }

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

    Best regards,
    Mike

    in reply to: Accordian Toggle Icon In Active #1245557

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

    #wrap_all #main #av_section_5 .hasCurrentStyle .toggle_icon,
    #wrap_all #main #av_section_5 .hasCurrentStyle .toggle_icon > span {
        border-color: #fff !important;
        opacity: 1 !important;
    }
    #wrap_all #main #av_section_5 .hasCurrentStyle .activeTitle .toggle_icon,
    #wrap_all #main #av_section_5 .hasCurrentStyle .activeTitle .toggle_icon > span {
        border-color: #424680 !important;
        opacity: 1 !important;
    }
    

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

    Best regards,
    Mike

    in reply to: Magazine display #1245549

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: "Load More" does not work properly #1245548

    Hi,
    Sorry for the late reply, yes I did see that Victoria and Rikard were able to see the error, yet I was unsure why a few days later I was able to test on two different machines and not recreate. Anyways I tested further with Chrome on Windows and found that sometimes, randomly, I see this error in the console (screenshot 1), which leads to this code (screenshot 2),and then if you click on “Load More” you get this error (screenshot 3).
    But this only seems to occur for me sometimes whether I clear my cache or not.
    So the first error seems to be key which seems to point to wpemojiSettings.
    Try disabling: Enfold Theme Options > Performance > Disable Emoji/Smiley Support
    I also assume you tried to disable your plugins and any custom scripts.

    Best regards,
    Mike

    Hi,
    The rules are specific to your provider, but “aspiegel.com” seems specific to “HUAWEI” mobile devices, are you using a “HUAWEI” device?

    Best regards,
    Mike

    Hi,
    Thanks for the error log, your providers firewall is giving false positives, for example:

    msg "NoScript XSS InjectionChecker: Attribute Injection"] [data "Matched Data:, javascript: history.back ()

    This message is saying that the javascript: history.back is an Attribute Injection, which it is, but it’s not an attack on your site.
    To correct this your provider will need to disable the appropriate firewall rules, such as:
    941170
    941210
    I see from above these were already identified as the rules to disable.
    Another way to test would be to disable all of the rules and then enable one at a time to see which ones cause issues.

    Best regards,
    Mike

    in reply to: Lightbox Issue #1245506

    Hey amyteslin,
    Sorry for the late reply and thanks for the link to your site. When your hot spots are clicked the built-in lightbox and the Lity lightbox are both opened. The Lity lightbox seems to be a part of the cq-hotspot plugin.
    So one option would be to disable the built-in lightbox at: Enfold Theme Options > Lightbox Modal Window, if that doesn’t help because you need this lightbox elsewhere you can try this script that will disable the Lity lightbox on the one page on click.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function() {
          $("#top.page-id-5774 .hotspot-container a.cq-hotspot-tooltip").click(function() {
          	setTimeout(function(){
              $(".lity.lity-opened").css({ 'display': 'none' });
          	}, 300);
          });
      });
      })(jQuery);
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: Remove H1 hyperlink from Blog Post page #1245500

    Hi,

    @Melaniegray92
    it looks like the other thread solved your issue, from your comment there, shall we close this then?

    Best regards,
    Mike

    in reply to: Magazine display #1245447

    Hey williamslyd,
    Sorry for the late reply and thanks for the login. To have the pagination jump to the top of the magazine element instead of the top of the page we will first add a custom ID to the magazine element, newsroom
    2020-09-12_210635.jpg
    Then I added this script to the bottom of your child theme functions.php

    function custom_pagination_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $(".av-masonry-pagination.av-masonry-pagination-pagination nav.pagination a").each(function() {
       var $this = $(this);       
       var _href = $this.attr("href"); 
       $this.attr("href", _href + '#newsroom');
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_pagination_script');

    This is now working, please check.

    Best regards,
    Mike

    in reply to: Edit the Search Box text #1245446

    Hey fcp,
    Sorry for the late reply, your code was missing commas, I corrected, please check.

    Please compare this corrected code with the above code:

    add_filter('avf_frontend_search_form_param', 'avf_frontend_search_form_param_mod', 10, 1 );
    function avf_frontend_search_form_param_mod( array $params )
    {
    	$params['placeholder'] = __('Rechercher un produit...','avia_framework');
    	return $params;
    }

    Best regards,
    Mike

    in reply to: WPBakery only available in Backend #1245445

    Hey hwci,
    Sorry for the late reply, unfortunately we do not expect other page builders to work with Enfold, our page builder is built into the core of the theme.
    I recommend building your Enfold site on a staging sub-domain and continue using your original site until you are done.

    Best regards,
    Mike

Viewing 30 posts - 15,241 through 15,270 (of 34,221 total)