Forum Replies Created

Viewing 30 posts - 12,541 through 12,570 (of 34,878 total)
  • Author
    Posts
  • in reply to: Woocomerce Categories Inside Elfold Single Page #1342785

    Hi,
    Glad to hear that you sorted this out, as for you last request, I believe you mean that the category titles are in uppercase and at the lower-left corner, you can change to title case and center with this css:

    #main .template-page .entry-content-wrapper h2 {
        text-transform: capitalize;
        text-align: center;
    }

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

    Best regards,
    Mike

    Hi,
    Thanks for the feedback, I see that you are referring to the Envato Market Plugin, this documentation says that you would need access to the client’s backend to enter your personal token in the Single Item Token field for them, so it’s not a Single Item Token that you create on your end and you can email them the code, this documentation says you should not give them your personal token. So it looks like he will need to give you access again.

    Best regards,
    Mike

    Hi,
    Thank you the login, the “Bookmarks” widget was from the “demo” of the theme, it shows when there is an empty widget column.
    I added an empty text widget to the column which turns the “demo” off, once you add a new widget there you can remove the empty text widget.

    I see the missing footer on your page /footertest-slider-and-empty-color-section/ for mobile when the empty color section is applied, yet when I test this on my demo site this error doesn’t occur, please see my test page below.
    Please try disabling all of your plugins to see if this corrects, if it does enable the plugins one at a time until the error occurs again.

    Best regards,
    Mike

    in reply to: Add Login / Log out links to top menu’ #1342707

    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

    Hey cmeurer,
    Thank you for your question, I’m not aware that a single-use Token can be created, if so then you would have to give it to the client to enter themselves into the theme update option.
    But as I understand you would have to give them your personal token that probably give him full access.

    Perhaps an option would be to send him the latest version and he can follow the following steps to update himself:

    To update upload the theme zip file to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: API key #1342625

    Hey kimberley1975,
    Thanks you for your question, you won’t see a place to enter a token in version 3.8.4, it’s just too old if you are using a current version of WordPress you can update the theme though the WordPress theme option like this:
    To update your version of Enfold you will need to download the latest version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Since you are using such an old version I would recommend making a full backup or creating a staging site to test on first, I don’t expect any issues but it’s better to be safe.

    Best regards,
    Mike

    in reply to: Embedded Form Styling #1342623

    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: How to make borders of team members flashing #1342621

    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: How to make borders of team members flashing #1342558

    Hi,
    Thanks for the feedback, you changed the timing correctly, to add a third color try like this:

    .avia-team-member .team-img-container img {
        border-style: dotted;
        border-width: 15px 15px 15px 15px;
        border-color: #eeee22;
        -webkit-animation: borderBlink 0.2s step-end infinite;    
        animation: borderBlink 0.2s step-end infinite; 
    }
    
    @-webkit-keyframes borderBlink {    
        from, to {    
            border-color: #fff;   
        }    
        33% {    
            border-color: #eeee22;    
        }
        66% {    
        border-color: #00FAFE;    
    } 
    }    
    @keyframes borderBlink {    
        from, to {    
            border-color: #fff;    
        }    
        33% {    
            border-color: #eeee22;    
        }
        66% {    
        border-color: #00FAFE;    
    } 
    }    

    Best regards,
    Mike

    in reply to: Animation on element #1342556

    Hi,
    There is a partial list of animation classes in our documentation , to use the timeline fadein animation that will also use the waypoint, so it will trigger when the element in view, you would use these classes with no dots and separated with a space, like this:
    avia_animate_when_visible fade-in av-animated-generic
    the avia_start_delayed_animation class starts the animation on page load and doesn’t wait for the element to be in view, so it depends on when you want the animation to be triggered.

    Best regards,
    Mike

    in reply to: Alter Featured Image on Blog Does not work #1342547

    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: How to make borders of team members flashing #1342502

    Hey Jak73,
    Thanks for the link to your site, I see you are currently using this css to make a yellow dotted border around your team members:

    .avia-team-member .team-img-container img {
        border-style: dotted;
        border-width: 15px 15px 15px 15px;
        border-color: #eeee22;
    }

    change this to this:

    .avia-team-member .team-img-container img {
        border-style: dotted;
        border-width: 15px 15px 15px 15px;
        border-color: #eeee22;
        -webkit-animation: borderBlink 1s step-end infinite;    
        animation: borderBlink 1s step-end infinite; 
    }
    
    @-webkit-keyframes borderBlink {    
        from, to {    
            border-color: #fff;   
        }    
        50% {    
            border-color: #eeee22;    
        }    
    }    
    @keyframes borderBlink {    
        from, to {    
            border-color: #fff;    
        }    
        50% {    
            border-color: #eeee22;    
        }    
    }    
    

    After applying the css, please clear your browser cache and check.
    the dotted border should now flash yellow & white.

    Best regards,
    Mike

    in reply to: Problem with update 4.9 in footer #1342501

    Hi,

    @samdive
    thank you for the login, I see that you have an old footer.php & header.php in your child theme, please save these to your computer and remove them from your child theme.
    Then your site will work correctly.
    I’m not sure what customizations are in your old footer.php & header.php but if you want these customizations in your updated site you can make these customizations in a copy of the new footer.php & header.php from v4.9 and add them to your child theme.

    Best regards,
    Mike

    in reply to: Alter Featured Image on Blog Does not work #1342500

    Hi,
    Thanks for the login, it seems like the Regenerate Thumbnails was not working correctly, because when I used the Regenerate Thumbnails option in the Simple Image Sizes plugin the thumbnails were resized. Then I noticed that while the image sizes were correct they were show at full width on the blog page, so I added this css to your child theme stylesheet:

    #top.blog .big-preview.single-big {
    	max-height: 580px;
    	max-width: 845px;
    	margin: auto;
    }

    now the featured images on your blog page /news/ are showing correctly.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Animation on element #1342496

    Hi,
    Thank you Guenni007 this is a good point.
    So to expand on the above example to trigger the animation when the element is in view and not just on page load, we will add the class avia_animate_when_visible to the custom class with a space after the text-box-left or text-box-right classes
    2022-02-27_003.jpg
    and changed the css to this:

      @keyframes slide-in-left {
        from {
          transform: translateX(-100%);
        }
        to {
          transform: translateX(0%);
        }
      }
    
      @keyframes slide-in-right {
        from {
          transform: translateX(100%);
        }
        to {
          transform: translateX(0%);
        }
      }
    
    
      .text-box-right.avia_start_animation {
        animation: slide-in-right 1000ms;
      }
      .text-box-left.avia_start_animation {
        animation: slide-in-left 1000ms;
      }

    note the avia_start_animation class in the css, the waypoint script that Guenni007 pointed out changes the avia_animate_when_visible class to avia_start_animation so the css will work.
    2022-02-27_004.jpg

    Best regards,
    Mike

    in reply to: Accordion/Toggles deeplinking #1342495

    Hi,
    Thanks, I’m not sure why this is not working, I disabled it for now and asked the rest of the team for ideas.

    Best regards,
    Mike

    in reply to: Change Icon in Burger Menu #1342488

    Hi,
    Very good, we will keep this open to hear back from you.
    Typically I find using Keyframe Animations the easiest to use, this article is pretty good but if you search Google I’m sure you will find more examples that you can easily add to your css.

    Best regards,
    Mike

    in reply to: Change Icon in Burger Menu #1342485

    Hi,
    Glad this helps, you would need to add the animation to the css, please link to your site so I can see what you have achieved and link to the animation you wish for, many of our demos have different animated transitions so it would be better to see what you want.

    Best regards,
    Mike

    Hey tinam12,
    Thanks for your question, unfortunately your version 4.7.6.4 (Oct 5, 2020) was not comparable with WP 5.6+ this was fixed in v4.8 (Mar 4, 2021)
    The update solution below will not cause any lost of customization, but this assumes that your developer didn’t make any customizations to the core theme files, and that the developer used a child theme for any customizations. If the developer made changes to the core theme files and you don’t know to save these files to your computer to copy the customizations to your update, they will be lost.
    I imagine you are not aware of this one way or another, so if you want to include a link to your site and admin login in the Private Content area we could take a look for you.
    The very best way to test if your site will experience any issues with an update is to check if your webhost has the one click staging site option, this is an option in most cPanels to create a staging clone of your site so you can test on it and real your site will stay up and running. You can always ask your webhost to help you with setting this up if you want.

    Here are some screenshots of what it would look like:
    staging-1.jpg
    staging-2.jpg

    if you have this option use it to create a staging site and test an update on it like below, otherwise you could create a backup of your site using your webhost full backup options so you can restore the old version if you have issues. I don’t recommend “backup plugins” unless you have specific past knowledge with using them, some “backup plugins” do not offer a working way to “restore” with them. A cplanel backup & retore practically always works.

    To update your version of Enfold you will need to download the latest version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Change Icon in Burger Menu #1342480

    Hey Vera,
    Thanks for your question, to use an image for the burger mobile menu for closed and open try this css in your Quick CSS and adjust the image URLs to suit your needs:

    .av-hamburger::before {
      content: url(https://img.icons8.com/external-sbts2018-lineal-color-sbts2018/58/000000/external-hamburger-fast-food-sbts2018-lineal-color-sbts2018.png);
      display: block;
      padding-top: 15px;
    }
    .av-hamburger.is-active::before {
      content: url(https://img.icons8.com/external-sbts2018-outline-sbts2018/50/000000/external-hamburger-fast-food-sbts2018-outline-sbts2018.png);
      display: block;
      padding-top: 15px;
    }
    .av-hamburger-inner {display:none!important;}

    this is the result:
    2022-02-27_115831.jpg
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    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 updates since 4.8.6.5 break footer #1342473

    Hi,
    Thanks for the login, you have a very old header.php file in your child theme, please remove this file and check.
    If your footer returns then add a copy of the header.php file from the parent theme v4.9 and add your modifications to it and check again.
    But first test without the child theme header.php to ensure this works.

    Best regards,
    Mike

    Hey rixi,
    Thanks for your question, both of these issues were fixed in v4.9, please update and clear all caching.

    Best regards,
    Mike

    in reply to: Post Grid layout display for mobiles #1342471

    Hey Dave,
    Thank you for your question and the login, I have added this to your child theme stylesheet

    @media only screen and (max-width: 767px){
    .responsive #top #wrap_all .avia-content-slider-even .slide-entry.first {
        margin-left: 0;
        width: 100%;
    }
    }
    @media only screen and (max-width: 479px){
    	.responsive #top #wrap_all .avia-content-slider-even .slide-entry {
        margin-left: 0;
        clear: both;
        width: 100%;
    }
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Use custom blog layout for archive (category) pages #1342468

    Hey mistolt1997,
    Thank you for your question, unfortunately, you can not create a custom layout to use instead of to defined options:
    multi-big
    single-small
    single-big
    blog-grid
    bloglist-simple
    bloglist-compact
    bloglist-excerpt

    for example this sets the ‘blog-grid’ layout

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

    The ‘custom’ option redirects to the blog page to the one you set in the theme options, but this is not used for category pages.
    I imagine that you could create a specific “category” page using the blog element set to show only one category, and then redirect to it, but it might be a lot of work if you have a lot of categories.

    There might be another solution for you depending on what you want to be customized, for example perhaps the ‘blog-grid’ layout will work for you but you also want a specific special heading and text block above the category grid, you could add this as a shortcode in the category description, this example was for a product category, but the same can be used for a post category if you add this code to allow shortcodes in the post category description:
    add_filter( 'term_description', 'do_shortcode' );

    I hope this helps explain and gives you some ideas to achieve what you want.

    Best regards,
    Mike

    in reply to: Add Login / Log out links to top menu’ #1342466

    Hi,
    Thank you for the login, I adjusted your links to have the class menu-item so they only show on desktop
    This is the new code:

    
    add_filter( 'wp_nav_menu_items', 'add_loginout_link', 10, 2 );
    function add_loginout_link( $items, $args ) {
        if (is_user_logged_in() && $args->theme_location == 'avia') {
            $items .= '<li class="menu-item"><a href="https://your-site.com/my-account/customer-logout/">Log Out</a></li>';
        }
        elseif (!is_user_logged_in() && $args->theme_location == 'avia') {
            $items .= '<li class="menu-item"><a href="https://your-site.com/my-account/">Log In</a></li>';
        }
        return $items;
    }

    please check.

    Best regards,
    Mike

    Hi,
    Above you had posted access with a Temporary Login Without Password token, I believe the time limit has expired because it’s not working now. Please check.

    Best regards,
    Mike

    in reply to: Alter Featured Image on Blog Does not work #1342463

    Hi,
    Please check the WordPress admin login, I’m not able to login.

    Best regards,
    Mike

    in reply to: Add masonry sort options to menu #1342461

    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 drop shadow to caption full width image slider #1342438

    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 - 12,541 through 12,570 (of 34,878 total)