Forum Replies Created

Viewing 30 posts - 13,231 through 13,260 (of 34,586 total)
  • Author
    Posts
  • 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

    in reply to: enfold advanced styling options #1328150

    Hi,
    Do you have a caching plugin installed, try disabling it while you are creating your site. If this is not the case please include an admin login & link to the page in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: Layer styles custom CSS works on first loop only #1328149

    Hi,
    Thank you for your patience and the link to your site, I don’t know why this is but I came up with a work around, I added the class drop-shadow-filter to only the first slide items:
    2021-11-07_016.jpg
    then I added this css to your WordPress ▸ Customize ▸ Additional CSS

    .drop-shadow-filter.ls-layer {
    	filter: drop-shadow(5px 5px 15px #666666) !important;
    }

    and this seems to be working on multiple passes for the first slide, please clear your browser cache and check and add this class to your other slides if you wish.

    Best regards,
    Mike

    in reply to: Enfold Single Post Navigation #1328141

    Hi,
    Thank you for your patience, to change the background color of the transparent post navigation, try adjusting this css to suit:

    #top #wrap_all .avia-post-nav {
        background: rgb(17 141 169 / 48%);
    }

    2021-11-07_014.jpg
    if you want it to be taller and wider like this:
    2021-11-07_015.jpg
    you can try adjusting this css:

    #top #wrap_all .avia-post-nav {
        background: rgb(17 141 169 / 48%);
        height: 200px;
    }
    .avia-post-nav:hover .entry-info-wrap {
    	width: 300px;
    }
    .avia-post-nav .entry-info {
    	width: 278px;
    	height: 163px;
    }

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

    Best regards,
    Mike

    in reply to: There Was an Error Getting Your Stats #1328139

    Hi,
    Thank you for your patience, I found that Yoast is giving a server 500 error, so I tried disabling it and your WooCommerce Analytics worked until I enabled Yoast again, I assume Yoast updated and now has an error but I don’t know why.
    I left it enabled so you can also try.
    Please see the screenshots in the Private Content area.

    Best regards,
    Mike

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

    Hi,
    Glad to hear that you have this sorted out, being a faulty font, shall we close this then?

    Best regards,
    Mike

    Hi,
    Do you have other FTP accounts? I don’t believe tht this is the correct one for this WordPress install, I added some text to your style.css via FTP and it doesn’t show in the WordPress ▸ Appearance ▸ Editor ▸ style.css
    2021-11-07_140845.jpg

    Best regards,
    Mike

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

    Hey Sabine,
    Sorry, there is not an easy way to change the elements to an 8 grid layout, it would require a lot of element modification. Perhaps you can point out to your client that an 8 grid layout would make each element quite small and hard to see on most devices.
    The most used devices are 1366px ▸ 1920px, hopefully this helps.

    Best regards,
    Mike

    in reply to: Grid row height changed after updating Enfold #1328132

    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: product price double on product page #1328130

    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: Color Section doesnt stretch once menu is activated #1328128

    Hi,
    Glad Ismael 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: masonry multiple galleries #1328127

    Hey Snezana Ilic,
    Thank you for your question, unfortunately, this would not be available in the theme out-of-the-box, it would require Theme Customization

    Best regards,
    Mike

    in reply to: Integrate purchased funnel pages into Enfold #1328126

    Hey Holger,
    Thank you for your question, you can not “import” html templates into Enfold and have them converted into Enfold elements that you can modify. You can copy the html source code and paste it into a code block element on an Enfold page and have the html content show on the frontend, but any modifications will have to be done in the html code and not with Advanced Layout Builder elements.

    Best regards,
    Mike

    in reply to: enfold advanced styling options #1328125

    Hey tobiaskueng,
    Thank you for your question, this is the documentation for the Advanced styling options, for the Health Coach Demo the homepage title and sub title are from the slideshow caption
    2021-11-07_008.jpg
    so in this case you would want to make the change in the slidehsow element in the style tab:
    2021-11-07_009.jpg

    Best regards,
    Mike

Viewing 30 posts - 13,231 through 13,260 (of 34,586 total)