Forum Replies Created

Viewing 30 posts - 26,641 through 26,670 (of 34,867 total)
  • Author
    Posts
  • in reply to: Avia layout builder not displaying #977175

    Hi,
    Yes I can login, but it’s an empty ftp directory, please change the allowed directory to “/” in the directory field, it probably has a user name in it right now.

    Best regards,
    Mike

    Hi,
    To make the removal of date and comments universal, change the css to look like this:

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

    About the css places:
    1: The child theme style.css, in the WordPress > Appearance > Editor > Child Theme > Stylesheet is recommended for your css to keep your child theme complete and in one place. But with the merged css feature of the theme you may need to rebuild the merged files for your css to show after adding code there. To do this simply save your theme settings with the big blue button “Save all changes”
    2: The Quick CSS is very easy to use and handy for sites that don’t use a child theme, and sites that do. Many use this because they only have a couple of code snippets. When you save the code here the merged files are updated automatically.
    3: The WordPress > Customize > Additional CSS is a WordPress feature, but works very well, it’s the last stylesheet loaded by the site so it will easily overwrite any tough css changes, plus it offers good error checking which could help you ensure your code is right. The only downside is that code here will stay in effect if you change themes, until you remove it. But you’ll never do that, right? :)

    For your custom menu I gave it a try, but it adds a background color to your category page, see if you like it.

    Best regards,
    Mike

    in reply to: Media Library URLs #977168

    Hi,
    We are glad to help, we will leave this open to hear back from you.

    Best regards,
    Mike

    in reply to: Avia layout builder not displaying #977167

    Hi,
    Thank you for the site login, I was able to login.
    I was not able to login though ftp I used the new IP address and user, but got an error for the password, please check.

    Best regards,
    Mike

    in reply to: How can I delete old posts here? :) #977162

    Hi,
    We are glad to help :)
    We will close this now, Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: one third – two third columns in Contact Form 7 #977160

    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
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: 2 column mobile view with columns #977159

    Hi,
    I’m not sure that I understand, but when I look at the bottom of your page I see there are two more of the text columns that don’t stay equal height with the other columns, for these I would add a custom class such as “eqheight_lg” and Quick CSS like:

    
    @media only screen and (min-width: 767px) and (max-width: 988px) { 
    .eqheight_lg {
    height: 217px;
    min-height: 217px;
    }
    }

    But I don’t see buttons with text under them as in your image, is this on a different page?

    Best regards,
    Mike

    Hi,
    I fixed your css to remove the grid comment count and date.
    To change your category pages to a grid style I added this function to your child theme functions.php:

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'blog-grid';
    return $layout;
    }

    Now you can choose if you want a sidebar on the category pages at Enfold Theme Options > Sidebar Settings > Sidebar on Archive Pages
    I then added your sub-menu to your category pages with this function in your functions.php:

    add_action('ava_after_main_title', 'ava_after_main_title_mod_category');
    function ava_after_main_title_mod_category() {
    	if(is_archive()) {
    		echo do_shortcode("[av_submenu which_menu='center' menu='' position='center' color='main_color' sticky='true' mobile='disabled' mobile_submenu=''][av_submenu_item title='Menu Item 1'][av_submenu_item title='Menu Item 2'] [av_submenu_item title='Menu Item 3']
    [/av_submenu]");
    	}
    }

    You will notice in your functions.php you have two sets of similar functions for the sub-menu, one for single posts and one for archives (categories) they are well marked, should you want to change which menu shows on each.

    For your banner image at the top of your category pages, do you want this to be the same image for all categories, or a different image for each category?
    One option is this plugin: Categories Images

    Best regards,
    Mike

    in reply to: Google Analytics tracking code not working #977152

    Hi,
    Thank you for the login, I was able to login, and I found that at Enfold Theme Options > Google Services > Google Analytics Tracking Code your code was there as just the ID, when there should be a script, so I added the script for you:
    2018-06-24_084236
    To verify that the tracking code is working, visit your website and check to see that your visit is being registered in the Real-Time reports of your Google Analytics dashboard.

    Best regards,
    Mike

    in reply to: Removing the Separation Borders in the Header #977148

    Hi,
    Here is a working example, note that the color of the menu items are white, (first rule) unless it has the class “current-menu-item” in which it will be black, (second rule)

    .html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a {
        color: #fff !important; 
    }
    .html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul .current-menu-item a {
        color: #000 !important; 
    }

    2018-06-24_080602
    If you already have similar code in your css, use the above to help make the changes, if you don’t have anything similar yet, then go ahead and add the above css.

    Best regards,
    Mike

    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
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Avia layout builder not displaying #977144

    Hi,
    Sorry, the statement doesn’t make sense, but it will be good to see your files and site when it’s on the troubleshooting server.
    I see your logins above, and I was able to login to the site & ftp.
    This is for the live site, correct? I see it is using PHP v5.3

    Let us know when you have the troubleshooting server running and the login details for it in the Private Content area, so we can assist with a theme update on it.

    Best regards,
    Mike

    in reply to: Avia layout builder not displaying #977092

    Hi,
    Sorry, I’m a little confused, please link to the site we are working on.
    I would recommend renaming your theme folder to /enfold-old/ then upload the latest version via ftp to /enfold/ and login to your site and see if all is working correctly, if not delete the new theme folder and rename the old folder back to /enfold/ via ftp.
    I assume you are not using a child theme with extra core theme files in it, such as a header.php which may cause issues.

    Best regards,
    Mike

    in reply to: 2 column mobile view with columns #977091

    Hi,
    You mean the cache of your browser, right?
    Try incognito or in-private mode.
    Please see screenshots in Private Content area.

    Best regards,
    Mike

    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
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Removing the Separation Borders in the Header #977086

    Hi,
    Instead of using the active state, try using the “current-menu-item” class, and try putting the border around the “li” like this:

    .avia-menu li:hover {border: 1px solid #ffffff!important;  border-radius:100px !important; }
    .avia-menu li.current-menu-item {border: 1px solid #ffffff!important;  border-radius:100px !important; }

    2018-06-23_154436
    Is this the style you are looking for?
    Here is a similar project that perhaps some of the code will be helpful:

    Best regards,
    Mike

    in reply to: Avia layout builder not displaying #977084

    Hi,
    Do you mean the old domain?
    because I can still see the one in the Private Content area.

    Best regards,
    Mike

    in reply to: Cant Change Font on my menu !! #977083

    Hi,
    Glad to hear you have it sorted out, unless there is anything else we can help with, shall we close this then?

    Best regards,
    Mike

    in reply to: Masonry grid not properly sorting alphabetically #977082

    Hey kubera,
    I was not able to login to view your site, please check.
    I found that a recommended solution for this is to try this plugin to set the order:
    Taxonomy Terms Order

    Best regards,
    Mike

    in reply to: Shrinking Header is squeezing logo … #977079

    Hi,
    Glad Jordan was 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
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Masonry Gallery with more pages – Navigation Arrows #977078

    Hey Gaso,
    Sorry this is currently not available with this element, but the regular gallery has the option to show one large image and all the other images in the light box.

    Best regards,
    Mike

    Hey Christel,
    It sounds like you are going to the right place, but I will add some screenshots to be sure.
    First click a slide you wish to edit:
    2018-06-23_140348
    then edit the title and caption:
    2018-06-23_140709
    Then save, and back on the main slider window scroll down to ensure the “Use first slides caption as permanent caption” is not checked:
    2018-06-23_141156
    Then save again and publish

    Best regards,
    Mike

    in reply to: one third – two third columns in Contact Form 7 #977067

    Hi,
    Glad to hear you solved it, the classes are
    av_one_third
    av_two_third

    the difference from what you had is their is no “s” at the end of “av_two_third”
    unless there is anything else we can help with this, shall we close this then?

    Best regards,
    Mike

    Hi,
    Try this code in the General Styling > Quick CSS field:

    #top.single-post .title_container .container {
        display: flex;
        justify-content: center;
    }
    #top.single-post h1.main-title.entry-title a {
    font-size: 70% !important;
    }

    Please adjust to suit.

    Best regards,
    Mike

    in reply to: Performance unstable #977064

    Hey zibbaldone,
    Thanks for the screenshots, it is good that you used the same services a couple of times to have a comparison because you want to use the same servers in your test.
    What I notice when comparing the two Pingdom tests and the two GTmetrix tests is that the file requests change a lot, from 93 files to 147, and from 75 files to 125, this leads me to believe there were quiet a number of changes going on between these tests.
    And when looking at the page load of 26.8mb vs 7.1mb it leads me to believe that one test was done with no caching plugin while the other was with the caching plugin you wrote about, which at 916ms from 10.2s is quite impressive.

    I would say it’s hard to say that the site is “unstable” without comparing the site in the same state a few times, that said it is important to also consider the state of the server during each test, as most people use shared hosting and your performance is also a result of what the next site on the server is doing. Which is why we would take a average of your load times and compare them from the same times and days of the week over a period of time.

    Once you are done developing, and your files are not changing, I’m sure you will find that the small change in load times will be a natural result of your servers, and be within a reasonable tolerance.

    Hope this helps, and well done on your site.

    Best regards,
    Mike

    in reply to: Avia layout builder not displaying #977053

    Hi,
    Oh, I see, on the site that is down did you update via ftp? If so, you will need to remove the old theme folder first (wp-content/themes/enfold/) then upload the new enfold folder.
    Please don’t try to overwrite the theme folder, as this will leave old files behind, and cause a error.

    For the site I logged into, I see the builder has this error:

    Failed to load resource: the server responded with a status of 403 (Forbidden) /wp-admin/admin-ajax.php

    Please check that the file permissions are correct and that .htaccess is not protecting the admin folder for security, or the webhost has mod_sec protecting the admin folder.
    I also see that your PHP Version is: 5.3.28, you need a minimum of v5.6 this might be the issue with the other site if it is using the same PHP version.

    Best regards,
    Mike

    in reply to: Cant Change Font on my menu !! #977048

    Hi,
    Thank you for the link, I had gone to the wrong url before.
    You can use negative numbers for your letter spacing, such as: -1px; if you want them closer together.
    When I look at your menu it is “bolder” “font-weight: 900” now, but it looks as though your font-family doesn’t support a heavy looking font face.
    To also change the sub-menu, please replace your code with this:

    .av-main-nav ul > li > a span.avia-menu-text, .av-main-nav>li>a span.avia-menu-text {
    letter-spacing: 1px !important; 
    font-weight: bolder !important; 
    }

    Sorry I just found out the request form is getting worked on, please try again after the weekend.

    Best regards,
    Mike

    in reply to: Avia layout builder not displaying #977044

    Hi,
    I assume that you have rolled back to recover, as I see your site is up & I was able to login.
    Does you webhost offer staging sites to test the upgrade?
    2018-04-29_082202
    2018-04-29_082329

    Best regards,
    Mike

    in reply to: layerslider video background not working on Chrome #977040

    Hi,
    For Chrome on Windows 10, you are getting this error:

    Uncaught (in promise) DOMException: play() failed because the user didn't interact with the document first. https://goo.gl/xX8pDD

    Please visit the url in the error message for more information.
    The video does auto play in Firefox & Edge.

    Please open a new thread so we can try to assist, and include your admin login in the Private Content area, but as this is not your thread your login info will not be private.

    Best regards,
    Mike

    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
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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

Viewing 30 posts - 26,641 through 26,670 (of 34,867 total)