Forum Replies Created

Viewing 30 posts - 13,201 through 13,230 (of 34,586 total)
  • Author
    Posts
  • in reply to: Pictures don't loaded #1328937

    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: video on mobile #1328936

    Hey tony ,
    On desktop your video is showing this error:
    2021-11-14_002.jpg
    I believe this is because you are using this link:

    https://www.youtube.com/embed/j96-kji6BJM?iv_load_policy=3&showinfo=0&controls=0&color=white&autohide=1&version=3&loop=0&playlist=player_2_99348427_753462115&wmode=opaque&rel=0&hd=1&videoid=j96-kji6BJM&autoplay=0&html5=1&enablejsapi=1&origin=https%3A%2F%2Fwww.cafemurano.com&widgetid=1

    try using this link instead: https://www.youtube.com/watch?v=j96-kji6BJM
    2021-11-14_003.jpg
    this worked for me
    2021-11-14_004.jpg
    For mobile videos will not auto play, Safari & Google Chrome have set the standard a few years back that mobile video must be clicked by the user to play, this was to try to curb “video spamming” by websites. As with any standard there are “hacks” around this but we don’t use these, you can probably find a WordPress plugin that will if you really want to do this.

    Best regards,
    Mike

    in reply to: Feature Requests doesnt work #1328933

    Hey Christian,
    Sorry I don’t know what you mean by “radio form” please explain in detail, perhaps with a mockup and I will submit to the Dev Team.

    Best regards,
    Mike

    in reply to: Remove WPML Switcher #1328931

    Hey Graham,
    Thank you for the link to your site, I’m not sure if there is another setting in WPML itself, but please try this css in your Quick CSS:

    .av_extra_header_active .avia_wpml_language_switch {
    	display:none;
    }

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

    Best regards,
    Mike

    in reply to: Full Page Overlay Menu Issues #1328930

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

    #top.home .avia-video .av-click-to-play-overlay .avia_playpause_icon {
        display: none;
    }

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

    Best regards,
    Mike

    in reply to: image stick to bottom #1328929

    Hi,
    Thank you, I added the custom class “align-bottom” to the column with the image and added this css to your Quick CSS:

    .align-bottom {
    	vertical-align: bottom;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: color table #1328928

    Hi,
    Thank you for the login, it turns out that you were actually using the pricing table option
    2021-11-14_001.jpg
    so in this case the correct css to have white cells in the table would be:

     .main_color .pricing-table-wrap>.pricing-table>li {
     	background-color: #fff;
     }

    I added this to your Quick CSS, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Need a little CSS Help #1328927

    Hi,
    Ok, then try this css:

    .padleft p {
    	line-height: 0px;
    }

    and then clear your browser cache and check the space between the text and button.

    Best regards,
    Mike

    in reply to: Animated Countdown function #1328925

    Hi,
    Sorry, we were not as much help this time, but 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: Change link colour and add underline but keep button colors #1328903

    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: Need a little CSS Help #1328902

    Hi,
    Try this script to add the text to your button div as you were asking, by adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_wryp_script() { ?>
        <script>
    (function($) {
    var wryp = $('<p class="wryp">We respect your <a href="https://staging-mindcrowd.kinsta.cloud/privacy-policy/">privacy</a>.</p>').css({ 'text-align':'center','margin':'0' });
    	$(wryp).appendTo('[title="Play the MindCrowd Memory Test"].avia-button-wrap');
    
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_wryp_script');
    

    Best regards,
    Mike

    in reply to: Animated Countdown function #1328898

    Hey DovolenkujLacno,
    Thank you for your patience, but unfortunately the animated countdown doesn’t have an auto reset option so you will need to manually reset it.
    Perhaps a pugin such as Evergreen Countdown Timer would help or a different plugin.

    Best regards,
    Mike

    in reply to: Theme Version Upgrade from 3.5.2 #1328897

    Hi,
    I was not able to login to your site to check, but are you saying that you are using this child theme with no customizations?
    If you have customizations try removing them, perhaps that is the error.

    Best regards,
    Mike

    in reply to: Add author to blog grid layout / Enfold 4.5 #1328896

    Hi,
    if you made the change to config-templatebuilder > avia-shortcodes > postslider > postslider.php
    then create a directory in your child theme shortcodes and copy your edited file there: postslider > postslider.php
    and ensure your child theme functions.php has this function

    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 );

    per our documentation

    Best regards,
    Mike

    in reply to: Change link colour and add underline but keep button colors #1328894

    Hi,
    Thank you for your patience, based on the two pages there were buttons from 3 elements and only links in the footer, but I assumed there would be links in the body in the future so I tried to allow for them, I didn’t count the menu item links because they can be adjusted in the Advanced Styling options.
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #footer.footer_color a,
    #main .main_color a {
    	color: #82514e;
    	text-decoration: underline;
    }
    #footer.footer_color a:hover,
    #main .main_color a:hover {
    	color: #88bbc8;
    	text-decoration: underline;
    }
    #top #wrap_all .main_color .avia-color-theme-color,
    #top #wrap_all .main_color .avia-color-theme-color-highlight,
    #top #wrap_all .main_color .button {
    	background-color: #82514e;
    	color: #fff;
    	text-decoration: none;
    }
    #top #wrap_all .main_color .avia-color-theme-color:hover,
    #top #wrap_all .main_color .avia-color-theme-color-highlight:hover,
    #top #wrap_all .main_color .button:hover {
    	background-color: #fb8c24;
    	color: #fff;
    	text-decoration: none;
    }

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

    Best regards,
    Mike

    in reply to: Masonry empty categories show other categories #1328893

    Hi,
    Thank you for the link to your site and the explanation, for this one page /memory-care-learning-center/events/ page-id-2047
    we will use css to hide any masonry elements with the class tribe_events_cat-independent-living
    then we will use a jQuery script to check if no masonry elements are showing, and if so we will display a message.
    Please add this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top.page-id-2047 #av-masonry-1 .tribe_events_cat-independent-living {
    	display: none;
    }
    .nocat {
    	text-align: center;
        color: #fff;
        font-size: 20px;
    }

    Then add this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_nocat_script() { ?>
        <script>
    (function($) {
    var nocat = $('<div class="nocat">No Current Events</div>');
    if($('#top.page-id-2047 .av-masonry-entry').is(':hidden')){
    	$(nocat).appendTo('#av-masonry-1');
    }
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_nocat_script');
    

    Best regards,
    Mike

    in reply to: color table #1328891

    Hi,
    It seems the password is not correct, please check.

    Best regards,
    Mike

    in reply to: Need a little CSS Help #1328890

    Hi,
    Thanks for adding the text back, please try this css in your Quick CSS field:

    .avia_textblock.padleft p {
    	margin: 0;
    	padding-left: 40px;
    }

    After applying the css, please clear your browser cache and check.
    2021-11-13_003.jpg
    I’m not sure that you would want the text much closer since part of the text is a link.

    Best regards,
    Mike

    in reply to: How to display date of publication in a portfolio grid #1328889

    Hi,
    Thank you for your patience and sorry for the very late reply, please try this snippet instead:

    add_filter('avf_portfolio_extra', 'avf_portfolio_extra_mod', 10, 2);
    function avf_portfolio_extra_mod($output, $entry) {
    	$output = '<div class="portfolio-new-meta">';
    	$output .= "<time class='date-container minor-meta updated' $markup>".get_the_modified_date( "Y-m-d", $entry )."</time>";
     	$output .= '</div>';
    	return $output;
    }
    

    in my test this seems to be working
    portfolio_modified_date_function_example.jpg

    Best regards,
    Mike

    Hi,
    Thanks for the feedback and update.

    Best regards,
    Mike

    in reply to: image stick to bottom #1328877

    Hi,
    Thanks for the feedback, looks like I’m trying to help with two of your questions I didn’t notice this :) but I see a password in the Private Content area but I don’t see a username, please check.

    Best regards,
    Mike

    in reply to: color table #1328876

    Hi,
    Thanks for the feedback, I see a password in the Private Content area but I don’t see a url or username, please check.
    I mostly only need to see the actual page, so if you can link to it that would be great, if it’s in maintenance mode or unpublished
    then I’ll need a login.

    Best regards,
    Mike

    in reply to: Need a little CSS Help #1328875

    Hey havi,
    Thank you for your question, when the paragraph text <p> is added to the column it gets the align left, but the width of the paragraph is 100% of the column or the text element that is inside the column, so “centering” it will place it in the center of the column, the easiest fix to center the text under the button would be to use some left padding. The distance from the button is the padding & margin from the bottom of the button and the top of the paragraph, this is an easy fix with css by changing all to zero.
    I found your page but the text was not in place so I couldn’t offer some css, please place the text using the elements that are easiest for you to use and if you want to reproduce this combination of button and text elsewhere please add custom classes to them or the parent container and I will suggest some css to help.

    Best regards,
    Mike

    in reply to: color table #1328868

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

    #wrap_all .main_color .avia-table tr {
    	background-color: #add4ef;
    }

    feel free to adjust the color to suit, after applying the css, please clear your browser cache and check.
    if this doesn’t help please link to your page so we can be of more assistance.

    Best regards,
    Mike

    in reply to: image stick to bottom #1328867

    Hi,
    Thanks for the screenshot, I believe that you mean that you want the image of the person to be to the bottom of the box, please see the screenshot in the Private Content area.
    Since your site is in maintenance mode please create a admin login for us and paste to the Private Content area below.
    or you can use the Temporary Login Without Password plugin like this:

    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

    in reply to: Where to put a code behind button #1328866

    Hi,
    Glad to hear this helped, to prevent the popup scroll try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function prevent_popup_scroll() { ?>
        <script>
    (function($) {
      $(window).on('load', function(){
        $('.open-popup-link').addClass('no-scroll');
        $('.open-popup-link').magnificPopup({
          type:'inline',
          midClick: true,
          callbacks: {
            beforeOpen: function () {
              $('body').css("overflow-y", "hidden");
            },
            close: function() {
              $('body').css("overflow-y", "auto");
            },
          },
        });
      });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'prevent_popup_scroll');

    Best regards,
    Mike

    Hi,
    Glad to hear that you found the conflict, I’m not sure why this would only affect the portfolio sub-menu items, perhaps the plugin author will know, I see that he has released different versions of the plugin for different themes, perhaps this is why?
    We will leave this open to hear back from you.

    Best regards,
    Mike

    Hi,
    Very good, we will leave this open to hear back from you.
    Please note that when switching between permalink structures WordPress writes to the .htaccess file on your server to assign this change, if the write doesn’t take place correctly the first time saving again often corrects. There are many server issues that could cause the “hiccup” but it’s usually not a big deal because normally the change is only made once.

    Best regards,
    Mike

    in reply to: Masonry empty categories show other categories #1328792

    Hey levlaneadvertising,
    Thank you for your question and the link you the similar question, but that question was using multiple masonry elements on the same page, as I understand your question you are using two pages, but I’m not sure which elements you are using, when you write “Events” do you mean The Events Calendar plugin or are you using the blog element displaying simple “posts” that you are calling “events”?
    Please create example pages using the elements and layout you intend to use and an admin login to test with.
    In your similar issue link, Ismael points out that this is an “empty array” issue, if so I believe that one way around this would be to compare the item categories with the category you want to show on the page and hide non-matching ones, and if none are showing display a message like “No current events.”
    But I won’t be sure this is possible until I see the elements and if the post categories are being passed to the page, otherwise perhaps using post “tags” to choose what is displayed would be an option.

    Best regards,
    Mike

    Hey Rob,
    Thank you for the login, I deactivated all of your plugins and changed your permalinks to “Post name” and the sub-menu portfolio items are working correctly, please clear your browser cache and check.
    I’m not sure what was causing the 404’s so try enabling your plugins one at a time and re-check your portfolio sub-menu for the error again, if you find the error again try re-saving the permalink structure again and if this doesn’t solve then note the plugin as it could be the conflict.

    Best regards,
    Mike

Viewing 30 posts - 13,201 through 13,230 (of 34,586 total)