Forum Replies Created

Viewing 30 posts - 13,921 through 13,950 (of 35,289 total)
  • Author
    Posts
  • 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

    in reply to: Custom Enfold Styles for The Events Calendar Not Applied #1328787

    Hi,
    Thank you for your tests and feedback, I believe that the error is related to the file \wp-content\themes\enfold\config-events-calendar\event-mod-css-dynamic.php but I’m not exactly sure so I have reported the issue and am waiting for the Dev Team to review and advise, thank you for your patience.

    Best regards,
    Mike

    in reply to: Custom Enfold Styles for The Events Calendar Not Applied #1328663

    Hi,
    Thanks for the feedback, I have summarized this for the Dev Team to review and will reply here when I receive an update, thank you for your patience.

    Best regards,
    Mike

    in reply to: Preview of used fonts in Backend and ALB … #1328636

    Hi,
    Very good, probably how it is corrupt.

    Best regards,
    Mike

    Hey wordninj,
    Thank you for the video and the link to your site, I found that when a class is added to the layerslider element it is not added to the link it is added to a sibling span so the css should have been:

    .ls-wrapper > .aone + a.ls-layer-link:hover {
    color: #00a3c5!important;
    }

    but this doesn’t work because I believe that the color of the layers has a higher value. I did find that the color on mouse-over can be applied as a Hover Transition by enabling and adding the color to the style:
    layerslider_Hover_Transition_mouse-over_color.jpg
    I did this for you on each one, please clear your browser cache and check.

    Best regards,
    Mike

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

    Hi,
    Thank you for the link to your site, the popup links work because they have the custom class open-popup-link to add this class to your buttons with the link #content-to-open Try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
        <script>
    (function ($) { 
      $('[href="#content-to-open"].avia-button').addClass('open-popup-link');
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: Testimonial Image above in grid view #1328470

    Hi,
    Glad to hear this helped, I will suggest to the Dev Team 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: Possible to add Animation to Every Image with CSS or PHP? #1328464

    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: Add class to code block parent section container #1328364

    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: Change contact form submit button to a circle shape #1328363

    Hey sensiblekaren,
    Thank you for your question, try adding the custom class “round-submit” to your contact form element
    2021-11-09_001.jpg
    then add this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .avia_ajax_form.round-submit .button {
    	border-radius: 100px;
    	min-height: 142px;
    }

    this is the result on the basic Enfold demo:
    2021-11-09_002.jpg
    you can adjust to suit your site.

    Best regards,
    Mike

    in reply to: Add class to code block parent section container #1328355

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

    function move_codeblock_class_to_parent() { ?>
        <script>
    (function($){
      $('.avia_codeblock.break').each(function() {
      $(this).removeClass('break').parent().addClass('break');
      });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'move_codeblock_class_to_parent');

    it will search for code blocks with the class “break” and move the class to the parent div.

    Best regards,
    Mike

    in reply to: Possible to add Animation to Every Image with CSS or PHP? #1328352

    Hi,
    This script is running after the DOM, so you are giving on this end instead of using the element options when the page is built.
    So this would be ok if after placing hundreds of images you realized that you wanted the animation, but I would not recommend it as an excuse to not select the option when the page was built the first time.
    Perhaps using Custom Element Templates would be better so your elements already have your basic options defined.

    Best regards,
    Mike

    in reply to: Help with grid row spacing #1328345

    Hi,
    Try your css with no space between the two classes like this:

    .product_gallery.av-layout-grid-container {
    max-width: 950px !important;
    margin: 0 auto !important;
    padding-bottom: 5px !important;
    padding-top: 5px !important;
    }

    I couldn’t find the class product_gallery on either of your links above can you link to a page that you are testing this on?

    Best regards,
    Mike

    in reply to: More columns in the portfolio or in the blog overview #1328341

    Hi,
    Thanks for helping @Guenni007, @TakiwaSoulArt glad this will help your project plans, 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: More columns in the portfolio or in the blog overview #1328228

    Hi,
    I believe that Guenni007’s idea of using the basic WordPress gallery is probably your best bet, you can choose 8 columns and if you add the plugin Gallery Custom Links you can customize each link to any page or post you wish, the plugin adds a link field to the gallery option:
    2021-11-08_001.jpg
    in my test the plugin seems to work with Enfold fine
    2021-11-08_002.jpg

    Best regards,
    Mike

    in reply to: enfold advanced styling options #1328156

    Hi,
    Thank you for the login, I see that you are using version 4.8.4 which had this bug fixed in 4.8.5
    2021-11-07_017.jpg
    Please update to our current version 4.8.7.1 and check again.

    Best regards,
    Mike

    in reply to: WooCommerce Add to Cart Issue #1328153

    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: There Was an Error Getting Your Stats #1328151

    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

Viewing 30 posts - 13,921 through 13,950 (of 35,289 total)