Forum Replies Created

Viewing 30 posts - 12,391 through 12,420 (of 34,866 total)
  • Author
    Posts
  • in reply to: How to custom sort & display YouTube videos daily #1344291

    Hi,
    Glad we were able to help, and special thanks to Guenni007 for originally suggesting this plugin to help you. 🙂 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

    Hi,
    Thanks for sharing your clue, your page is giving an error jquery.min.js?ver=3.6.0:2 Uncaught Error: Syntax error, unrecognized expression: #origin=accor
    and I found the error #origin=accor as the URL in your menu button RESERVE YA a URL can not use the equal symbol, if you are sure that this is correct for your affiliate link then try replacing it with %3D
    HTML URL Encoding Reference

    Best regards,
    Mike

    in reply to: How to custom sort & display YouTube videos daily #1344287

    Hi,
    Thanks for the screenshots, I was able to borrow an iPhone 7 and test your page on Safari and found that the video was not playing on the first tap like you said, but on my Android it was working. So as I looked around your site I found that the plugin Embed Plus Plugin for YouTube has a setting iOS Playback and this setting adds the &playsinline=1 parameter automatically
    2022-03-13_007.jpg
    so I enabled this option and removed my manually added parameter and tested on iPhone 7 Safari & Android Chrome and in both the video plays on the first tap.
    please clear your browser cache and check.
    Please note that testing with iPads & iPhones 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.

    Best regards,
    Mike

    Hi,
    Thank you for the links, as you know both the Final Total and the Extra Options / Product Add-Ons Subtotal are from plugins, neither are standard, the Subtotal is updated by javascript on click / selection from the Extra Options, but this plugin doesn’t update the Final Total because they are not related, that is Extra Options is not looking to update the Final Total. In the Extra Options documentation it doesn’t show the Final Total only a larger Subtotal above the “add to cart” button.
    It seems redundant to show the price twice so I recommend using the following css to hide the Final Total and adjust the Subtotal into it’s place:
    2022-03-13_104211.jpg

    #top.single-product .single_variation_wrap #tc-final-price-total {
    	display: none;
    }
    #top.single-product div.product-addon-totals .wc-pao-subtotal-line {
        justify-content: start;
    }
    #top.single-product div.product-addon-totals .wc-pao-subtotal-line .price,
    #top.single-product div.product-addon-totals .wc-pao-subtotal-line .price .amount {
    	font-size: 1.5em;
        font-weight: bold;
        color:#383838;
    }

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

    Best regards,
    Mike

    in reply to: 3 logos #1344282

    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: Plugin conflict removes kitchen sink from wysiwyg #1344281

    Hi,
    Thank you for your patience, please use the Classic Editor option in the Enfold theme options at Enfold Theme Options ▸ Select Your Editor instead of the plugin. I checked the test page above with Classic Editor option set and the plugin disabled and the kitchen sink worked correctly, I note that the kitchen sink doesn’t work in the Block Editor, but the plugin page specifically says it only works in Classic Editor mode.
    2022-03-13_003.jpg
    Please test again
    2022-03-13_004.jpg

    Best regards,
    Mike

    in reply to: Move Error Notification (ul.woocommerce-error) #1344278

    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: SIDEBAR ISSUE #1344276

    Hi,
    Thank you for your question, your plugin Sabai Directory uses it’s own page template for it’s pages which doesn’t include a sidebar, so the plugin template will need to be modified to show a sidebar and some css to align it on the custom template correctly. Since this is an un-supported paid third party plugin, please reach out to the author’s provided support for assistance with this modification, most likely they have already helped other customers with this.
    Modifying third party plugins is outside of our support.

    Best regards,
    Mike

    in reply to: Enfold portfolio question #1344275

    Hey Jonah Schrogin,
    Thanks for your question, I believe you are referring to the Ajax Portfolio Preview Settings, the Image List doesn’t display the captions, please use the Gallery option.
    I see that you are using v4.1.2 with the latest WordPress version, please note that this version of Enfold was released before WordPress v5 and could lead to issues and the automatic updater will not work, please consider updating to the latest version v4.9
    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: Different logo for each page #1344273

    Hey Jak73,
    Thanks for your question, please try this solution, adjusting it for your needs.

    Best regards,
    Mike

    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: How to custom sort & display YouTube videos daily #1344269

    Hi,
    Thank you, I added &playsinline=1 again, Please see the screenshot in the Private Content area.
    Please check again and let us know if it is working and if we can close this thread.

    Best regards,
    Mike

    in reply to: Different navigation on special page #1344261

    Hey Michael,
    To have one page show a different menu than the other pages, Try this function to the end of your functions.php file in Appearance ▸ Editor:

    add_filter( 'wp_nav_menu_args', 'custom_nav_menu_args' );
    function custom_nav_menu_args( $args = '' ) {
    if($args['theme_location'] === 'avia') {
    if( is_page( 626 ) ) {
    $args['menu'] = 'Footer Menu';
    }
    return $args;
    }
    }

    you will need to change the page ID and the menu to show.

    Best regards,
    Mike

    in reply to: Search only in products #1344259

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

    
    function avf_enable_cpt_search( $query ) {
        if ( $query->is_search ) {
           $query->set( 'post_type', array( 'product' ) );
           $query->set( 'post_status', array( 'publish', 'inherit' ) );
        }
    
       return $query;
    }
    
    add_filter( 'pre_get_posts', 'avf_enable_cpt_search' );

    Best regards,
    Mike

    in reply to: Move Error Notification (ul.woocommerce-error) #1344258

    Hi,
    Thanks for the screenshot and the link to your site, when I test this on your site the page scrolls up to the error for me, using Windows & Chrome.
    But this script will copy the error message to under the checkout button if your page is not scrolling.
    Try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function woocommerce_NoticeGroup_checkout() { ?>
        <script>
    (function ($) {
    $('#place_order').on('click',function(){
    setTimeout(function(){
    	if ($('.woocommerce-checkout').children().hasClass('woocommerce-NoticeGroup-checkout')) {
    		$( ".woocommerce-NoticeGroup-checkout" ).clone().insertAfter( "#place_order" ).css({'margin-top':'80px'});
    	} else {}
    },1000);		
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'woocommerce_NoticeGroup_checkout');

    Best regards,
    Mike

    in reply to: Moving Website #1344255

    Hi,
    Glad we could help, thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Dropdown menu #1344254

    Hey Telmore,
    Perhaps you could create a menu and then add the navigation menu widget to a widget area and then display that widget on your page with the widget element.
    Or you could try a plugin such as Navigation menu as dropdown Widget

    Best regards,
    Mike

    in reply to: Moving Website #1344252

    Hey Paul Cunnius,
    You are allowed to use the theme on your domain and subdomains including staging sites and localhost, so you can clone your site to your new host or download a copy of the theme from your Theme Forest account and install it on your new host.

    Best regards,
    Mike

    in reply to: Anchored Section goes behind Fixed Header on mobile #1344250

    Hi,
    Glad Nikko 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: How to custom sort & display YouTube videos daily #1344249

    Hi,
    About your video, this looks like an iPhone thing because Android just plays in the YouTube frame, my research seem to point to the need for a &playsinline=1 parameter to the embed url so I added this to your code, please test this and see if it helps.

    For the css, to make it work on this one page I added this css to your Quick CSS:

    #top.page-id-3897 .epyt-gallery-list {display:none;}

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Favicon not showing up #1344235

    Hey pencefinancial,
    Thanks for the link to your site, you are getting this error:

    Mixed Content: The page was loaded over HTTPS, but requested an insecure favicon. This request has been blocked; the content must be served over HTTPS.

    Please check the theme options for your favicon and ensure the url is https Then clear your browser cache and any cache plugin, and check again.

    Best regards,
    Mike

    in reply to: How to custom sort & display YouTube videos daily #1344234

    Hi,
    I tested you /youtube-embed-plus-test-page/ on my Android phone and I only need to tap once to play the video, I don’t have an iPhone to test with, are you experiencing this with iPhone?
    If the css .epyt-gallery-list {display:none;} is what you wanted and you want this for your whole site then you can add it to your Quick CSS, if you only want this for one page please link to it so we can adjust it for you.

    Best regards,
    Mike

    in reply to: Add Ukraine flag to title bar for Enfold #1344232

    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: Reduce images which are being generated #1344218

    Hey Ivana,
    I would recommend using the plugin Simple Image Sizes and placing a zero in sizes that you don’t need, including the basic WordPress sizes.
    While you could make a function from the thumbnail sizes in functions.php starting at line 211 for your child theme, using this plugin is easier, don’t worry about the age of the plugin, it is very basic and reliable.
    Please note that typically you would use the regenerate thumbnails option to correct the existing thumbnails, but in your case you want to “remove” them so I don’t know if the plugin will remove them, you may need to delete them via FTP, but future image uploads will not create thumbnails for the ones you make zero.

    Best regards,
    Mike

    in reply to: Add Ukraine flag to title bar for Enfold #1344216

    Hey goldengate415,
    I believe that you mean like this:
    2022-03-12_001.jpg
    please try this css:

    /* ukraine flag title bar */
    .title_container * {
        color: white!important;
        text-shadow: 1px 1px 1px black;
    }
    .title_container {
        background: url(https://upload.wikimedia.org/wikipedia/commons/4/49/Flag_of_Ukraine.svg);
        background-size: contain;
    }

    Best regards,
    Mike

    in reply to: 3 logos #1344214

    Hi,
    Thanks for your patience, you need to use either if ( is_home() ) { or if ( is_front_page() ) { I believe is_front_page() is the correct one.

    Best regards,
    Mike

    in reply to: one page menu with anchors #1344213

    Hi,
    You can test your screen resolution here, if you are still having issues with a specific resolution and browser please let us know.

    Best regards,
    Mike

    in reply to: Slider with clickable captions #1344211

    Hi,
    Glad to hear that you have this sorted out, 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: How to custom sort & display YouTube videos daily #1344206

    Hi,
    Thanks for the login, for your second video I added a code block below it this this css:
    .epyt-gallery-list {display:none;}
    I was not sure if you meant to remove the relevant videos that show under the video or after the video, so the css in a code block is just a test for this one page.

    Best regards,
    Mike

    in reply to: Tab Section Scroll Down #1344202

    Hi,
    @freddyB please open a new thread with a link to a test page with an admin login explaining thoroughly what you are trying to achieve, this thread is from 2018. Please link to your new thread here so it will be easier to find, thanks.

    Best regards,
    Mike

Viewing 30 posts - 12,391 through 12,420 (of 34,866 total)