Forum Replies Created

Viewing 30 posts - 12,421 through 12,450 (of 34,910 total)
  • Author
    Posts
  • in reply to: Search only in products #1344380

    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: Importing Demo #1344379

    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: Enfold portfolio question #1344325

    Hi,
    Sorry, the Image List doesn’t display the captions, please use the Gallery option.

    Best regards,
    Mike

    in reply to: Page titles now showing #1344324

    Hi,
    ok

    Best regards,
    Mike

    in reply to: CSS for EmbedPlus YouTube Plugin #1344323

    Hey Julio,
    Sorry that I was not clear how the page ID works, each page & post on your site has a page-id- or postid- in the body tag, which has the ID of Top, this is what the “scroll to the top” arrow points to, so this was not a custom class, when you want to make a css rule for a specific page or post you will want to use a page-id- or postid-
    Your new post ID is: postid-3940 so the new css would be:
    #top.postid-3940 .epyt-gallery-list {display:none;}
    Here is a good tutorial if you want to read more about this: How to Find Your WordPress Page ID and Post ID

    Best regards,
    Mike

    in reply to: Page titles now showing #1344320

    Hi,
    Ok, shall we close this then?

    Best regards,
    Mike

    in reply to: twitter feed via widget #1344318

    Hi,
    Thank you for your patience, your tweets are displayed for me when I disable my ad-blocker, I can post a screenshot if you wish.
    Try disabling any browser ad-blocker, cookie-blocker, or “don’t track me” options, if you are using Safari then this is built-in and on by default, Safari also blocks FB by default now.

    Best regards,
    Mike

    in reply to: Page titles now showing #1344316

    Hi,
    Glad we were able to help, did you sort out the directory structure for the child theme?
    Shall we close this then?

    Best regards,
    Mike

    in reply to: SIDEBAR ISSUE #1344312

    Hi,
    Sorry to hear that, but hopefully you will hear back from them soon. 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: Page titles now showing #1344310

    Hi,
    I see that your child theme directory structure is: sabai-directory/assets/templates/directory_listing_single_full.html.php but I believe it needs to be:
    /sabai/assets/templates/directory_listing_single_full.html.php
    As your title is right now it is in a text node and it would be better if it was in a div, so I changed your line 23 (in all places) to this: <div class="listing-title"><?php Sabai::_h($entity->getTitle());?></div> and now you can style the title like this:

    .listing-title {
    font-weight: 600;
    }

    Best regards,
    Mike

    in reply to: Vertical Slider/Grid with changing background image #1344308

    Hey Steffen,
    Thanks for the link to the demo, but I was not able to create this in the layerslider, I’m not that good with it. But I was able to get pretty close with html, css, & jQuery, I linked to an example in the Private Content area. To create this I used a color section with the min height set to 100% on a page with no sidebar and a transparent header, I then added a code block in the color section with this code in it:

    <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
    $('.image-main .nav-mainarea-item').bind('mouseover', function(){
        var myEm = $(this).attr('data-img');
        $('.image-main img').removeClass('is-visible');
        $('.image-main img[data-img = '+myEm+']').addClass('is-visible');
    });
    })(jQuery);
     });
    </script>
    <style>
    .nav-mainarea {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-wrap: wrap;
        z-index: 100;
    }
    .nav-mainarea .nav-mainarea-item {
    display: flex;
        transition: all .3s ease-out;
        width: 25%;
        height: 100%;
        border-right: 1px solid rgba(255,255,255,.5);
        padding: 30px;
        text-decoration: none;
    }
    .nav-mainarea .nav-mainarea-item .nav-mainarea-text {
        margin-top: auto;
        color: #000;
        transition: all .3s ease-out;
    }
    .nav-mainarea .nav-mainarea-item h2 {
        margin: 0;
        line-height: 1.6;
        color: #ca0202;
    }
    .nav-mainarea .nav-mainarea-item:hover .nav-mainarea-text {
        transform: translateY(-45vh);
        
    }
    .nav-mainarea .nav-mainarea-item:hover {
        text-decoration: none;
    }
    
    #top.page-id-3157 #av_section_1 > .container {
    	max-width: 2500px;
    	width: 100%;
    	padding: 0;
    }
    .image-main img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        opacity: 0;
        z-index: 1;
        object-fit: cover;
        object-position: center;
        width: 100%;
    }
    .image-main img.is-visible {
        opacity: 1;
        z-index: 1;
        display:block;
    }
    </style>
    
    <div class="image-main">
    <img class="nav is-visible" data-img="1" src="../wp-content/uploads/2022/03/PhotoRag_Metallic_Mood.jpg">
    <img class="nav" data-img="2" src="../wp-content/uploads/2022/03/RS171_Hahnemuehle__3_-lpr.jpg">
    <img class="nav" data-img="3" src="../wp-content/uploads/2022/03/Hahnemuehle_Notebook_Iconic_A5_Schwarz-black_and_taupe_mood_web.jpg">
    <img class="nav" data-img="4" src="../wp-content/uploads/2022/03/hfa_filtration.jpg">
    
    <div class="nav-mainarea">                                 
        <a class="nav-mainarea-item nav" data-img="1" href="#">
            <div class="nav-mainarea-text">
                
                        <h2>Digital FineArt</h2>
                    
                Turning images into Art
            </div>
        </a>
    
        <a class="nav-mainarea-item nav" data-img="2" href="#">
            <div class="nav-mainarea-text">
                
                        <h2>Artist Papers</h2>
                    
                The Art of Expression
            </div>
        </a>
    
        <a class="nav-mainarea-item nav" data-img="3" href="#">
            <div class="nav-mainarea-text">
                
                        <h2>Stationery</h2>
                    
                Notebooks & Writing Instruments
            </div>
        </a>
    
        <a class="nav-mainarea-item nav" data-img="4" href="#">
            <div class="nav-mainarea-text">
                
                        <h2>Filtration</h2>
                    
                Technical Applications
            </div>
        </a>             
    </div>
    </div>

    This code includes the html, css, & jQuery one in one, you will need to adjust the image urls to your images and if you want to add links. The background image changes on mouse-over.

    Best regards,
    Mike

    Hey Jason,
    Thanks for the links and the screenshots, I tested both sites in Chrome, Firefox, & Edge on Windows, and found in all cases the titles and video controls show up in all browsers. Please see the screenshot in the Private Content area.
    I also found that in both cases once the iframe for the individual videos were smaller than about 300×168 the titles and video controls are hidden, this is triggered by the media query @media (max-height: 119px),(max-width:79px) in the stylesheet https://f.vimeocdn.com/p/3.49.19/css/player.css from inside the iframe.
    I’m not sure if your client used different devices with different screen sizes or widow sizes, my test finds that these are the same across browsers when on the same device, and this is controlled by the stylesheet from inside the iframe that can not be overwritten, so we couldn’t change this even if we wanted to.
    I hope that I explained this well and will help you explain it to your client.

    Best regards,
    Mike

    in reply to: How to reduce with of images to 80%? #1344294

    Hi,
    To make the above solution work on the one page only please adjust to this:

    @media only screen and (max-width:767px) {
      #top.page-id-600 .av_one_third .avia-video {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 80%;
      }
    }

    Best regards,
    Mike

    in reply to: Page titles now showing #1344293

    Hey smarta-brett,
    I tested your modification in the active plugin file: sabai-directory/assets/templates/directory_listing_single_full.html.php and it worked correctly, I note that your modified file in your child theme doesn’t seem to have the correct directory structure, try placeing your modified file in a directory structure like this:
    enfold-child/sabai/assets/templates/directory_listing_single_full.html.php
    or
    enfold-child/sabai/assets/directory_listing_single_full.html.php

    Best regards,
    Mike

    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

Viewing 30 posts - 12,421 through 12,450 (of 34,910 total)