Forum Replies Created

Viewing 30 posts - 12,691 through 12,720 (of 34,558 total)
  • Author
    Posts
  • in reply to: LayerSlider – editing imported demo pages #1335783

    Hi,
    Thank you, it looks like there is a caching conflict with another plugin, I see this message below many of your plugins:
    This plugin was installed by WordPress.com and provides features offered in your plan subscription.
    are you using WordPress.com to host your site?
    I recommend disabling your plugins and clear your browser cache and then check again, Please note that testing with Mac Safari can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
    If this corrects, then you can enable your plugins one at a time until the issue returns, then you will know which one caused the conflict.
    If this doesn’t help can I test by disabling your plugins?

    Best regards,
    Mike

    in reply to: Breadcrumbs not in correct order #1335780

    Hey Matthew,
    Thank you for your patience and the link to your site, I’m not sure why this has occurred but I couldn’t recreate it on my demo site and your other pages seem to be correct, so assuming that this is the only page with the issue I came up with this script to correct.
    Try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
        <script>
    (function($){
    var temp = $("#top.postid-70154 .breadcrumb-trail span:nth-child(2)").html();
    $("#top.postid-70154 .breadcrumb-trail span:nth-child(2)").html($("#top.postid-70154 .breadcrumb-trail span:nth-child(4)").html());
    $("#top.postid-70154 .breadcrumb-trail span:nth-child(4)").html(temp);
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: Remove categories from Blog breadcrumbs #1335777

    Hey macjeffff,
    Try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    
    add_filter( 'avia_breadcrumbs_trail', 'remove_category_from_breadcrumb', 50, 2 );
    function remove_category_from_breadcrumb( $trail, $args ) {
    	if ( is_single() ) {
    		unset ($trail[1]);
    		unset ($trail[2]);
    	}
    	return $trail;
    }

    Best regards,
    Mike

    in reply to: LayerSlider – editing imported demo pages #1335776

    Hi,
    I have not seen a screen like that for the layerslider, can I check?
    Please post us your login credentials (in the “private data” field), so we can take a look at your backend, or you can use the Temporary Login Without Password plugin.

    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,
    Mike

    Hey Aaron,
    Thank you for the link to your site, I see that you are using a color section with a background image and on screens larger than about 1440px the image seems to show the embedded text well, so I recommend adjusting for the smaller screens. Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field, it changes the background-size to cover for screens 650px to 1439px, and for smaller devices it changes the background-size to contain.

    @media only screen and (min-width: 650px) and (max-width: 1439px) { 
    #top.home #av_section_1 {
    	background-size: cover;
    }
    }
    @media only screen and (max-width: 649px) { 
    #top.home #av_section_1 {
    	background-size: contain;
    }
    #top.home #after_section_1 {
    	border-color: transparent!important;
    }
    #top.home #av_section_1 > div > div {
    	height: 36vh;
    }
    }

    Please see the screenshots of the expected results in the Private Content area.
    After applying the css, please clear your browser cache and check.
    Another option would be to add another color section specifically for mobile devices with a portrait cropped image instead of the landscape image that desktop devices use, then you could show or hide these color sections based on screens size with the visibility option:
    2022-01-16_003.jpg

    Best regards,
    Mike

    in reply to: LayerSlider – editing imported demo pages #1335770

    Hi,
    Can you include an admin login in the Private Content area below so I can check?

    Best regards,
    Mike

    Hey Julio,
    Thank you for your question, I’m only vaguely familiar with MailPoet, so as I understand MailPoet is where your list of subscribers are held, so you need to trigger the sending there.
    One way would be to use the Post Notification Email which you can schedule to send daily regardless of any change to your content or new posts added, in this case instead of adding the Automatic Latest Content Widget in the message just add a link to your video page and a message that says you have a new video.
    The only drawback to this is that the message is sent whether or not if you have a new video or not.
    Another option I found is a MailPoet ▸ Zapier integration, so I believe that Zapier can be used to trigger the Post Notification Email and Zapier has a updated posts trigger which should also work for pages, so each time you update the video page it should trigger Zapier which triggers the MailPoet Post Notification Email.
    This is only based on my research and I would recommend asking MailPoet & Zapier support for further help settings this up.
    I hope this helps.

    Best regards,
    Mike

    in reply to: LayerSlider – editing imported demo pages #1335765

    Hey NIck,
    Thank you for your question, you do not need to buy the pro version, when you click on the WordPress ▸ Layerslider menu item you probably see this screen:
    2022-01-16_005.jpg
    from here click on the “Lets Get Started” button in the center, then you should see this:
    2022-01-16_006.jpg
    here you want to click on the slider image, in this case it’s “Enfold Reimagend”, then you should be taken inside the slider editor and be shown a “Tour” popup that you should review:
    2022-01-16_007.jpg
    Most of these steps are only for your first visit to the Layerslider dashboard.

    Best regards,
    Mike

    in reply to: Masonry Gallery – transparent Background #1335763

    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: Full width layer slider on mobile devices max height #1335762

    Hi,
    Thank you for your patience, I disabled the css for the homepage because I came up with another solution, this script calculates the height of each of your slides and makes them all the same height, it needs to be added to the end of your child theme functions.php file in Appearance ▸ Editor, but this option is hidden right now for me so you will need to add it:

    function custom_script() { ?>
        <script>
    (function($){
      $(window).load(function(){
      	$('#top.home #full_slider_1 .avia-slideshow-inner').each(function(){  
         var $columns = $('li .avia-slide-wrap img',this);
         var maxHeight = Math.max.apply(Math, $columns.map(function(){
             return $(this).height();
         }).get());
         $columns.height(maxHeight);
    });
    });
    var resizeId;
    window.addEventListener('resize', function() {
        clearTimeout(resizeId);
        resizeId = setTimeout(doneResizing, 500);
    });
    
    function doneResizing(){
        location.reload();
    }
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    If you don’t know how to enable the theme editor then add this via FTP, or post FTP access in the Private Content area below.
    Right now the script will only work on the homepage for you to review, if you approve we can adjust to work on other pages.

    Best regards,
    Mike

    in reply to: Links are not showing withing blog post on home page view #1335758

    Hi,
    Try using the plugin Advanced Excerpt, in my test it allowed links in the excerpt of the blog post element displaying Classic Editor posts such as yours.

    Best regards,
    Mike

    in reply to: Responsive iFrame #1335757

    Hey kazumakitajima,
    Try one of these solutions, if you can’t get this to work please link to an example page so we can investigate.

    Best regards,
    Mike

    Hey onurbasol,
    Thanks for the link to your site, it looks like you have hidden it via the screen visibility option:
    2022-01-16_003.jpg
    please check, also note that videos don’t automatically play on mobile devices so you will also want to choose fallback image to display:
    2022-01-16_004.jpg
    You could try using a layerslider instead as this might work on mobile devices, but note that most browsers try to block this for mobile devices.

    Best regards,
    Mike

    in reply to: Page search on tags #1335754

    Hi,
    The product tag page you linked to is not a search results page, but you can add the search shortcode to the product tag page and category page with this additional function:

    add_action('woocommerce_before_shop_loop', 'before_product_tag_category_loop');
    function before_product_tag_category_loop() {
    	if(is_product_tag() || is_product_category()) {
    		 echo do_shortcode( '[aws_search_form]' );
    	}
    }

    Best regards,
    Mike

    in reply to: Demo Widget Fehler – Demo widget error #1335750

    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: Demo Widget Fehler – Demo widget error #1335747

    Hey Gonmyr,
    Thank you for the login, I see you are using version 4.8.2 and this was a known error that has been corrected, please update to v4.8.8.
    I added a temporary solution to your parent theme functions.php:

    if( ! isset( $avia_config['use_block_widget_page'] ) || $avia_config['use_block_widget_page'] !== true )
    {
    	// Disables the block editor from managing widgets in the Gutenberg plugin.
    	add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' );
    
    	// Disables the block editor from managing widgets.
    	add_filter( 'use_widgets_block_editor', '__return_false' );
    }

    Best regards,
    Mike

    in reply to: Overlapping column #1335746

    Hi,
    Thanks for the feedback, I see that you are using the element builder class numbers in your css, which is ok, but please keep in mind that if you add or change elements on this page in the future the builder class numbers will probably change and your css won’t work, naturally if you notice this you can easily adjust the css. The alternative to builder class numbers is using the custom class names in the elements:
    2022-01-16_001.jpg
    Anyways, I see your css is working:

    #top.page-id-3983 #main .avia-builder-el-4 {
    position: relative;
    left: -50px;
    top: 30px;
    }
    
    #top.page-id-3983 #main .avia-builder-el-22 {
    position: relative;
    left: -50px;
    top: 30px;
    }
    
    #top.page-id-3983 #main .avia-builder-el-11 {
    position: relative;
    right: -50px;
    top: 30px;
    }

    so thank you to @guenni007 for the help and good job applying it to your situation, the only issue you had left was the middle row had the image over the text element instead of the other way around, so to correct we just needed to adjust the z-index like this:

    #top.page-id-3983 #main .avia-builder-el-18 {
    position: relative;
    z-index: 0;
    }

    I added this for you so please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Masonry Gallery – transparent Background #1335745

    Hi,
    Thank you for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #main .main_color .av-masonry-outerimage-container {
    	background-color: transparent;
    }

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

    Best regards,
    Mike

    in reply to: After update display problem #1335743

    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: Overlapping column #1335727

    Hi,
    Thank you @Guenni007 for your help, @grassifrancesca thanks for the login and screenshot but I couldn’t find the page in your screenshot on your site, can you link directly to it?
    in your screenshot each of the blocks are overlapping the images so I’m not sure what is not working, but looking at your css above you have an ID hash tag before a class and then a space between each class with no dot before the last one so that is probably why it is not working for you. As a guess you probably want to try something like this:

    #top #main .avia-builder-el-4 {
    position: relative;
    left: -50px;
    top: 30px;
    }

    Best regards,
    Mike

    in reply to: Font Awesome icon not showing after adding from fontello #1335725

    Hi,
    Thank you for your patience, I tried to recreate your Fontello icons in the same order, I linked the zip file below.
    I used your function above:
    2022-01-15_008.jpg
    and selected these as the social icons:
    2022-01-15_009.jpg
    and they showed correctly on the frontend:
    2022-01-15_010.jpg
    Please try using the zip file below and if it still doesn’t work for you include admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Page search on tags #1335722

    Hi,
    Thank you for your patience, try this code in your functions.php

    
    add_action('woocommerce_before_shop_loop', 'search_before_shop_loop');
    function search_before_shop_loop() {
    	if(is_search() && is_shop()) {
    		 echo do_shortcode( '[aws_search_form]' );
    	}
    }

    Best regards,
    Mike

    Hi,
    Thank you for your patience, I believe the issue is that when the caption is to the right the caption container is only 42% width, so try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field to increase the container width:

    #top.home #main .slideshow_caption {
        width: 80%;
    }

    feel free to adjust the width to suit and after applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Sidebar not showing up on WooCommerce category page #1335719

    Hey aledef,
    Thank you for your patience, I see that you don’t have a sidebar, but selecting “Right sidebar” in “Theme Options > Sidebar Settings” for Archives on my demo site is working for me so I’m not sure what is different on your site, please include an admin login in the Private Content area so we can investigate further.

    Best regards,
    Mike

    in reply to: Transparent buttons #1335716

    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

    Hey Jörg,
    Thank you for the link to your site, your main menu items are all anchor links for the homepage and are all linked with only the ID, like this:
    2022-01-15_006.jpg
    which is good for a single page site, which yours mostly is, but for the few additional pages you have like your privacy page these menu items need to be the full URL so they link back to the homepage. But changing all of your anchor links to the full URL will cause your menu anchor highlighting to also change, which you don’t want.
    So I wrote this script for your three pages: Datenschutz, Impressum, & Datenschutzerklärung to redirct back to the home page when the main menu links are clicked.

    function custom_script() { ?>
        <script>
    (function($){
    $(".page-id-399 #avia-menu .menu-item-type-custom a,.page-id-397 #avia-menu .menu-item-type-custom a,.page-id-632 #avia-menu .menu-item-type-custom a").click(function() {
       var hostname = 'https://your-domain.com/';
       var $this = $(this);       
       var _href = $this.attr("href"); 
       var hash = _href.substring(1, _href.length);
       $this.attr("href", hostname + "#" + hash);
    }); 
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    I added this to your child theme functions.php, please check.

    Best regards,
    Mike

    in reply to: Transparent buttons #1335707

    Hey wtechgr,
    Thank you for the link to your site, the transpercey is caused by this css:

    body:not(.masterstudy-theme) input[type=submit]:not(:hover):not(:active):not(.has-background) {
        background: 0 0;
    }

    from: /wp-content/uploads/stm_lms_styles/stm_lms.css
    to override this please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top #main .main_color input[type='submit'] {
    	background-color: #259dd9;
    }
    #top #footer.footer_color input[type='submit']{
    	background-color: #fff;
    }

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

    Best regards,
    Mike

    in reply to: Pricing Table Color #1335702

    Hi,
    Schön, dass wir helfen konnten, wenn Sie weitere Fragen haben, erstellen Sie bitte einen neuen Thread und wir werden es tun versuche dir gerne zu helfen. Vielen Dank, dass Sie Enfold verwenden.

    — Translated with Google —

    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: portefolio selection for menü #1335699

    Hi,
    Glad we were able to help, do not be embarrassed the Screen Options tab is a WordPress setting that is easily missed, 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: Pricing Table Color #1335698

    Hi,
    Vielen Dank für Ihre Geduld. Soweit ich weiß, möchten Sie, dass alle Texte und Zellen dieselbe Farbe haben. Bitte versuchen Sie diesen Code im Feld General Styling ▸ Quick CSS oder in das Feld WordPress ▸ Anpassen ▸ Zusätzliches CSS:

    #top #main .main_color .pricing-table>li:nth-child(even) {
        color: #000;
    }
    #top #main .main_color .pricing-table>li:nth-child(odd) {
    	background: #fff;
    }

    2022-01-15_090612.jpg
    Nachdem Sie das CSS angewendet haben, leeren Sie bitte Ihren Browser-Cache und überprüfen Sie es.

    — Translated with Google —

    Thank you for your patience, as I understand you want all of the text & cells the same color, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top #main .main_color .pricing-table>li:nth-child(even) {
        color: #000;
    }
    #top #main .main_color .pricing-table>li:nth-child(odd) {
    	background: #fff;
    }

    2022-01-15_090612.jpg
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 12,691 through 12,720 (of 34,558 total)