Forum Replies Created

Viewing 30 posts - 23,071 through 23,100 (of 34,659 total)
  • Author
    Posts
  • in reply to: Shortcode not updating #1053416

    Hi,
    I see you are using the ALB to build the page and then opening it with the default/classic editor.
    Typically doing this will brake the ALB code, we do not recommend this.
    If you want the shortcode please try Enabling the Avia Layout Builder Debugger

    Best regards,
    Mike

    in reply to: Title Attributes in Text editor defaulting #1053409

    Hi,
    There is not a built-in way to do so, but you can with some jQuery. This example will add a title to a button, but you can change the classes in the script to make it work with most ant element.
    First we will add a custom class to a button, please ensure that your option at Enfold Theme Options > Layout Builder > Show element options for developers is checked, we added “blue” as a class, without it the title would show on every button, which might be ok if the title was going to be “button”:
    2019-01-13-135356
    Then we will add this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $('.blue a.avia-button').prop('title', 'your new title');
      });
      })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    please note in the script the target is: .blue a.avia-button and the title is: your new title
    which you can edit to suit:
    2019-01-13-140312

    Best regards,
    Mike

    in reply to: Remove meta data shown below blog posts #1053406

    Hi,
    The read more button is replaced with the “more-link-arrow” button, please check your settings.
    If this doesn’t help, please include a admin login in the private content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Mixed fonts and display in Main menu #1053405

    Hi,
    You can see the settings for the whole site at: Enfold Theme Options > General Styling but not for each section.

    Best regards,
    Mike

    in reply to: Different font size being dispolayed in mobile device #1053404

    Hi,
    To standardize your columns, please check the “Inner Padding” option under the “layout” tab, I believe yours are not all set the same:
    2019-01-13-131210
    I will ask a team member to check with a iPhone, thanks for your patience.

    Best regards,
    Mike

    in reply to: Horizontal Align Footer Widgets in the Middle #1053401

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Picture and text zoom on smartphone #1053400

    Hi,
    Sorry for the late reply, I hope to had a nice holiday also.
    I understand that you want to make some changes to “Link 1”,
    to change the “Keep reading” button to “Make an appointment”
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_more_link(){
     ?>
     <script>
    (function($){
    $(document).ready(function(){
    $(".more-link").text("Make an Appointment");
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_more_link');

    to hide the date, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .slide-meta-time,.slide-meta-del {
    display: none !important;
    }

    To add the description, choose the option “Only Title + Read More Link” in the post slider.

    Best regards,
    Mike

    in reply to: Mixed fonts and display in Main menu #1053287

    Hi,
    Thank you for the screenshot, it explains a lot.
    When you add a section it will not populate with the current settings, it will be blank.

    Best regards,
    Mike

    in reply to: Cannot find way to change logo area background color #1053286

    Hey grivers99,
    Thank you for the login, I found that your Enfold Theme Options > Performance > JS & CSS file merging and compression was enabled so I disabled it, this setting is great once you site is done but will cause caching issues while you are building, I also recommend deactivating your caching plugin until you are done. I cleared your cache plugin.
    Now your background color shows. Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Different font size being dispolayed in mobile device #1053285

    Hey John,
    I took a look at your site as mobile and the ‘let us protect your website investment’ is the same font as the next section ‘backups to get you back up’ 18px. Ichecked this on Android mobile and with Chrome dev tools. But I did notice that the first section has a 40px padding and the second second has a 31px margin, which makes the second section look wider. Perhaps this is contributing to the font looking different?
    The homepage is also 18px, but it has a 28px margin.
    I checked these pages at 320px, 375px, & 425px which are the 3 most popular widths, but unfortunately I don’t have a iPhone to check with and it is possible that the difference will show there, please let me know if I should have a team member with a iPhone take a look.

    Best regards,
    Mike

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

    #events span.blog-categories a {
    color: #fff !important;
    }

    Best regards,
    Mike

    in reply to: Different Color for Logo Area and Menu #1053282

    Hey neli666,
    I assume that you mean the whole bar, if that’s correct you’ll want the dark items to be white so you can see them.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #header_main_alternate.container_wrap {
        background-color: #3a7cbf !important; 
    }
    
    #top #header .av-main-nav > li.av-menu-button-bordered > a .avia-menu-text {
        color: #fff !important;
    }
    .header_color .avia-menu-fx {
    background-color: #fff !important;
    }
    #menu-item-search a {
    color: #fff !important;
    }

    Best regards,
    Mike

    in reply to: Icin list in widget area #1053279

    Hey Advantage09,
    Please try creating your icon list shortcode like this, first go to a new post or page and use the “magic wand” tool in the default editor, I prefer to use the “classic editor”
    2019-01-12-203147
    then you can create your icon list in the builder, for this example I created a “minimal small list”
    2019-01-12-203315
    once you save the shortcode will be left in the page that you can copy, I like to copy from the “Text” tab and not the “visual” tab
    2019-01-12-203338
    then you can paste into a html widget and save
    2019-01-12-203426
    Tada!
    2019-01-12-203517

    Best regards,
    Mike

    in reply to: Mixed fonts and display in Main menu #1053276

    Hi,
    Sorry your link leads to a 404 error, please try again.

    Best regards,
    Mike

    in reply to: Error updating to new theme version #1053275

    Hi,
    Thank you, I was able to login but I don’t have admin access so I can’t investigate as to what your errors, I didn’t see any errors.
    But I see that you have the emulator plugin active, which probably is a issue.
    I believe that from your last post, you tried to post the errors, but I don’t see them in the post.

    Best regards,
    Mike

    in reply to: Horizontal Align Footer Widgets in the Middle #1053272

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

    @media only screen and (min-width: 768px) { 
    #text-3.widget .textwidget {
        padding-top: 40px !important; 
    }
    }

    Best regards,
    Mike

    in reply to: Mobile Menu Scrolling and Submenu #1053270

    Hey Brautgalerie,
    Sorry for the late reply, to move the bullet over, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet {
        left: 100px !important; 
    }

    Best regards,
    Mike

    Hi,
    Thank you for sharing your solution, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Preview does not work if the page is not published #1053260

    Hi,
    Sorry for the late reply, this is a open bug that the dev team is working on, we are unsure when it will be solved. It’s pretty technical, but basically WordPress doesn’t use the alb template when previewing a unpublished post.
    For now the best solution we can offer is to publish your post and view it, then change the status of it if you don’t want it published.

    Best regards,
    Mike

    in reply to: Shortcode not updating #1053255

    Hey peterolle,
    Sorry, I’m not sure I follow, are you editing a Advanced Layout Builder page with the WP Block editor?
    Or are you using the magic wand tool to create the shortcode, and trying to reopen and edit it?
    Please explain a little more

    Best regards,
    Mike

    in reply to: Title Attributes in Text editor defaulting #1053251

    Hi,
    Thanks for the login, to add a title to a link, please edit the link in the “Text” tab of the editor:
    2019-01-12-170642
    or you could use a plugin if you want:
    2019-01-12-171047

    Best regards,
    Mike

    in reply to: Layer slider and mobile #1053250

    Hey kostertje,
    After you create the two sliders on your page, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) {
    #top.home div#layer_slider_1 {
    display:none!important;
    }
    }
    
    @media only screen and (min-width: 768px) {
    #top.home div#layer_slider_2 {
    display:none!important;
    }
    }

    These are the default layerslider ID’s so as long as the first slider on your homepage is for desktops it should work correctly.
    Just let us know if you find that it’s not working for you.

    Best regards,
    Mike

    in reply to: Migration question #1053248

    Hi,
    Glad Rikard could help, thanks for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Remove Big Preview images per section #1053247

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

    #top.single .big-preview,#top.archive .big-preview {
    display: none !important;
    }

    Best regards,
    Mike

    in reply to: Remove meta data shown below blog posts #1053244

    Hey metin_aydin,
    To hide the meta data, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    span.post-meta-infos {
    display: none !important;
    }

    To change the read more link, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_more_link(){
     ?>
     <script>
    (function($){
    $(document).ready(function(){
    $(".more-link").text("Curious?");
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_more_link');

    Best regards,
    Mike

    in reply to: Mixed fonts and display in Main menu #1053237

    Hi,
    Sorry for the late reply, I have tried to read the past posts in this thread to have an idea of your issue, but I’m not sure I understand your newest post.
    I looked at your advanced styling settings, but I do see main menu colors and fonts options, the submenu doesn’t have these options because they get there values from the main menu options.
    Perhaps if you could explain what you would like to change we could assist with some css.

    Best regards,
    Mike

    in reply to: Can't remove default editor #1053233

    Hi,
    Glad to hear that the classic editor plugin solved the issue, you will be happy to hear that since v4.5.2 Enfold add this function from the theme options page, near the bottom below the maintenance option.
    Please check for it, or update so that you will have the option.
    2019-01-08-222840

    Best regards,
    Mike

    in reply to: SIdebar content is shown below main content #1053231

    Hi,
    Thank you for the feedback, I was able to see the site now. I didn’t see a cause for this error, please try disabling you plugins to see if this resolves this.

    Best regards,
    Mike

    in reply to: Border of Breadcrumb is cutting into text on mobile #1053229

    Hi,
    Glad we could help, I assume we can close this now, but I like to ask first.
    Is there anything else we can assist with on this issue?

    Best regards,
    Mike

    in reply to: Change font family only for one specific text blog #1053227

    Hi,
    It should have not been necessary to upload the font, I did so to try to remove reasons for the error, you should not have to do this in the future. You can also enable the file merging once your site is done.

    The settings were not different for the two languages, but they were showing different for the languages, I’m not sure why this was, but as I don’t have the WPML plugin installed on my localhost I couldn’t recreate the error, I’m not saying that the plugin caused caused the error, I just couldn’t recreate the environment to test further.

    I don’t expect that you will see this error again, but I will be on the look out for this in other sites. If you want to make another element a different font again I recommend following the sound steps you took by adding a custom class and adding the css rule. If you have this issue again then we will investigate if there is a conflict between the options for each language, or if it was something else. Thank you for your patience.

    Best regards,
    Mike

Viewing 30 posts - 23,071 through 23,100 (of 34,659 total)